/*Fonts include*/
@font-face {
	font-family: 'gotham-w';
	src: url('../fonts/GothamPro.woff2');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'gotham-w';
	src: url('../fonts/GothamPro-Medium.woff2');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'gotham-w';
	src: url('../fonts/GothamPro-Bold.woff2');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'gotham-w';
	src: url('../fonts/GothamPro-Black.woff2');
	font-weight: 900;
	font-display: swap;
}

@font-face {
	font-family: 'gotham-w';
	src: url('../fonts/GothamPro-Black.woff2');
	font-weight: 900;
	font-display: swap;
}

/*Base CSS*/
*,
*::before,
*::after {
	font-family: gotham-w, sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-size: 16px;
	min-width: 360px;
	font-weight: 400;
	position: relative;
	line-height: 1.5;
	overflow-x: hidden;
	color: #1d1c1c;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #f5f4f0;
}

b,
strong {
	font-weight: 700;
}

img,
svg {
	max-width: 100%;
	width: 100%;
	display: block;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

::-webkit-scrollbar {
	width: 0;
	height: 0;
	overflow: hidden;
	display: none;
}

/*Main CSS*/
#content {
	will-change: transform;
}

.container {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0 10px;
	transition: all 0.35s ease;
	z-index: 99;
}

.header.fixed {
	padding: 10px 0;
	background: rgb(255 255 255 / 85%);
	-webkit-backdrop-filter: saturate(150%) blur(15px);
	backdrop-filter: saturate(150%) blur(15px);
}

.header__grid {
	position: relative;
	display: grid;
	grid-template-columns: 250px max-content;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	width: 250px;
	transition: opacity 0.3s ease;
}

.contact__us,
.header__popup {
	display: flex;
	align-items: center;
	gap: 30px;
}

.phone__number {
	font-size: 18px;
	color: #021c3d;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.phone__number svg,
.mobile__popup-btn {
	display: none;
}

.social {
	display: flex;
	gap: 8px;
}

.social a {
	border-radius: 10em;
	transition: transform 0.3s ease;
	will-change: transform;
}

.social a img {
	width: 32px;
}

.btn {
	position: relative;
	border: 0;
	background: #021c3d;
	padding: 15px 32px;
	border-radius: 10em;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	overflow: hidden;
	transition: background 0.35s ease;
}

.btn-text1 {
	display: block;
	transition: all 0.35s ease;
	will-change: transform;
	pointer-events: none;
}

.btn-text2 {
	position: absolute;
	display: block;
	width: 100%;
	left: 0;
	margin-top: 15px;
	opacity: 0;
	transition: all 0.35s ease;
	will-change: transform;
	pointer-events: none;
}

.hero {
	padding-top: 120px;
	text-align: center;
}

.hero__content {
	position: relative;
	padding: 85px 50px 100px;
	border-radius: 40px;
	background: #f5f4f0;
	overflow: hidden;
	z-index: 1;
}

h1 {
	line-height: 1.2;
}

h1 span.slide__text {
	position: relative;
	display: inline-block;
	font-size: 100px;
	font-weight: 500;
	color: #ccc;
}

h1 span.dop__text {
	position: absolute;
	left: 0;
	width: 0%;
	overflow: hidden;
	background: linear-gradient(0deg, rgba(36, 36, 36, 0.05) 0, rgba(36, 36, 36, 0.05) 100%),
		linear-gradient(
			97deg,
			#ed3cca 0.49%,
			#df34d2 14.88%,
			#d02bd9 29.27%,
			#bf22e1 43.14%,
			#ae1ae8 57.02%,
			#9a10f0 70.89%,
			#8306f7 84.76%,
			#7c1af8 99.15%
		);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	pointer-events: none;
}

h1 font {
	display: block;
	color: #021c3d;
	font-size: 50px;
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto;
	opacity: 0;
	visibility: hidden;
}

.btn__hero {
	margin-top: 30px;
	opacity: 0;
	visibility: hidden;
	background: linear-gradient(0deg, rgba(36, 36, 36, 0.05) 0, rgba(36, 36, 36, 0.05) 100%),
		linear-gradient(
			97deg,
			#ed3cca 0.49%,
			#df34d2 14.88%,
			#d02bd9 29.27%,
			#bf22e1 43.14%,
			#ae1ae8 57.02%,
			#9a10f0 70.89%,
			#8306f7 84.76%,
			#7c1af8 99.15%
		);
}

.btn__big {
	font-size: 20px;
	padding: 22px 50px;
}

.circles {
	position: absolute;
	top: -80%;
	left: 0;
	width: 100%;
	height: 200%;
	opacity: 0;
	z-index: -1;
	will-change: transform;
	transform: scale(0.5);
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgb(177 30 216 / 13%);
	animation: animate 25s linear infinite;
	bottom: -150px;
	opacity: 0;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 0;
		border-radius: 0;
	}

	10% {
		opacity: 1;
	}

	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

.whom {
	margin-top: 120px;
}

h2.title {
	position: relative;
	text-align: center;
	font-size: 56px;
	font-weight: 500;
	color: #021c3d;
	margin-bottom: 70px;
}

h2.title span {
	position: absolute;
	width: 100%;
	font-size: 110px;
	text-transform: uppercase;
	font-weight: 900;
	-webkit-text-stroke: 1px rgb(2 28 61 / 10%);
	color: transparent;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	pointer-events: none;
}

.whom__grid-wrap {
	position: relative;
}

.whom__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 150px;
	will-change: transform;
}

