@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Onest', sans-serif;
	background-color: #0e0e1a;
}

.container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #cc9fff08;
}

.header {
	width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px;
	overflow: hidden;
}

.header_left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header_left .logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 263px;
}

.header_left .logo::after {
	content: '';
	position: absolute;
	width: 105px;
	height: 33px;
	bottom: -33px;
	background: #8b2cff;
	filter: blur(23px);
}

.header_left .logo::before {
	content: '';
	position: absolute;
	bottom: -19px;
	width: 171px;
	height: 2px;
	background: linear-gradient(
		90deg,
		rgba(119, 93, 153, 0) 0%,
		#c79cff 51.44%,
		rgba(119, 93, 153, 0) 100%
	);
}

.header_left nav,
.footer_app nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.header_left nav a,
.footer_app nav a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: #bababa;
	font-size: 15px;
	line-height: 20px;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s ease;
}

.header_left nav a:hover,
.footer_app nav a:hover {
	color: #ffffff;
}

.link_ind:hover svg path:first-child {
	fill: #7979ae !important; 
}
.link_ind:hover svg path:last-child {
	fill: #d4d4f7 !important; 
}

.header_left nav a:hover svg path:last-child,
.footer_app nav a .header_left nav a:hover svg path[fill],
.footer_app nav a:hover svg path[fill] {
	fill: #7979ae;
}

.header_left nav a:hover svg path[stroke],
.footer_app nav a:hover svg path[stroke] {
	stroke: #d4d4f7;
}

@media (max-width: 1280px) {
	.header_left .logo {
		width: 165px;
	}
}

