/*Fonts include*/
@font-face {
	font-family: 'artagan-un';
	src: url('../fonts/Unbounded-Light.woff2');
	font-weight: 200;
	font-display: swap;
}

@font-face {
	font-family: 'artagan-un';
	src: url('../fonts/Unbounded-Blond.woff2');
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'artagan-un';
	src: url('../fonts/Unbounded-Regular.woff2');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'artagan-un';
	src: url('../fonts/Unbounded-Medium.woff2');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'artagan-un';
	src: url('../fonts/Unbounded-Bold.woff2');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'artagan-roboto-mono';
	src: url('../fonts/roboto-mono.woff2');
	font-weight: 400;
	font-display: swap;
}

:root {
	--black: #000;
	/* --black: #1c1d20; */
	--dark: #292a2d;
	--blue: #135eff;
	--white: #fff;
	--red: #ff2213;
}

/*Base CSS*/
*,
*::before,
*::after {
	font-family: artagan-un, sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	cursor: default;
	font-size: 16px;
	min-width: 360px;
	font-weight: 400;
	position: relative;
	line-height: 1.5;
	overflow-x: hidden;
	color: var(--white);
	background-color: var(--black);
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

b,
strong {
	font-weight: 700;
}

img,
svg {
	width: 100%;
	display: block;
}

a {
	text-decoration: none;
}

.noScroll {
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 0;
	height: 0;
	overflow: hidden;
	display: none;
}

.noScroll .scrollbar {
	display: none;
}

.scrollbar {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 12px;
	background: transparent;
	z-index: 100;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.scrollbar.visible,
.scrollbar:hover {
	opacity: 1;
}

.thumb {
	position: absolute;
	width: 12px;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

.thumb:before {
	content: '';
	position: absolute;
	inset: 2.5px;
	border-radius: 10em;
	background: var(--white);
}

.thumb:hover {
	opacity: 1;
}

/*Main CSS*/

.noise__overlay {
	pointer-events: none;
	z-index: 9999;
	opacity: 0.03;
	background-image: url(./../img/noise.gif);
	background-position: 0 0;
	background-size: 480px;
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
}

.scale__app {
	will-change: transform;
	transition: transform 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	z-index: 10;
	opacity: 0;
	background: linear-gradient(0deg, transparent, var(--black));
	will-change: top;
}

.header.scrolled {
	/* background: rgb(0 0 0 / 70%); */
	/* background: rgb(28 29 32 / 70%); */
	/* backdrop-filter: blur(15px) saturate(1.5); */
}

.header__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 62px;
}

.header__logo img {
	width: 160px;
}

.header__phone {
	position: relative;
	margin: 3px 40px 0 auto;
	color: var(--white);
	font-size: 14px;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.header__phone:after {
	content: '';
	position: absolute;
	bottom: -2px;
	right: 0;
	width: 0;
	height: 2px;
	background: var(--white);
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.header__phone:hover {
	color: var(--blue);
}

.header__phone:hover:after {
	width: 100%;
	left: 0;
	background: var(--blue);
}

.menu__btn {
	display: grid;
	gap: 10px;
	background: 0;
	border: 0;
	cursor: pointer;
}

.menu__btn > div {
	width: 30px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	pointer-events: none;
	will-change: transform;
	transition: transform 0.3s ease;
}

.menu {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	inset: 0;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.menu.active {
	visibility: visible;
	opacity: 1;
}

.menu__container {
	position: fixed;
	top: 20px;
	right: 20px;
	max-width: 400px;
	width: 100%;
	height: calc(100% - 40px);
	background: linear-gradient(0deg, var(--dark), #3b3d44);
	border-radius: 30px;
	margin-left: auto;
	opacity: 0;
	transform: translateX(100%);
	will-change: transform;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.menu.active .menu__container {
	transform: translateX(0);
	opacity: 1;
}

.menu__close {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--black);
	border: 0;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: grid;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--white);
	z-index: 2;
}

.menu__close svg {
	width: 24px;
	pointer-events: none;
	will-change: transform;
	transition: transform 0.3s ease;
}

.menu__close:hover svg {
	transform: rotate(90deg);
}

.menu__scrolling {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	height: 100%;
	overflow: auto;
	padding: 30px 30px 50px;
	text-align: center;
}

.menu__container img {
	max-width: 200px;
	margin: 20px auto 0;
}

.menu__separator {
	width: 10px;
	height: 10px;
	background: var(--blue);
	border-radius: 50%;
	flex-shrink: 0;
}

.menu ul {
	display: grid;
	gap: 12px;
	list-style: none;
}

.menu ul a {
	position: relative;
	font-size: 21px;
	color: var(--white);
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.menu ul a:after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: 0;
	width: 0;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	will-change: transform;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.menu ul a:hover {
	color: var(--blue);
}

.menu ul a:hover:after {
	width: 100%;
	left: 0;
	background: var(--blue);
}

.menu__footer a {
	display: table;
	margin: auto;
	color: var(--white);
	font-weight: 300;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.menu__footer a:hover {
	opacity: 0.5;
}

.progress__bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background-color: var(--blue);
	z-index: 99;
}

.coordinates {
	font-family: artagan-roboto-mono, monospace;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 10px;
	line-height: 1;
	color: rgb(255 255 255 / 23%);
	z-index: 2;
	pointer-events: none;
}

.coordinates-x {
	left: 10px;
}

.hero {
	position: relative;
	padding: 120px 0 80px;
	min-height: 100vh;
	display: grid;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 64px;
	background: linear-gradient(0deg, var(--black), transparent);
}

.hero__bg {
	position: absolute;
	inset: 0;
	object-fit: cover;
	pointer-events: none;
	z-index: -1;
}

.hero__bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.h1__hero {
	font-size: clamp(26px, 8vw, 90px);
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 30px;
	color: var(--white);
}

.h1__hero b {
	display: block;
	font-weight: 500;
	-webkit-text-stroke: 1px var(--white);
	-webkit-text-fill-color: var(--black);
	transform: translateX(-400px);
	opacity: 0;
	visibility: hidden;
}

.h1__hero span {
	display: block;
	font-weight: 200;
	transform: translateX(400px);
	opacity: 0;
	visibility: hidden;
}

.p__hero {
	font-weight: 200;
	text-align: center;
	font-size: clamp(18px, 6vw, 38px);
	max-width: 780px;
	margin: auto;
	color: var(--blue);
	line-height: 1.3;
	opacity: 0;
	visibility: hidden;
}

.p__hero span {
	white-space: nowrap;
}

.btn__hero-wrap {
	margin: 40px 0;
	opacity: 0;
	visibility: hidden;
}

.btn {
	background: #0b3899;
	border: 0;
	color: var(--white);
	padding: 30px 50px 30px 60px;
	font-size: 22px;
	font-weight: 400;
	text-transform: lowercase;
	border-radius: 25px;
	display: flex;
	align-items: center;
	cursor: pointer;
	letter-spacing: 0.5px;
	position: relative;
	padding-right: 45px;
	margin: 0 auto;
	will-change: transform;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
	overflow: hidden;
}

.btn:hover {
	transform: scaleX(1.02);
	transition: all 0.5s cubic-bezier(0.34, 5.56, 0.64, 1);
}

.btn__text {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	will-change: transform;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 2;
}

.btn__text-alt {
	opacity: 0;
	display: flex;
	align-items: center;
	gap: 20px;
	transform: translateY(200%);
	position: absolute;
	will-change: transform;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 2;
}

.btn:hover .btn__text {
	opacity: 0;
	transform: translateY(-200%);
}

.btn:hover .btn__text-alt {
	opacity: 1;
	transform: translateY(0);
}

.btn svg {
	width: 28px;
	fill: var(--white);
}

.btn__ripple {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	transform: translateZ(0);
	border-radius: inherit;
}

.btn__ripple span {
	position: relative;
	display: block;
	width: 130%;
	height: 100%;
	border-radius: 50%;
	transform: translate(-50%, 101%);
	left: 50%;
	background-color: var(--blue);
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.btn:hover .btn__ripple span {
	border-radius: 0;
	transform: translate(-50%, 0);
	transition-duration: 0.5s, 0.9s;
}

.shuffle__text {
	text-align: center;
	font-size: clamp(25px, 8vw, 50px);
	text-transform: lowercase;
	color: var(--dark);
	opacity: 0;
	visibility: hidden;
}

.marquee {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	font-size: calc(clamp(15px, 1.6vw + 9.6px, 48px) * 4);
	line-height: 1;
	color: var(--white);
	text-transform: uppercase;
	opacity: 0.2;
	overflow: hidden;
	margin: 120px 0 150px;
}

.marquee__wrap {
	will-change: transform;
}

.marquee p {
	white-space: nowrap;
}

.section__title {
	font-size: clamp(26px, 9vw, 70px);
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 50px;
	color: var(--blue);
	text-shadow: 0 0 20px rgb(19 94 255 / 40%);
}

.services {
	margin-bottom: 180px;
	contain: layout;
}

.services__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	padding: 20px 0;
	border-bottom: 1px solid rgb(255 255 255 / 20%);
	will-change: transform;
}

.services__item:first-child {
	border-top: 1px solid rgb(255 255 255 / 20%);
}

.services__br {
	display: none;
}

.services__item h3 {
	font-size: clamp(20px, 5.42vw, 50px);
	font-weight: 300;
}

.services__item h3 span {
	white-space: nowrap;
}

.services__item .services__num {
	font-size: clamp(20px, 6vw, 30px);
	font-weight: 200;
	opacity: 0.5;
}

.btn__services {
	margin-top: 60px;
}

.development {
	margin-bottom: 70px;
	contain: layout;
}

.development__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 40px;
	margin-bottom: 60px;
}

.development__content {
	max-width: 80%;
}

.development .section__title {
	text-align: left;
	font-size: clamp(26px, 9vw, 50px);
	margin-bottom: 50px;
	line-height: 1.3;
}

.development__descr {
	font-size: clamp(18px, 5vw, 40px);
	font-weight: 300;
	line-height: 1.3;
	max-width: 940px;
	margin-bottom: 40px;
}

.development__descr i {
	font-style: normal;
}

.development__text {
	font-size: clamp(14px, 3vw, 20px);
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.5px;
	opacity: 0.75;
	margin-bottom: 50px;
}

.development__steps-title {
	font-size: clamp(20px, 6vw, 30px);
	font-weight: 400;
	margin-bottom: 25px;
	color: var(--blue);
	will-change: transform;
}

.development__steps {
	display: grid;
	gap: 30px;
	padding-bottom: 120px;
}

.development__step {
	max-width: 680px;
	background: linear-gradient(45deg, rgb(59 61 68 / 85%), rgb(41 42 45 / 85%));
	-webkit-backdrop-filter: blur(20px) saturate(1.5);
	backdrop-filter: blur(20px) saturate(1.5);
	padding: 40px;
	border-radius: 25px;
	will-change: transform;
}

.step__num {
	font-size: 30px;
	margin-bottom: 30px;
	border: 2px dashed rgb(255 255 255 / 50%);
	display: table;
	padding: 12px 14px 10px;
	line-height: 1;
	border-radius: 10px;
}

.development__step h3 {
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 10px;
}

.development__step p {
	font-weight: 200;
	line-height: 1.6;
	opacity: 0.75;
	letter-spacing: 0.5px;
}

.development__video-wrap {
	position: absolute;
	top: 0;
	right: 50%;
	width: 600px;
	height: 100%;
	z-index: -1;
	transform: translateX(calc(50% + 390px));
	margin-top: -50px;
}

.development__video {
	position: sticky;
	top: 85px;
	width: 100%;
	will-change: transform;
	transition: all 5s cubic-bezier(0.05, 0.5, 0, 1);
}

.portfolio {
	margin-bottom: 250px;
	contain: layout;
}

.portfolio__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}

.portfolio__item {
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 3 / 2;
	will-change: transform;
	z-index: 2;
}

.portfolio__item img {
	width: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.portfolio__item:hover img {
	filter: brightness(0.3);
	width: 105%;
	margin-left: -2.5%;
}

.portfolio__item-content {
	position: absolute;
	inset: 0;
	-webkit-backdrop-filter: blur(7px) saturate(1.5);
	backdrop-filter: blur(7px) saturate(1.5);
	padding: 9%;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.portfolio__item:hover .portfolio__item-content {
	opacity: 1;
}

.portfolio__item-content h3 {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 15px;
	line-height: 1.3;
}

.portfolio__item-content p {
	font-size: 18px;
	font-weight: 200;
	letter-spacing: 0.5px;
}

.portfolio__item-content span {
	position: absolute;
	left: 9%;
	bottom: calc(9% + 14px);
	justify-content: center;
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 15px;
}

.portfolio__item-content span svg {
	width: 20px;
}

.portfolio__item-content span:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -7px;
	height: 1px;
	width: 0;
	background-color: var(--white);
	opacity: 0;
	transition: all 0.5s ease;
}

.portfolio__item:hover span:after {
	width: 100%;
	opacity: 1;
	transition-delay: 0.5s;
}

.portfolio__item h3,
.portfolio__item p,
.portfolio__item span {
	opacity: 0;
	will-change: transform;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.portfolio__item:hover h3,
.portfolio__item:hover p,
.portfolio__item:hover span {
	opacity: 1;
	transform: translateY(0);
}

.portfolio__item:hover p {
	transition-delay: 0.25s;
}

.portfolio__item:hover span {
	transition-delay: 0.5s;
}

.popup {
	display: grid;
	align-items: center;
	position: fixed;
	inset: 0;
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	background: transparent;
	visibility: hidden;
	z-index: 99;
	will-change: transform;
	transition: all 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}

.popup.active {
	visibility: visible;
	opacity: 1;
}

.portfolio__popup {
	transform: translateY(100vh);
}

.portfolio__popup.active {
	transform: translateY(0);
}

.popup__close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--black);
	border: 0;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: grid;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--white);
	z-index: 2;
	will-change: transform;
	transform: translateY(100vh);
	transition: transform 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}

.popup.active .popup__close {
	transform: translateY(0);
}

.popup__close svg {
	width: 24px;
	pointer-events: none;
	will-change: transform;
	transition: transform 0.3s ease;
}

.popup__close:hover svg {
	transform: rotate(90deg);
}

.form__popup {
	overflow-y: auto;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 0;
	padding: 0 20px;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.form__popup.active {
	opacity: 1;
}

.form__popup-wrap {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: 800px;
	margin: 40px auto;
}

.form__popup .popup__close {
	transform: none;
}

.form__popup-wrap {
	transform: scale(0.5);
	will-change: transform;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.form__popup.active .form__popup-wrap {
	transform: scale(1);
}

.form__popup-image {
	position: relative;
	display: grid;
	align-items: center;
	justify-content: center;
	background: #133e9c;
	border-radius: 30px 0 0 30px;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.form__popup-image img {
	max-width: 220px;
	margin-bottom: 30px;
}

.form__popup-image:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--blue);
	z-index: -1;
}

.form__popup-image.submitting:before {
	transition: width 2s ease;
	width: 100%;
}

form {
	position: relative;
	padding: 60px 30px;
	background: linear-gradient(45deg, #3b3d44, var(--dark));
	border-radius: 0 30px 30px 0;
	overflow: hidden;
}

form h3 {
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 20px;
}

form input {
	width: 100%;
	height: 60px;
	font-size: 18px;
	padding: 0 26px;
	border-radius: 15px;
	border: 0;
	background: var(--black);
	color: var(--white);
	outline: 2px solid transparent;
	outline-offset: -1px;
	margin-bottom: 16px;
	transition: outline 0.3s ease;
}

form input:focus {
	outline: 2px solid var(--blue);
}

form input.invalid {
	outline: 2px solid var(--red);
}

.form__btn {
	width: 100%;
	justify-content: center;
	padding: 2px 25px 0;
	height: 60px;
	border-radius: 15px;
	font-size: 16px;
	transition: none;
}

.form__btn:hover {
	transform: none;
}

.form__footer p {
	text-align: center;
	margin-top: 20px;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.7px;
	opacity: 0.5;
}

.form__success {
	display: none;
	position: absolute;
	inset: 0;
	padding: 30px 25px 60px;
	text-align: center;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, #3b3d44, var(--dark));
	z-index: 1;
}

.form__success.active {
	display: grid;
}

.form__success h3 {
	font-size: 22px;
	font-weight: 500;
	margin: 15px 0 5px;
}

.form__success p {
	font-weight: 300;
	letter-spacing: 1px;
}

.portfolio__scroll {
	height: 100%;
	overflow-x: auto;
}

.popup__content {
	position: relative;
	background: var(--white);
	width: 100%;
	min-height: 100vh;
	padding-top: 60px;
	padding-left: 60px;
	padding-right: 60px;
}

.popup__content-anim {
	transform: translateY(80vh);
	will-change: transform;
	transition: all 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}

.popup.active .popup__content-anim {
	transform: translateY(0);
}

.popup__content h3 {
	color: var(--black);
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 30px;
}

.portfolio__popup-grid {
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: center;
	justify-content: center;
	gap: 30px;
	max-width: 630px;
	margin: 0 auto 20px;
}

.portfolio__popup-cover {
	width: 100%;
	aspect-ratio: 1;
	background: rgb(28 29 32 / 12%);
	border-radius: 20px;
	border: 1px solid transparent;
	overflow: hidden;
}

.portfolio__popup-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio__popup-grid p {
	color: var(--black);
}

.portfolio__popup .popup__angle {
	width: 60px;
	margin: 0 auto 20px;
	fill: var(--blue);
}

.portfolio__popup-full {
	background: rgb(28 29 32 / 12%);
	box-shadow: 0 0 20px rgb(0 0 0 / 5%);
	border-radius: 25px;
	overflow: hidden;
	min-height: 300px;
}

.go__to-website {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	line-height: 1;
	font-size: 24px;
	color: var(--blue);
	padding: 50px 0 45px;
}

.go__to-website:hover svg {
	transform: translateX(20px);
}

@media (hover: none) {
	.go__to-website:hover svg {
		transform: translateX(0);
	}
}

.go__to-website svg {
	width: 35px;
	transition: all 0.3s ease;
}

.faq {
	margin-bottom: 150px;
}

.faq__grid {
	display: grid;
	gap: 20px;
}

.faq__item {
	background: linear-gradient(45deg, #3b3d44, var(--dark));
	border-radius: 25px;
}

.faq__item h3 {
	position: relative;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.3;
	padding: 28px 100px 25px 40px;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.faq__item h3:hover {
	opacity: 0.5;
}

@media (hover: none) {
	.faq__item h3:hover {
		opacity: 1;
	}
}

.faq__item h3:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 35px;
	background-image: url('./../img/close_icon.svg');
	background-color: var(--blue);
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: grid;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	will-change: transform;
	transition: all 0.5s ease;
	transform: translateY(-50%) rotate(-45deg);
}

.faq__item h3.active:after {
	transform: translateY(-50%) rotate(90deg);
	background-color: var(--red);
}

.faq__text {
	display: none;
	padding: 0 40px 35px;
	will-change: transform;
}

.faq__item:first-child .faq__text {
	display: block;
}

.faq__item p {
	letter-spacing: 0.5px;
	font-weight: 300;
	opacity: 0.75;
	margin-bottom: 15px;
	line-height: 1.6;
}

.faq__item p:first-child {
	border-top: 1px solid rgb(255 255 255 / 15%);
	padding-top: 28px;
}

.faq__item p:last-child {
	margin: 0;
}

.contacts {
	margin-bottom: 150px;
	contain: layout;
}

.contacts__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr max-content;
	align-items: center;
	justify-content: space-between;
	gap: 0 50px;
	margin-bottom: 90px;
}

.contacts__text h3 {
	font-size: 50px;
	font-weight: 400;
	line-height: 1.2;
	max-width: 565px;
	margin-bottom: 60px;
}

.contacts__text p {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.5px;
	margin-bottom: 60px;
	opacity: 0.75;
}

.contacts__items {
	display: flex;
	align-items: center;
	gap: 40px;
}

.contacts__items a {
	position: relative;
	font-size: 30px;
	color: var(--white);
	text-transform: uppercase;
	white-space: nowrap;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.contacts__items a:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--white);
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.contacts__items a:hover {
	color: var(--blue);
}

.contacts__items a:hover:after {
	width: 100%;
	left: 0;
	background: var(--blue);
}

.contacts__bubbles {
	position: relative;
}

.contacts__bubbles img {
	max-width: 280px;
	margin: -25px auto 80px;
}

.contacts__video-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	z-index: -1;
	filter: blur(50px);
}

.contacts__video {
	width: 100%;
	will-change: transform;
	transition: all 5s cubic-bezier(0.05, 0.5, 0, 1);
}

.map__container {
	position: relative;
	height: 500px;
	background: linear-gradient(45deg, #3b3d44, var(--dark));
	border-radius: 25px;
	overflow: hidden;
	z-index: 1;
}

.map__container span {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.5px;
}

.map {
	height: 100%;
	position: relative;
	z-index: 2;
}

.footer {
	background: var(--dark);
	padding: 50px 0;
}

.footer__grid {
	display: grid;
	grid-template-columns: repeat(4, max-content);
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.footer__start a {
	display: table;
	margin-bottom: 12px;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.footer__start a:after {
	display: none;
}

.footer__start a:hover {
	opacity: 1;
}

.footer__start img {
	width: 160px;
}

.footer__start p {
	font-size: 10px;
	opacity: 0.5;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.footer__grid h3 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 12px;
	opacity: 0.5;
}

.footer__contacts p {
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.footer__contacts p:last-child {
	margin-bottom: 0;
}

.footer__contacts p a {
	color: var(--blue);
	font-weight: 500;
}

.footer__info p {
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.footer__info p:last-child {
	margin-bottom: 0;
}

.footer__info a {
	color: var(--white);
}

.footer a {
	position: relative;
}

.footer a:after {
	content: '';
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 0;
	height: 1px;
	background: var(--blue);
	will-change: transform;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.footer a:hover:after {
	left: 0;
	width: 100%;
}

.footer__info a:after {
	background: var(--white);
}

.footer__messangers {
	align-self: center;
}

.footer__messangers a {
	will-change: transform;
	transition: all 0.3s ease;
	display: grid;
	margin-bottom: 15px;
}

.footer__messangers a:last-child {
	margin-bottom: 0;
}

.footer__messangers a:hover {
	transform: scale(1.1);
}

.footer__messangers img {
	will-change: transform;
	width: 42px;
}

.footer__messangers a:after {
	display: none;
}

.footer__text-logo {
	opacity: 0.05;
}

.footer__end {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgb(255 255 255 / 10%);
	padding-top: 30px;
	margin-top: 30px;
}

.footer__copyright {
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.develop__by {
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
	justify-self: center;
}

.develop__by a {
	color: var(--blue);
	font-weight: 500;
}

.slide__up {
	display: flex;
	align-items: center;
	gap: 10px;
	background: 0;
	border: 0;
	justify-self: end;
	color: var(--white);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
	height: 18px;
}

.slide__up-icon {
	pointer-events: none;
	transform: translateY(8px);
}

.slide__up:hover .slide__up-icon1 {
	transform: translateY(-100%);
	opacity: 0;
}

.slide__up:hover .slide__up-icon2 {
	transform: translateY(-100%);
	opacity: 1;
}

.slide__up-icon2 {
	opacity: 0;
}

.slide__up svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	will-change: transform;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.privacy {
	padding: 20px;
}

.privacy__close {
	position: fixed;
	top: 30px;
	right: 30px;
	transform: none;
	color: var(--white);
}

.privacy__content {
	background: var(--dark);
	border-radius: 25px;
	padding: 30px 35px;
}

.privacy__content h1 {
	font-weight: 500;
	font-size: clamp(20px, 5vw, 30px);
	margin-bottom: 20px;
}

.privacy__content h2 {
	font-size: clamp(16px, 4vw, 22px);
	font-weight: 500;
	margin-top: 30px;
	margin-bottom: 10px;
}

.privacy__content h2:first-of-type {
	margin-top: 0;
}

.privacy__content p {
	font-size: clamp(13px, 2vw, 16px);
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.privacy__content p:last-of-type {
	margin-bottom: 0;
}

.privacy__content a {
	color: var(--blue);
	text-decoration: underline;
	font-weight: 500;
}

/* Media CSS */
@media (max-width: 1145px) {
	.portfolio__grid {
		gap: 30px;
	}

	.portfolio__item-content h3 {
		font-size: 24px;
	}

	.portfolio__item-content p {
		font-size: 16px;
		line-height: 1.6;
	}

	.contacts__grid {
		gap: 0 30px;
	}

	.contacts__text h3 {
		font-size: 42px;
	}

	.contacts__items {
		align-items: start;
		gap: 10px;
		flex-direction: column;
	}

	.popup__content {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (max-width: 900px) {
	.h1__hero {
		line-height: 1.3;
	}

	.h1__hero b {
		-webkit-text-stroke: 0.5px var(--white);
	}

	.marquee {
		margin: 50px 0 120px;
	}

	.services__item h3 font {
		display: none;
	}

	.services__br {
		display: block;
	}

	.portfolio__grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}

	.portfolio__item {
		display: grid;
		grid-template-columns: 2fr 3fr;
		aspect-ratio: 5 / 2;
		background: linear-gradient(45deg, #3b3d44, var(--dark));
	}

	.portfolio__item-content {
		position: relative;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		opacity: 1;
		padding: 6% 6% 6% 4%;
	}

	.portfolio__item img {
		width: calc(100% - 20px);
		margin: 10px 0 0 10px;
		border-radius: 15px;
	}

	.portfolio__item h3,
	.portfolio__item p,
	.portfolio__item span {
		opacity: 1;
		transform: none;
	}

	.portfolio__item p,
	.portfolio__item:hover p {
		opacity: 0.75;
	}

	.portfolio__item-content span {
		left: 4%;
		bottom: calc(6% + 14px);
	}

	.portfolio__item-content span:after {
		display: none;
	}

	.portfolio .portfolio__item img {
		filter: none;
		width: calc(100% - 20px);
		margin-left: 10px;
	}

	.contacts__grid {
		grid-template-columns: 1fr;
	}

	.contacts__bubbles {
		order: 1;
	}

	.contacts__bubbles img {
		max-width: 200px;
		margin: -25px auto 65px;
	}

	.contacts__video-wrap {
		max-width: 500px;
		width: 100%;
	}

	.contacts__text {
		order: 2;
	}

	.contacts__text h3 {
		text-align: center;
		margin: 0 auto 40px;
	}

	.contacts__text p {
		text-align: center;
		margin-bottom: 40px;
	}

	.contacts__items {
		order: 3;
		align-items: center;
		margin-bottom: 40px;
	}

	.contacts__grid .btn {
		order: 4;
	}

	.footer__grid {
		grid-template-columns: repeat(2, max-content);
	}

	.footer__info {
		text-align: right;
	}

	.footer__messangers {
		align-self: end;
		justify-self: end;
		display: flex;
		gap: 20px;
	}

	.footer__messangers a {
		margin-bottom: 0;
	}

	.footer__end {
		grid-template-columns: repeat(1, max-content);
		justify-content: center;
		gap: 15px;
	}

	.slide__up {
		justify-self: center;
		margin-left: 8px;
	}
}

@media (max-width: 700px) {
	.portfolio__item-content h3 {
		font-size: 19px;
		margin-bottom: 10px;
	}

	.portfolio__item-content p {
		font-size: 14px;
		overflow: hidden;
		-webkit-line-clamp: 3;
		line-clamp: 3;
		white-space: normal;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
	}

	.form__popup-wrap {
		grid-template-columns: 1fr;
		background: linear-gradient(45deg, #3b3d44, var(--dark));
		border-radius: 30px;
		max-width: 400px;
		margin-top: 65px;
	}

	.form__popup-image,
	form {
		background: transparent;
	}

	form {
		padding: 15px 30px 30px;
	}

	.form__popup-image {
		overflow: initial;
	}

	.form__popup-image:before {
		display: none;
	}

	.form__popup-image img {
		max-width: 100px;
		margin: -50px 0 0;
	}

	.form__success {
		padding: 0 20px 60px;
		border-radius: 25px;
	}

	.popup__content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 600px) {
	.menu__container {
		max-width: 100%;
		width: calc(100% - 40px);
		top: initial;
		right: 20px;
		bottom: 20px;
		transform: translate(0, 100%);
	}

	.menu.active .menu__container {
		transform: none;
	}

	.menu__close {
		right: 10px;
		left: initial;
	}

	.footer__grid {
		grid-template-columns: repeat(1, max-content);
		justify-content: center;
		gap: 40px;
	}

	.footer__start a {
		margin: 0 auto 12px;
	}

	.footer__start a img {
		margin-left: -2px;
	}

	.footer__start p {
		text-align: center;
	}

	.footer__info {
		text-align: center;
	}

	.footer__contacts {
		text-align: center;
	}

	.footer__messangers {
		justify-self: center;
	}

	.portfolio__popup-grid {
		grid-template-columns: 1fr;
	}

	.portfolio__popup-cover {
		width: 100px;
		margin: 0 auto;
	}

	.portfolio__popup-grid p {
		text-align: center;
	}
}

@media (max-width: 500px) {
	.container {
		padding: 0 10px;
	}

	.header .menu .menu__container {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		right: 10px;
		bottom: 10px;
	}

	.form__popup {
		padding: 0 10px;
	}

	.header__phone {
		display: none;
	}

	.btn {
		font-size: 18px;
		padding-right: 30px;
		padding-left: 40px;
		width: 100%;
		justify-content: center;
	}

	.p__hero {
		font-weight: 300;
	}

	.services {
		margin-bottom: 140px;
	}

	.development {
		margin-bottom: 20px;
	}

	.development__grid {
		margin-bottom: 0;
	}

	.portfolio {
		margin-bottom: 140px;
	}

	.faq {
		margin-bottom: 140px;
	}

	.development .section__title {
		text-align: center;
		margin-bottom: 30px;
	}

	.development__content {
		max-width: 100%;
		text-align: center;
	}

	.development__descr {
		line-height: 1.4;
		margin-bottom: 30px;
	}

	.development__steps {
		gap: 10px;
	}

	.development__step {
		display: grid;
		grid-template-columns: 60px 1fr;
		gap: 15px;
		padding: 20px;
		border-radius: 20px;
		text-align: left;
	}

	.step__num {
		align-self: start;
		text-align: center;
		font-size: 16px;
	}

	.development__step h3 {
		font-size: 13px;
	}

	.development__step p {
		font-size: 10px;
		font-weight: 300;
	}

	.development__video-wrap {
		transform: translateX(50%);
		margin-top: 0;
	}

	.development__video {
		filter: blur(50px);
		transform: none !important;
	}

	.portfolio__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	.portfolio__item {
		display: flex;
		flex-direction: column;
		aspect-ratio: initial;
		width: calc(50% - 5px);
		border-radius: 20px;
	}

	.portfolio .portfolio__item img {
		aspect-ratio: 1;
		width: calc(100% - 14px);
		margin: 7px 0 0 7px;
		border-radius: 13px;
	}

	.portfolio__item-content {
		display: flex;
		flex-direction: column;
		height: 100%;
		padding: 15px 10px;
		text-align: center;
	}

	.portfolio__item-content > div {
		flex-grow: 1;
	}

	.portfolio__item-content h3 {
		font-size: 13px;
		margin-bottom: 6px;
	}

	.portfolio__item-content p {
		font-size: 10px;
		font-weight: 300;
		margin-bottom: 12px;
	}

	.portfolio__item-content span {
		position: relative;
		justify-content: center;
		font-size: 10px;
		letter-spacing: 1px;
		left: 0;
		bottom: 0;
		gap: 10px;
	}

	.portfolio__item-content span svg {
		width: 15px;
	}

	.faq__item h3 {
		font-size: 16px;
		font-weight: 400;
		line-height: 1.4;
		padding: 23px 80px 23px 25px;
	}

	.faq__item h3:after {
		right: 20px;
	}

	.faq__text {
		padding: 0 25px 30px;
	}

	.faq__item p {
		font-size: 15px;
	}

	.contacts {
		margin-bottom: 80px;
	}

	.contacts__grid {
		margin-bottom: 40px;
	}

	.contacts__bubbles img {
		max-width: 140px;
		margin: -25px auto 40px;
	}

	.contacts__text h3 {
		font-size: 26px;
		line-height: 1.3;
	}

	.contacts__items a {
		font-size: 24px;
	}

	.map__container {
		height: 360px;
	}

	.form__btn {
		font-size: 16px;
		padding: 0 25px;
	}

	.popup__content {
		padding-left: 10px;
		padding-right: 10px;
	}

	.popup__content h3 {
		font-size: 30px;
		margin-top: 20px;
	}

	form input {
		font-size: 16px;
	}

	.form__footer p {
		font-size: 10px;
	}

	.privacy {
		padding: 10px;
	}

	.privacy__close {
		top: 20px;
		right: 20px;
	}

	.privacy__content {
		border-radius: 20px;
		padding: 20px 25px;
	}
}