.whom__item {
	background: #fff;
	border-radius: 30px;
	font-size: 17px;
	font-weight: 500;
	color: #787569;
	padding: 30px 40px;
}

.whom__item:nth-child(1) {
	transform: rotate(5deg) translateY(-20px);
}

.whom__item:nth-child(2) {
	text-align: right;
	transform: rotate(-5deg) translateY(-20px);
}

.whom__item:nth-child(3) {
	transform: rotate(-5deg) translateY(20px);
}

.whom__item:nth-child(4) {
	text-align: right;
	transform: rotate(5deg) translateY(20px);
}

.whom__question {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #787569;
	font-size: 200px;
	line-height: 1;
	width: 400px;
	height: 300px;
	border-radius: 50%;
	display: grid;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.whom__question span {
	animation: shake 4s;
	animation-iteration-count: infinite;
}

@keyframes shake {
	0% {
		transform: translate(1px, 1px) rotate(0deg);
	}
	10% {
		transform: translate(-1px, -2px) rotate(-1deg);
	}
	20% {
		transform: translate(-3px, 0px) rotate(1deg);
	}
	30% {
		transform: translate(3px, 2px) rotate(0deg);
	}
	40% {
		transform: translate(1px, -1px) rotate(1deg);
	}
	50% {
		transform: translate(-1px, 2px) rotate(-1deg);
	}
	60% {
		transform: translate(-3px, 1px) rotate(0deg);
	}
	70% {
		transform: translate(3px, 1px) rotate(-1deg);
	}
	80% {
		transform: translate(-1px, -1px) rotate(1deg);
	}
	90% {
		transform: translate(1px, 2px) rotate(0deg);
	}
}

.whom__question-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid rgb(120 117 105 / 20%);
	width: 450px;
	height: 350px;
	border-radius: 50%;
	z-index: -1;
	outline: 2px solid rgb(120 117 105 / 10%);
	outline-offset: 24px;
}

.whom__next {
	margin-top: 160px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.whom__next-item {
	position: relative;
	border: 4px solid #fff;
	color: #021c3d;
	padding: 40px 40px 40px 200px;
	border-radius: 30px;
	font-size: 20px;
	will-change: transform;
}

.whom__next-image {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	width: 165px;
	height: calc(100% - 20px);
	background: rgb(255 255 255 / 85%);
	border-radius: 16px;
	display: grid;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.whom__next-item h3 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 15px;
	line-height: 1;
}

.whom__next-item p {
	font-size: 20px;
	opacity: 0.7;
	font-weight: 500;
}

.whom .btn {
	display: table;
	margin: 60px auto 0;
}

.services {
	margin-top: 120px;
}

.services__grid {
	position: relative;
	display: grid;
	gap: 90px;
}

.services__item {
	position: relative;
	background: #021c3d;
	padding: 60px 70px;
	border-radius: 40px;
	color: #f5f4f0;
	will-change: transform;
}

.services__item h3 {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 5px;
}

.services__item p {
	font-size: 20px;
	opacity: 0.75;
}

.services__item ul {
	display: none;
	background: rgb(255 255 255 / 5%);
	padding: 25px;
	border-radius: 15px;
	margin: 20px 0 30px;
}

.services__item ul li {
	position: relative;
	line-height: 1.3;
	margin-bottom: 10px;
	padding-left: 13px;
}

.services__item ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 4px;
	background: #fff;
}