.header_right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header_right button {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	padding: 12px;
	border-radius: 12px;
	max-height: 44px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.dribbble_header {
	background: linear-gradient(180deg, #202036 9.09%, #32324d 100%);
	border: none;
}
.telegram {
	background: linear-gradient(180deg, #8b2cff 9.09%, #c79cff 100%);
	border-color: #c495ff;
}
.whatsApp {
	background: linear-gradient(180deg, #198700 9.09%, #699e0f 100%);
	border-color: #89ff4a;
}

.dribbble_header:hover {
	background: linear-gradient(180deg, #2b2b51 9.09%, #33336d 100%);
}
.telegram:hover {
	background: linear-gradient(180deg, #a72cff 9.09%, #a55fff 100%);
	border-color: transparent;
}
.whatsApp:hover {
	background: linear-gradient(180deg, #2dcd0a 9.09%, #91e400 100%);
	border-color: transparent;
}

@media (max-width: 1024px) {
	.header_left nav {
		display: none;
	}
}
@media (max-width: 600px) {
	.header_right {
		flex-direction: row-reverse;
	}

	.header_right button {
		padding: 8px;
		gap: 8px;
		font-size: 12px;
		border-radius: 8px;
		max-height: 32px;
	}

	.header_right button img {
		width: 14px;
		height: 14px;
	}

	.header_right button:nth-child(1) {
		display: none;
	}
}

/* cookies style  */
.toastify {
	position: fixed;
	left: 0;
	bottom: 20px;
	width: 100%;
	padding: 0 20px;
	z-index: 1000;
	box-sizing: border-box;
	pointer-events: none;
}

.cookies {
	position: relative;
	max-width: 475px;
	width: 100%;
	padding: 14px 17px;
	border-radius: 14px;
	background: #0d0d1680;
	backdrop-filter: blur(110.4px);
	box-shadow: 0px 16px 53.6px 0px #00000040;
	transform: translateX(-150%);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: auto;
}

.cookies.show {
	transform: translateX(0);
}

@media (max-width: 768px) {
	.toastify {
		padding: 0 15px;
		bottom: 15px;
	}
	.cookies {
		left: 20px;
	}

	.content_text-title {
		display: flex;
		flex-direction: column-reverse;
		gap: 12px;
	}
}

.cookies.show {
	transform: translateX(0);
}

.cookies h4 {
	display: flex;
	align-items: center;
	gap: 11px;
	color: #ffffff;
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
}

.cookies p {
	color: #bababa;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	margin: 8px 0 14px 0;
}

.action_btn-cookies {
	display: flex;
	align-items: center;
	gap: 8px;
}

.action_btn-cookies button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	padding: 12px;
	border-radius: 12px;
	max-height: 44px;
	cursor: pointer;
	border: 1px solid;
	transition: all 0.3s ease;
}

.action_btn-cookies #acceptCookies {
	background: linear-gradient(180deg, #8b2cff 9.09%, #c79cff 100%);
	border-color: #c495ff;
}

.action_btn-cookies #acceptCookies:hover {
	background: linear-gradient(180deg, #a72cff 9.09%, #a55fff 100%);
	border-color: transparent;
}

.action_btn-cookies #declineCookies {
	background: #ffffff1a;
	border: none;
}

.action_btn-cookies #declineCookies:hover {
	background-color: #ffffff33;
	border-color: transparent;
}

@media (max-width: 520px) {
	.cookies {
		left: 0;
		max-width: 100%;
	}
	.action_btn-cookies button {
		max-height: 40px;
		width: 100%;
	}
}

/* WELCOME SECTION STYLE  */
.welcome_section {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
	width: 100%;
	padding: 20px;
	background: url('./assets/Group\ 1.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg_image {
	position: absolute;
	top: 0;
}

.content_text {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 856px;
	z-index: 1;
	margin-top: 48px;
}

@media (max-width: 768px) {
	.content_text {
		margin-top: 24px;
	}
}

.welcome_section p {
	color: #bababa;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	text-align: center;
	margin-bottom: 16px;
}

.welcome_section h1 {
	color: #ffffff;
	font-weight: 500;
	font-size: 62px;
	line-height: 63px;
	text-align: center;
}

.welcome_section button {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	padding: 16px 20px;
	border-radius: 12px;
	max-height: 52px;
	background: linear-gradient(180deg, #8b2cff 9.09%, #c79cff 100%);
	border: 1px solid #c495ff;
	cursor: pointer;
	margin-top: 38px;
	transition: all 0.3s ease;
}

.welcome_section button:hover {
	background: linear-gradient(180deg, #a72cff 9.09%, #a55fff 100%);
	border-color: transparent;
}

.container_image {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 1100px;
	bottom: -15.5rem;
}

.container_image img {
	width: 100%;
}

.cursor,
.cursor_2 {
	position: absolute;
	height: 145px;
	bottom: 23.6rem;
	right: -24.6rem;
	width: 123px;
	animation: float 2s ease-in-out infinite;
	cursor: pointer;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.cursor_2 {
	bottom: 20.6rem;
	left: -25.6rem;
}

@media (max-width: 1024px) {
	.welcome_section h1 {
		font-size: 42px;
		line-height: 50px;
	}

	.container_image {
		width: 1000px;
		bottom: -12.5rem;
	}

	.cursor {
		height: 110px;
		bottom: 23rem;
		right: -22.1rem;
	}

	.cursor_2 {
		height: 110px;
		bottom: 20.5rem;
		left: -22.8rem;
	}
}

@media (max-width: 768px) {
	.welcome_section {
		min-height: 750px;
	}

	.welcome_section h1 {
		font-size: 31px;
		line-height: 31px;
	}

	.welcome_section p {
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
	}

	.welcome_section button {
		padding: 12px;
		margin-top: 0px;
		max-height: 44px;
		gap: 8px;
	}

	.container_image {
		width: 850px;
		bottom: -11rem;
		left: -30px;
		transform: none;
	}

	.cursor {
		height: 99px;
		bottom: 19rem;
		left: 35.1%;
	}

	.cursor_2 {
		height: 82px;
		bottom: 18rem;
		left: -19.2rem;
	}
}

@media (max-width: 500px) {
	.container_image {
		width: 800px;
		bottom: -9.5rem;
		transform: none;
	}

	.welcome_section h1 {
		font-size: 28px;
		line-height: 31px;
	}

	.cursor {
		height: 82px;
		bottom: 28rem;
		left: -2.9%;
	}
	.cursor_2 {
		bottom: 17rem;
		left: -18.2rem;
	}
}

@media (max-width: 400px) {
	.cursor {
		height: 70px;
		bottom: 32rem;
		left: -4.9%;
	}
}

/* TEMPLATES  SECTION STYLE */
.main-section {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	margin-top: 48px;
}

@media (max-width: 768px) {
	.main-section {
		margin-top: 24px;
	}
}

.section-templates {
	width: 1200px;
	padding: 0 20px;
}

@media (max-width: 1200px) {
	.section-templates {
		width: 100%;
	}
}

.header_templates {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.header_templates .slider_btns {
	display: none;
	align-items: center;
	gap: 4px;
}

.header_templates .slider_btns button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 10px;
	background: #1a1a28;
	border: none;
	cursor: pointer;
}

.header_templates .slider_btns button:nth-child(2) img {
	transform: rotate(180deg);
}

.section-templates h2 {
	display: flex;
	align-items: center;
	gap: 18px;
	font-family: 'Onest', sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 40px;
	line-height: 63px;
}

.templates-grids {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 20px;
}

@media (max-width: 768px) {
	.templates-grids {
		overflow-x: scroll;
		scroll-behavior: smooth;
	}
}

.templates-grids::-webkit-scrollbar {
	display: none;
}

.templates-card {
	max-width: 387px;
	padding: 13px;
	border-radius: 16px;
	background: linear-gradient(
			180deg,
			rgba(217, 203, 235, 0.03) 0%,
			rgba(123, 115, 133, 0.03) 100%
		),
		radial-gradient(
			80.23% 68.39% at 50% 100%,
			rgba(49, 49, 77, 0.2) 0%,
			rgba(49, 49, 77, 0) 59.13%
		);
	scroll-snap-align: start;
}

.templates-card .templates-image {
	position: relative;
	width: 100%;
	height: 230px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-radius: 11px;
	margin-bottom: 10px;
	overflow: hidden;
}

.templates-card .templates-image::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 95px;
	bottom: 0;
}

.templates-card:nth-child(2) .templates-image img {
	width: 97%;
	border-radius: 12px;
}

@media (max-width: 1024px) {
	.templates-card:nth-child(2) .templates-image img {
		width: 252px;
	}
}

.templates-card:nth-child(1) .templates-image {
	background: linear-gradient(180deg, #a8ff4b 0%, #d4ffa7 100%);
}
.templates-card:nth-child(2) .templates-image {
	background: linear-gradient(180deg, #ff4b4b 0%, #ff8737 100%);
}
.templates-card:nth-child(3) .templates-image {
	background: linear-gradient(180deg, #4ba8ff 0%, #a7f9ff 100%);
}
.templates-card:nth-child(4) .templates-image {
	background: linear-gradient(180deg, #4b51ff 0%, #a7c0ff 100%);
}
.templates-card:nth-child(5) .templates-image {
	background: linear-gradient(180deg, #ff4ba5 0%, #ff50fc 100%);
}
.templates-card:nth-child(6) .templates-image {
	background: linear-gradient(180deg, #4b8dff 0%, #125dff 100%);
}

.templates-card:nth-child(1) .templates-image::after {
	background: linear-gradient(0deg, #acff54 0%, rgba(103, 153, 50, 0) 100%);
}
.templates-card:nth-child(2) .templates-image::after {
	background: linear-gradient(0deg, #ff4d4a 0%, rgba(255, 77, 74, 0) 100%);
}
.templates-card:nth-child(3) .templates-image::after {
	background: linear-gradient(0deg, #54acff 0%, rgba(84, 172, 255, 0) 100%);
}
.templates-card:nth-child(4) .templates-image::after {
	background: linear-gradient(0deg, #548dff 0%, rgba(55, 50, 153, 0) 100%);
}
.templates-card:nth-child(5) .templates-image::after {
	background: linear-gradient(0deg, #ea4aff 0%, rgba(234, 74, 255, 0) 100%);
}
.templates-card:nth-child(6) .templates-image::after {
	background: linear-gradient(0deg, #548dff 0%, rgba(55, 50, 153, 0) 100%);
}

.templates_content {
	position: relative;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
}

.info-container {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
}

.info-btn {
	cursor: pointer;
	transition: transform 0.2s ease;
}

.info-btn:hover {
	transform: scale(1.1);
}

.info_hover {
	position: absolute;
	width: 280px;
	background: #212130;
	z-index: 999999;
	padding: 16px;
	border-radius: 12px;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-container:hover .info_hover {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.info-arrow {
	position: absolute;
	bottom: -8px;
	right: 15px;
	width: 16px;
	height: 8px;
}

.info_hover p {
	color: #bababa;
	font-size: 14px;
	line-height: 1.4;
	margin: 0 !important;
}

.info-btn:hover + .info_hover,
.info_hover:hover {
	opacity: 1;
	visibility: visible;
}

.info_hover img {
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.info_hover p {
	color: #bababa;
	font-weight: 500;
	font-size: 14px !important;
	line-height: 19px;
}

.templates_content h4 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 24px;
	line-height: 20px;
}

.templates_content p {
	color: #bababa;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	margin: 11px 0;
}

.block_info {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border-radius: 10px;
	background: #1a1a28;
}

@media (max-width: 768px) {
	.block_info {
		width: 100%;
	}
}

.block_info span {
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
}

.block_info-text {
	display: flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 1024px) {
	.templates-grids {
		grid-template-columns: repeat(auto-fill, minmax(289px, 1fr));
		gap: 10px;
	}

	.header_templates {
		margin-bottom: 14px;
	}

	.section-templates h2 {
		font-size: 24px;
		line-height: 24px;
		gap: 8px;
	}

	.section-templates h2 img {
		width: 32px;
		height: 32px;
	}

	.templates-card {
		max-width: 100%;
	}

	.templates-image {
		max-height: 173px;
	}

	.templates_content {
		height: 150px;
	}

	.templates-image img {
		width: 252px;
	}

	.templates_content h4 {
		gap: 8px;
		font-size: 18px;
	}

	.templates_content h4 img {
		width: 20px;
		height: 20px;
	}

	.templates_content p {
		font-size: 12px;
		line-height: 16px;
	}

	.block_info {
		justify-content: space-between;
		max-width: 100%;
		max-height: 36px;
	}

	.block_info span {
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.header_templates .slider_btns {
		display: flex;
	}

	.info_hover {
		width: calc(100% - 32px);
		top: auto;
		bottom: calc(100% + 18px);
		left: -217px;
		transform: translateY(10px);
		box-sizing: border-box;
		min-width: 247px;
	}

	.info-container:hover .info_hover {
		transform: translateY(0);
	}

	.info-arrow {
		top: auto !important;
		bottom: -5px !important;
		transform: rotate(180deg) !important;
		left: 13.6rem !important;
	}

	.section-templates {
		overflow: hidden;
	}

	.templates-grids {
		display: flex;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		gap: 10px;
		padding-bottom: 15px;
		scroll-padding: 0 20px;
		padding: 0 20px 15px 20px;
		width: calc(100% + 50px);
		margin-left: -20px;
		-webkit-overflow-scrolling: touch;
	}

	.templates-card {
		max-width: 289px;
		flex: 0 0 auto;
	}
}

.slider_btns button {
	transition: opacity 0.3s ease;
}

.slider_btns button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* LINK SECTION  */
.main_links {
	position: relative;
	display: flex;
	height: 120px;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-image: url('./assets/bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.link_telegram {
	width: 1200px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 30px;
	padding: 0 20px;
}

.link_telegram h3 {
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
}

.link_telegram button {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	padding: 12px;
	border-radius: 12px;
	max-height: 36px;
	background: linear-gradient(180deg, #8b2cff 9.09%, #c79cff 100%);
	border: 1px solid #c495ff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.link_telegram button:hover {
	background: linear-gradient(180deg, #a72cff 9.09%, #a55fff 100%);
	border-color: transparent;
}

@media (max-width: 500px) {
	.link_telegram h3 {
		font-size: 12px;
	}
}

@media (max-width: 430px) {
	.link_telegram {
		flex-direction: column;
		margin-top: 0;
		gap: 12px;
	}

	.link_telegram button {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px;
		border-radius: 8px;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.main_links {
		background-image: url('./assets/bg (1).png');
	}

	.main_links::after {
		content: '';
		position: absolute;
		width: 205px;
		height: 33px;
		bottom: -25px;
		background: #8b2cff;
		filter: blur(23px);
	}
}

/* SECTION WORKS  */

.section_works {
	width: 1200px;
	padding: 0 20px;
}

@media (max-width: 1200px) {
	.section_works {
		width: 100%;
	}
}

.header_works {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.header_works h2 {
	display: flex;
	align-items: center;
	gap: 18px;
	font-family: 'Onest', sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 40px;
	line-height: 63px;
}

@media (max-width: 1024px) {
	.header_works h2 {
		font-size: 24px;
		line-height: 24px;
		gap: 8px;
	}

	.header_works h2 img {
		width: 32px;
		height: 32px;
	}
}

.header_works .action-works_btn {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header_works .action-works_btn button {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	padding: 12px;
	border-radius: 12px;
	max-height: 44px;
	cursor: pointer;
	background: linear-gradient(180deg, #202036 9.09%, #32324d 100%);
	border: none;
	transition: background 0.3s ease;
}

.header_works .action-works_btn button:hover {
	background: linear-gradient(180deg, #2b2b51 9.09%, #33336d 100%);
}

.columns_images-one {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	max-width: 100%;
	margin: 0 auto;
}

.one_image {
	position: relative;
	min-width: 590px;
	height: 432px;
	border-radius: 24px;
	cursor: pointer;
	background-image: url('./assets/Frame 37255.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 15px 13px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.one_image::before {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 0;
	background: #822eff7a;
	backdrop-filter: blur(5px);
	transition: height 0.3s ease;
}

.one_image:hover::before {
	height: 100%;
}

.one_image:hover .btn_action-image {
	opacity: 1;
	transform: translateY(0);
}

.one_image .info-container {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
}

.one_image .info-btn {
	cursor: pointer;
	transition: transform 0.2s ease;
}

.one_image .info-btn:hover {
	transform: scale(1.1);
}

.one_image .info_hover {
	position: absolute;
	width: 280px;
	background: #212130;
	z-index: 999999;
	padding: 16px;
	border-radius: 12px;
	bottom: calc(100% + 15px);
	left: -8.3rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	transform: translateY(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.one_image .info-container:hover .info_hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.one_image .info-arrow {
	position: absolute;
	bottom: -8px;
	right: 15px;
	width: 16px;
	height: 8px;
}

.small_column {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	width: 100%;
}

.big_column {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
	margin-top: 20px;
}

.image-container {
	position: relative;
}

.small_column-media {
	display: none;
}

.image_card {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	max-width: 285px;
	height: 206px;
	border-radius: 24px;
	background-image: url('/assets/Frame\ 37255.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 15px 13px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
}

.small_column .image_card:nth-child(1) {
	background-image: url('/assets/card-works/Frame\ 37257.jpg');
}
.small_column .image_card:nth-child(2) {
	background-image: url('/assets/card-works/Frame\ 37258.jpg');
}
.small_column .image_card:nth-child(3) {
	background-image: url('/assets/card-works/Frame\ 37259.jpg');
}
.small_column .image_card:nth-child(4) {
	background-image: url('/assets/card-works/Frame\ 37260.jpg');
}

.small_column-media .image_card:nth-child(1) {
	background-image: url('/assets/card-works/Frame\ 37264.jpg');
}
.small_column-media .image_card:nth-child(2) {
	background-image: url('/assets/card-works/Frame\ 37263.jpg');
}

.big_column .image_card:nth-child(1) {
	background-image: url('/assets/card-works/Frame\ 37264.jpg');
}
.big_column .image_card:nth-child(2) {
	background-image: url('/assets/card-works/Frame\ 37263.jpg');
}
.big_column .image_card:nth-child(3) {
	background-image: url('/assets/card-works/Frame\ 37261.jpg');
}
.big_column .image_card:nth-child(4) {
	background-image: url('/assets/card-works/Frame\ 37262.jpg');
}

.image_card::before {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 0;
	background: #822eff7a;
	backdrop-filter: blur(5px);
	transition: height 0.3s ease;
}

.btn_action-image {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 2;
	position: relative;
}

.btn_action-image button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	padding: 12px;
	border-radius: 12px;
	max-height: 44px;
	cursor: pointer;
	border: none;
	white-space: nowrap;
	transition: all 0.3s ease-in;
}

.btn_action-image button:nth-child(1) {
	background: #ffffff4a;
}
.btn_action-image button:nth-child(2) {
	background: linear-gradient(180deg, #8b2cff 9.09%, #c79cff 100%);
	border: 1px solid #c495ff;
}

.btn_action-image button:nth-child(1):hover {
	background: #ffffff33;
}

.btn_action-image button:nth-child(2):hover {
	background: linear-gradient(180deg, #a72cff 9.09%, #a55fff 100%);
	border-color: transparent;
}

.btn_action-image button img {
	width: 18px;
	height: 18px;
}

.image_card:hover::before {
	height: 100%;
}

.image_card:hover .btn_action-image {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1200px) {
	.one_image {
		min-width: 450px;
		height: 330px;
	}

	.image_card {
		max-width: 100%;
		height: 155px;
	}
}

@media (max-width: 1024px) {
	.one_image {
		min-width: 380px;
		height: 280px;
	}

	.big_column {
		margin-top: 8px;
	}

	.image_card {
		max-width: 100%;
		height: 135px;
	}

	.btn_action-image {
		flex-wrap: wrap;
		width: 100%;
	}

	.columns_images-one,
	.small_column,
	.small_column-media,
	.big_column {
		width: 100%;
		gap: 8px;
	}
}

@media (max-width: 768px) {
	.columns_images-one {
		flex-direction: column;
	}

	.big_column {
		display: none;
	}

	.header_works h2 {
		font-size: 24px;
		line-height: 24px;
	}

	.one_image {
		min-width: 100%;
		height: auto;
		aspect-ratio: 590/432;
		border-radius: 14px;
	}

	.small_column,
	.small_column-media {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.small_column-media .image_card,
	.small_column .image_card {
		max-width: 100%;
		height: 30vw;
		border-radius: 12px;
	}

	.small_column .image_card:nth-child(3),
	.small_column .image_card:nth-child(4) {
		display: none;
	}

	.header_works .action-works_btn button,
	.btn_action-image button {
		padding: 6px 8px;
		gap: 8px;
		font-size: 12px;
		border-radius: 8px;
	}

	.header_works .action-works_btn button img {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 500px) {
	.small_column-media img,
	.small_column img {
		border-radius: 12px;
	}
}

.dribbble {
	background: #ffffff17 !important;
	border: none !important;
	transition: background 0.3s ease;
}

.dribbble:hover {
	background: #ffffff33 !important;
}

/* FAQ SECTION  */
.section_faq {
	position: relative;
	display: flex;
	align-items: start;
	flex-direction: column;
	justify-content: space-between;
	width: 1200px;
	padding: 58px 24px;
	border-radius: 32px;
	overflow: hidden;
	background-image: url('./assets/Frame\ 2131329041.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 768px) {
	.section_faq {
		border-radius: 20px;
	}
}

@media (max-width: 1200px) {
	.section_faq {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.section_faq {
		padding: 24px 8px;
	}

	.section_faq-bottom {
		padding: 0 16px;
	}
}

.section_faq-top {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.faq_left {
	max-width: 400px;
}

.faq_left h2 {
	color: #ffffff;
	font-weight: 500;
	font-size: 56px;
	line-height: 53px;
	margin-top: 21px;
}

.faq_left p {
	color: #bababa;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	margin-top: 16px;
}

.faq_right {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 628px;
}

.faq_right .accordion {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: linear-gradient(
		90deg,
		rgba(215, 192, 255, 0.05) 0%,
		rgba(215, 192, 255, 0.04) 100%
	);
	padding: 20.5px 29px;
	border: 1px solid rgba(215, 192, 255, 0.2);
	border-radius: 14px;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease;
}

.accordion_header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.accordion_header h3 {
	color: #ffffff;
	font-weight: 500;
	font-size: 24px;
	line-height: 20px;
	transition: color 0.3s ease;
}

.accordion_header button {
	border: none;
	background-color: transparent;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.accordion_header button img {
	width: 24px;
	height: 24px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
		hue-rotate(0deg) brightness(100%) contrast(100%);
	transition: filter 0.3s ease;
}

.accordion_content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding-top 0.3s ease;
	color: rgba(255, 255, 255, 0.8);
}

.accordion.active .accordion_header h3 {
	color: #eed1ff;
}

.accordion.active .accordion_header button {
	transform: rotate(180deg);
}

.accordion.active .accordion_header button img {
	filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(748%)
		hue-rotate(227deg) brightness(107%) contrast(101%);
}

.accordion.active .accordion_content {
	max-height: 500px;
	padding-top: 15px;
}

.accordion_content p {
	color: #bababa;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
}

@media (max-width: 1200px) {
	.faq_right {
		min-width: 450px;
	}
}
@media (max-width: 900px) {
	.section_faq-top {
		flex-direction: column;
		gap: 24px;
	}
	.faq_right {
		min-width: 100%;
	}

	.faq_left {
		display: flex;
		max-width: 100%;
		gap: 16px;
	}

	.faq_left img {
		width: 150px;
		height: 150px;
	}

	.faq_left h2 {
		margin-top: 0;
	}
}
@media (max-width: 768px) {
	.section_faq-top {
		flex-direction: column;
		gap: 24px;
	}
	.faq_right {
		min-width: 100%;
	}

	.faq_left {
		display: flex;
		max-width: 100%;
		gap: 16px;
	}

	.faq_left img {
		width: 100px;
		height: 100px;
	}

	.faq_left h2 {
		font-size: 28px;
		line-height: 28px;
	}

	.faq_left p {
		margin-top: 8px;
	}
}

@media (max-width: 500px) {
	.faq_left img {
		width: 42px;
		height: 51px;
	}

	.faq_left h2 {
		font-size: 24px;
		line-height: 22px;
	}
	.faq_left p {
		font-size: 13px;
		line-height: 17px;
	}

	.faq_right .accordion {
		padding: 15px 16px;
	}

	.accordion_header h3 {
		font-size: 15px;
		line-height: 20px;
	}

	.accordion_header button {
		width: 16px;
		height: 16px;
	}

	.accordion_header button img {
		width: 100%;
		height: 100%;
	}
}

.section_faq-bottom {
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: 150px;
}

.section_faq-bottom h2 {
	color: #ffffff;
	font-weight: 500;
	font-size: 56px;
	line-height: 53px;
	width: 394px;
}

.action-btn_faq,
.btn_social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.action-btn_faq button {
	justify-content: center;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	padding: 12px;
	border-radius: 12px;
	max-height: 44px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.btn_social .telegram {
	background: linear-gradient(180deg, #8b2cff 9.09%, #c79cff 100%);
	border: 1px solid #c495ff;
}
.btn_social .whatsApp {
	background: linear-gradient(180deg, #198700 9.09%, #699e0f 100%);
	border: 1px solid #89ff4a;
}

.email {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.09) 9.09%,
		rgba(255, 255, 255, 0.21) 100%
	);
	border: none;
}

.email:hover {
	background: linear-gradient(180deg, #2b2b51 9.09%, #33336d 100%);
}
.btn_social .telegram:hover {
	background: linear-gradient(180deg, #a72cff 9.09%, #a55fff 100%);
	border-color: transparent;
}
.btn_social .whatsApp:hover {
	background: linear-gradient(180deg, #2dcd0a 9.09%, #91e400 100%);
	border-color: transparent;
}

@media (max-width: 1024px) {
	.action-btn_faq {
		flex-wrap: wrap;
	}

	.section_faq-bottom {
		margin-top: 24px;
	}
}
@media (max-width: 768px) {
	.section_faq-bottom h2 {
		font-size: 28px;
		line-height: 28px;
		width: 100%;
	}
}
@media (max-width: 650px) {
	.section_faq-bottom {
		flex-direction: column;
		align-items: start;
		gap: 15px;
	}
	.action-btn_faq {
		width: 100%;
		flex-wrap: wrap;
	}
	.btn_social {
		width: 100%;
	}

	.action-btn_faq button,
	.btn_social button {
		width: 100%;
	}
}

.footer_app {
	width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

@media (max-width: 1200px) {
	.footer_app {
		width: 100%;
	}
}

.footer-app_right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-app_right button {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 42px;
	height: 42px;
	padding: 12px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
}

.footer-app_right button:nth-child(1) {
	background: linear-gradient(180deg, #8b2cff 9.09%, #c79cff 100%);
	border: 1px solid #c495ff;
}
.footer-app_right button:nth-child(2) {
	background: linear-gradient(180deg, #198700 9.09%, #699e0f 100%);
	border: 1px solid #89ff4a;
}
.footer-app_right button:nth-child(3),
.footer-app_right button:nth-child(4) {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.09) 9.09%,
		rgba(255, 255, 255, 0.21) 100%
	);
}

.footer-app_right .dribbble_header:hover {
	background: linear-gradient(180deg, #2b2b51 9.09%, #33336d 100%);
}
.footer-app_right .telegram:hover {
	background: linear-gradient(180deg, #a72cff 9.09%, #a55fff 100%);
	border-color: transparent;
}
.footer-app_right .whatsApp:hover {
	background: linear-gradient(180deg, #2dcd0a 9.09%, #91e400 100%);
	border-color: transparent;
}

@media (max-width: 1200px) {
	.footer_app nav {
		display: none;
	}
}

@media (max-width: 768px) {
	.footer-app_right button {
		max-width: 32px;
		height: 32px;
		padding: 9px;
		border-radius: 9px;
	}

	.footer-app_right button img {
		width: 14px;
		height: 14px;
	}

	.logo {
		width: 124px;
	}

	.logo img {
		width: 100%;
		height: 27px;
	}
}

@media (max-width: 430px) {
	.footer_links {
		justify-content: space-between;
		flex-direction: row !important;
	}

	.footer_links button {
		width: 106px;
	}
}

@media (max-width: 768px) {
	.footer_app-link {
		margin-top: 12px;
	}

	.link_telegram {
		padding: 0 20px;
	}
}

.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 7px;
	gap: 18px;
	padding: 0 20px 20px 20px;
}

.footer p {
	color: #f1e2fe8a;
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
	max-width: 788px;
	text-align: center;
}

.footer a {
	display: none;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: #bababa;
	font-size: 15px;
	line-height: 20px;
	text-decoration: none;
	cursor: pointer;
}

@media (max-width: 768px) {
	.footer a {
		display: flex;
	}

	.footer p {
		font-size: 11px;
		line-height: 17px;
	}
}