.services__item ul li:last-child {
	margin: 0;
}

.service__more {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 0;
	width: 184px;
	margin-top: 20px;
	background: linear-gradient(90deg, #ff3595 0, #8d3df5 100%);
	padding: 15px 30px 15px 35px;
	border-radius: 10em;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	transition: opacity 0.3s ease;
}

.service__more svg {
	transition: transform 0.3s ease;
	will-change: transform;
}

.service__more.clicked svg {
	transform: rotate(180deg);
}

.services__item:nth-child(2) .service__more {
	background: linear-gradient(90deg, #00c7ff 0, #00f437 100%);
}

.services__item img {
	position: absolute;
	top: 50%;
	width: 300px;
	transform: translateY(-50%);
	filter: drop-shadow(0px 0 15px rgba(0, 0, 0, 0.15));
}

.services__item:nth-child(1) img {
	right: 60px;
}

.services__item:nth-child(2) img {
	left: 60px;
}

.services__item:nth-child(1) {
	padding-right: 470px;
}

.services__item:nth-child(2) {
	padding-left: 470px;
}

.marquee {
	overflow: hidden;
}

.textMarquee {
	width: 300vw;
	margin: 180px 0;
	text-transform: uppercase;
	display: flex;
	overflow: hidden;
	font-size: clamp(1rem, 8vw, 106px);
	color: #ccc;
	font-weight: 700;
	opacity: 0.5;
	pointer-events: none;
}

.textMarquee__group {
	display: flex;
	flex-shrink: 0;
	animation: marqueeScroll 20s linear infinite;
}

.textMarquee__item {
	flex-shrink: 0;
}

@keyframes marqueeScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.advantages {
	position: relative;
}

.adv__rocket {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 290px;
	z-index: 2;
}

.adv__descr {
	text-align: center;
	font-size: 24px;
	color: #787569;
	margin: -55px 0 70px;
	line-height: 1.2;
}

.adv__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	gap: 30px;
}

.adv__item-wrap {
	width: 100%;
	aspect-ratio: 1 / 1;
	perspective: 1000px;
	cursor: default;
	will-change: transform;
}

.adv__item-wrap * {
	will-change: transform;
}

.adv__item {
	background: linear-gradient(135deg, rgb(215 213 205), rgb(120 117 105 / 75%));
	transition: 0.5s ease-in-out;
	transform-style: preserve-3d;
	height: 100%;
	border-radius: 50px;
}

.adv__item-glass {
	transform-style: preserve-3d;
	position: absolute;
	inset: 15px;
	background: linear-gradient(rgb(255 255 255 / 30%), rgb(255 255 255 / 80%));
	border-radius: 45px;
	border-top-right-radius: 100%;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	padding: 0 30px 40px;
	display: grid;
	align-items: end;
	transition: 0.5s ease-in-out;
	transform: translate3d(0, 0, 25px);
}

.adv__item-icon {
	position: absolute;
	right: 0;
	top: 0;
	transform-style: preserve-3d;
	z-index: 3;
}

.adv__item-icon .circle {
	position: fixed;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgb(255 255 255 / 10%);
	top: 0;
	right: 0;
	box-shadow: -10px 10px 20px rgb(100 100 111 / 20%);
	transition: 0.5s ease-in-out;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	border: 1px solid rgb(255 255 255 / 30%);
}

.adv__item-icon .circle1 {
	width: 170px;
	transform: translate3d(0, 0, 26px);
	top: 8px;
	right: 8px;
	transition-delay: 0s;
}

.adv__item-icon .circle2 {
	width: 140px;
	transform: translate3d(0, 0, 40px);
	top: 10px;
	right: 10px;
	transition-delay: 0.1s;
}

.adv__item-icon .circle3 {
	width: 110px;
	transform: translate3d(0, 0, 60px);
	top: 17px;
	right: 17px;
	transition-delay: 0.2s;
}

.adv__item-icon .circle4 {
	width: 80px;
	transform: translate3d(0, 0, 80px);
	top: 23px;
	right: 23px;
	transition-delay: 0.3s;
}

.adv__item-icon .circle5 {
	width: 50px;
	transform: translate3d(0, 0, 100px);
	top: 30px;
	right: 30px;
	transition-delay: 0.4s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.adv__item-icon .circle5 svg {
	width: 30px;
	height: 30px;
	margin-top: -3px;
}

.adv__item-glass-content {
	transform-style: preserve-3d;
	transition: 0.5s ease-in-out;
}

.adv__item-glass h3 {
	font-size: 30px;
	line-height: 1;
	color: #646257;
}

.adv__item-glass p {
	margin-top: 10px;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 500;
	color: rgb(120 117 105 / 90%);
}

.adv__num {
	font-size: 90px;
	font-weight: 700;
	color: #fff;
	z-index: 2;
	position: absolute;
	top: 20px;
	left: 45px;
	opacity: 0.35;
	transform-style: preserve-3d;
	transform: translate3d(0, 0, 50px);
}

.approach {
	margin-top: 160px;
	padding-bottom: 160px;
}

.approach .container {
	position: relative;
}

.approach__icons > div {
	position: absolute;
	inset: 0;
	pointer-events: none;
	will-change: transform;
}

.approach__icon {
	position: absolute;
	transition: all 5s cubic-bezier(0.05, 0.5, 0, 1);
}

.approach__icon1 {
	width: 300px;
	top: calc(50% - 100px);
	left: -30px;
	opacity: 0.8;
}

.approach__icon2 {
	width: 200px;
	top: 20%;
	right: 30px;
}

.approach__icon3 {
	width: 200px;
	bottom: -150px;
	left: calc(60% - 100px);
}

.approach__form {
	background: #fff;
	padding: 30px;
	border-radius: 30px;
	max-width: 500px;
	margin: 0 auto;
	z-index: 1;
}

.footer {
	background: #021c3d;
	padding: 36.5px 0 30px;
}

.footer__grid {
	display: grid;
	grid-template-columns: 200px max-content;
	justify-content: space-between;
	align-items: center;
}

.footer .logo img {
	filter: grayscale(1) invert(1) brightness(2.5) contrast(0.5);
	width: 200px;
}

.footer__copyright {
	color: rgb(255 255 255 / 50%);
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.44px;
	margin-top: 10px;
}

.footer .contsct__us-r {
	display: grid;
	justify-content: end;
	gap: 12px;
	grid-template-columns: max-content;
	text-align: right;
}

.footer .phone__number {
	color: #f5f4f0;
	font-size: 16px;
	font-weight: 400;
}

.footer .social {
	justify-content: end;
}

.footer .social a img {
	opacity: 0.75;
}

.footer .btn {
	background: #364a64;
	font-size: 14px;
	padding: 13px 26px;
}

.footer__sitename {
	color: #0f2847;
	font-size: clamp(1rem, 15vw, 202px);
	font-weight: 500;
	line-height: 0.75;
	text-align: center;
	cursor: default;
	margin: 55px 0;
	transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
}

.develop__by {
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	color: rgb(255 255 255 / 50%);
	border-top: 1px solid rgb(255 255 255 / 15%);
	padding-top: 30px;
}

.develop__by a {
	color: #fff;
	border-bottom: 1px solid;
}

.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%;
}

.popup__wrap {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgb(0 0 0 / 50%);
	backdrop-filter: blur(5px);
	display: grid;
	align-items: center;
	width: 100%;
	height: 100vh;
	padding: 0 20px;
	overflow-y: auto;
	transition: all 0.3s ease;
}

.popup__wrap.active {
	visibility: visible;
	opacity: 1;
}

.popup {
	max-width: 800px;
	width: 100%;
	margin: 40px auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	opacity: 0;
	transform: scale(0.7);
	will-change: transform;
	transition: all 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.9);
}

.popup__wrap.active .popup {
	transform: scale(1);
	opacity: 1;
}

.form__image {
	position: relative;
	background: #f5f4f0;
	border-radius: 30px 0 0 30px;
	height: 100%;
	display: grid;
	align-items: center;
	justify-content: center;
}

.popup__close {
	width: 23px;
	height: 23px;
	background: 0;
	border: 0;
	position: absolute;
	top: 20px;
	left: 20px;
	cursor: pointer;
	opacity: 0.75;
	z-index: 2;
	transition: all 0.3s ease;
}

.popup__close svg {
	pointer-events: none;
}

.form__image img {
	width: 300px;
}

.popup__form {
	padding: 25px 30px 30px;
	background: #fff;
	border-radius: 0 30px 30px 0;
}

form {
    position: relative;
    overflow: hidden;
}

form h3 {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
	color: #021c3d;
}

form input,
form textarea {
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	border: 0;
	background: #f5f4f0;
	padding: 0 25px;
	font-size: 16px;
	margin-bottom: 15px;
}

form textarea {
	height: 150px;
	padding: 20px 25px;
	resize: none;
}

form input.invalid {
	outline: 2px solid #f0182e;
}

form input:focus,
form textarea:focus {
	outline: 2px solid #021c3d;
}

form .btn {
	display: block;
	width: 100%;
	height: 50px;
}

.form__success {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    background: #fff;
    padding: 30px;
    text-align: center;
}

.form__success svg {
    width: 100px;
    height: 100px;
    margin: -10px auto 0;
}

.form__success h3 {
    margin: 10px 0 5px;
}

.form__success p {
    font-size: 18px;
    max-width: 330px;
}

/* Media CSS */
@media (hover: hover) {
	.logo:hover img,
	.phone__number:hover,
	.service__more:hover {
		opacity: 0.75;
	}

	.social a:hover {
		transform: scale(1.15);
	}

	.btn:hover {
		background: #787569;
	}

	.btn:hover .btn-text1 {
		opacity: 0;
	}

	.btn:hover .btn-text2 {
		opacity: 1;
	}

	.btn:hover .btn-text1,
	.btn:hover .btn-text2 {
		transform: translateY(-33px);
	}

	.btn__hero:hover {
		background: linear-gradient(0deg, rgba(36, 36, 36, 0.05) 0, rgba(36, 36, 36, 0.05) 100%),
			linear-gradient(
				97deg,
				#ed3cca 0.49%,
				#df34d2 14.88%,
				#d02bd9 29.27%,
				#bf22e1 43.14%,
				#ae1ae8 57.02%,
				#9a10f0 70.89%,
				#8306f7 84.76%,
				#7c1af8 99.15%
			);
	}

	.btn__big:hover .btn-text1,
	.btn__big:hover .btn-text2 {
		transform: translateY(-38px);
	}

	.adv__item-wrap:hover .adv__item {
		transform: rotate3d(1, 1, 0, 30deg);
		box-shadow: 30px 50px 25px rgb(158 155 146 / 5%), 0px 25px 30px rgb(165 163 153 / 20%);
	}

	.adv__item-wrap:hover .adv__item .adv__item-icon .circle1 {
		transform: translate3d(0, 0, 50px);
	}

	.adv__item-wrap:hover .adv__item .adv__item-icon .circle2 {
		transform: translate3d(0, 0, 60px);
	}

	.adv__item-wrap:hover .adv__item .adv__item-icon .circle3 {
		transform: translate3d(0, 0, 80px);
	}

	.adv__item-wrap:hover .adv__item .adv__item-icon .circle4 {
		transform: translate3d(0, 0, 100px);
	}

	.adv__item-wrap:hover .adv__item .adv__item-icon .circle5 {
		transform: translate3d(0, 0, 120px);
	}

	.adv__item-wrap:hover .adv__item-glass-content {
		transform: translate3d(0, 0, 20px);
	}

	.footer__sitename:hover {
		color: transparent;
		-webkit-text-stroke: 3px #0f2847;
	}

	.popup__close:hover {
		opacity: 1;
	}
}

@media (max-width: 1300px) {
	h2.title {
		font-size: 50px;
	}

	h2.title span {
		font-size: 100px;
	}

	.whom__question {
		width: 350px;
		height: 280px;
	}

	.whom__question-circle {
		width: 400px;
		height: 330px;
	}

	.services__item:nth-child(1) {
		padding-right: 400px;
	}

	.services__item:nth-child(2) {
		padding-left: 400px;
	}

	.services__item:nth-child(1) img {
		right: 50px;
	}

	.services__item:nth-child(2) img {
		left: 50px;
	}

	.adv__grid {
		gap: 25px;
	}

	.adv__item-glass {
		padding: 0 28px 36px;
	}

	.adv__num {
		font-size: 80px;
	}

	.adv__item-glass h3 {
		font-size: 28px;
	}

	.adv__item-glass p {
		font-size: 18px;
	}

	.approach {
		padding-bottom: 120px;
	}

	.approach__icon3 {
		display: none;
	}
}

@media (max-width: 1180px) {
	.whom__question,
	.whom__question-circle {
		display: none;
	}

	.whom__grid {
		grid-template-columns: repeat(4, 1fr);
		margin-top: 0;
		gap: 30px;
	}

	.whom__item:nth-child(n) {
		text-align: center;
		transform: none;
		line-height: 1.4;
		padding: 30px;
	}

	.whom__next {
		margin-top: 30px;
	}

	.whom__next-item {
		padding: 30px 30px 30px 200px;
	}

	.adv__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.adv__item-wrap * {
		transform-style: initial;
	}

	.adv__item-wrap {
		aspect-ratio: initial;
		height: 320px;
	}

	.adv__item-wrap:nth-child(1) {
		grid-column: 1/3;
	}

	.adv__item-wrap:nth-child(2) {
		grid-column: 3/5;
	}

	.adv__item-wrap:nth-child(3) {
		grid-column: 2/4;
	}

	.adv__num {
		left: 38px;
	}
}

@media (max-width: 1120px) {
	h2.title {
		margin-bottom: 40px;
	}

	h2.title span {
		display: none;
	}

	.adv__descr {
		margin-top: -30px;
		margin-bottom: 40px;
	}
}

@media (max-width: 1080px) {
	.whom__next-item {
		padding: 200px 30px 30px 30px;
	}

	.whom__next-image {
		top: 10px;
		left: 10px;
		right: 10px;
		transform: none;
		height: 165px;
		width: initial;
		padding: 0;
	}

	.whom__next-image img {
		width: 120px;
		transform: rotate(30deg);
	}

	.approach__icons {
		display: none;
	}
}

@media (max-width: 900px) {
	.header__grid {
		grid-template-columns: 200px max-content;
	}

	.logo img {
		width: auto;
		height: 40px;
	}

	.contact__us {
		gap: 10px;
	}

	.header .phone__number {
		padding: 8px 18px;
		background: rgb(2 28 61 / 10%);
		border-radius: 10em;
		font-size: 16px;
		color: #021c3d;
	}

	.mobile__popup-btn {
		display: block;
		background: rgb(2 28 61 / 10%);
		border: 0;
		width: 40px;
		height: 40px;
		display: grid;
		align-items: center;
		justify-content: center;
		border-radius: 10em;
		padding-top: 2px;
		cursor: pointer;
		transition: all 0.3s ease;
		will-change: transform;
	}

	.mobile__popup-btn svg {
		pointer-events: none;
	}

	.mobile__popup-btn.active {
		transform: rotate(180deg);
	}

	.header__popup {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 60px;
		right: 0;
		background: #fff;
		padding: 38px;
		display: grid;
		box-shadow: 0 4px 24px rgb(0 0 0 / 7%);
		border-radius: 20px;
		gap: 20px;
		transform: translateY(20px);
		transition: all 0.3s ease;
		will-change: transform;
	}

	.header__popup.active {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.header__popup .social {
		justify-content: center;
	}

	.header__popup .btn {
		font-size: 14px;
		padding: 13px 26px;
	}

	.hero {
		padding-top: 105px;
	}

	.hero__content {
		border-radius: 30px;
		padding: 60px 30px 80px;
	}

	h1 span.slide__text {
		font-size: 76px;
	}

	h1 font {
		font-size: 40px;
		max-width: 500px;
	}

	h2.title {
		font-size: 44px;
		line-height: 1.1;
	}

	.whom,
	.services {
		margin-top: 85px;
	}

	.textMarquee {
		margin: 85px 0;
	}

	.approach {
		margin-top: 100px;
	}

	.whom__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.whom__next {
		gap: 20px;
	}

	.whom__next-item h3 {
		font-size: 24px;
	}

	.whom__next-item p {
		font-size: 16px;
	}

	.whom .btn {
		margin-top: 30px;
	}

	.services__grid {
		gap: 30px;
	}

	.services__item {
		padding: 40px 50px 50px;
		border-radius: 30px;
	}

	.services__item:nth-child(1) {
		padding-right: 260px;
	}

	.services__item:nth-child(2) {
		padding-left: 260px;
	}

	.services__item:nth-child(2) h3 {
		max-width: 300px;
	}

	.services__item img {
		width: 160px;
		transform: none;
		top: 40px;
	}

	.adv__item-icon {
		transform: scale(0.8) translate(-10px, 10px);
	}
}

@media (max-width: 730px) {
	.adv__grid {
		grid-template-columns: 1fr;
	}

	.adv__item-wrap:nth-child(n) {
		grid-column: initial;
	}
}

@media (max-width: 680px) {
	.popup {
		grid-template-columns: 1fr;
	}

	.form__image img {
		display: none;
	}

	.popup__form {
		border-radius: 20px;
	}

	.popup__close {
		width: 20px;
		height: 20px;
		top: 15px;
		left: 15px;
		opacity: 1;
	}

	.hero__content {
		padding: 75px 15px 95px;
	}

	h1 span.slide__text {
		font-size: 50px;
	}

	h1 font {
		font-size: 30px;
		max-width: 370px;
	}

	h2.title {
		font-size: 34px;
		margin-bottom: 25px;
	}

	.adv__descr {
		margin-top: -18px;
		margin-bottom: 35px;
		font-size: 20px;
	}

	.services__item-image {
		display: none;
	}

	.services__item:nth-child(n) {
		padding: 40px 50px 50px;
		text-align: center;
	}

	.services__item ul {
		text-align: left;
	}

	.service__more {
		margin: 20px auto 0;
	}

	.services__item:nth-child(2) h3 {
		max-width: initial;
	}
}

@media (max-width: 570px) {
	.whom__next {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 500px) {
	.header .phone__number {
		padding: 0;
		background: 0;
		width: 40px;
		height: 40px;
		display: grid;
		align-items: center;
		justify-content: center;
	}

	.header .phone__number span {
		display: none;
	}

	.header .phone__number svg {
		display: block;
	}

	.hero__content {
		padding: 80px 15px 90px;
	}

	h1 {
		line-height: 1.3;
	}

	h1 span.slide__text {
		font-size: 40px;
	}

	h1 font {
		font-size: 24px;
		max-width: 300px;
	}

	.btn__big {
		font-size: 16px;
		padding: 20px 40px;
	}

	.adv__item-glass {
		inset: 10px;
		border-radius: 50px;
		border-top-right-radius: 100%;
	}

	.adv__num {
		left: 35px;
	}

	.services__item:nth-child(n) {
		padding: 30px 40px 40px;
	}

	.services__item h3 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.services__item p {
		font-size: 18px;
	}

	.whom__item:nth-child(n) {
		padding: 30px 15px;
	}

	form h3 {
		font-size: 21px;
	}

	.footer__grid {
		gap: 20px;
		grid-template-columns: max-content;
		justify-content: center;
		text-align: center;
	}

	.contact__us {
		justify-content: center;
	}

	.footer .social {
		justify-content: center;
	}

	.footer__sitename {
		margin: 35px 0;
		font-size: clamp(1rem, 14vw, 60px);
	}

	.textMarquee {
		margin: 60px 0;
	}

	.approach {
		padding-bottom: 100px;
	}
}

@media (max-width: 450px) {
	.whom__grid {
		grid-template-columns: 1fr;
	}

	.whom__item:nth-child(n) {
		padding: 30px;
	}

	.adv__item-glass h3 {
		font-size: 25px;
	}

	.adv__item-glass p {
		font-size: 16px;
	}

	.services__item:nth-child(n) {
		padding: 30px 15px 40px;
	}

	.services__item ul {
		padding: 15px;
		padding-left: 10px;
	}

	.services__item ul li {
		padding-left: 10px;
	}

	.adv__item-wrap {
		aspect-ratio: 1 / 1;
		height: auto;
	}
}
