/*Main CSS*/
input,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.case {
	position: relative;
	margin: 180px 0 120px;
	z-index: 2;
}

.case__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

h2.title {
	text-align: center;
	font-size: 44px;
	color: #bccce3;
	margin: 0;
}

.sect__descr {
	text-align: center;
	margin-bottom: 55px;
	color: #6b8bc7;
	font-weight: 300;
	letter-spacing: 0.5px;
	font-size: 18px;
}

.case__grid .case__item {
	position: relative;
	background: linear-gradient(15deg, #071326, #17202e);
	text-align: center;
	border-radius: 23px;
	transform-style: preserve-3d;
	padding: 30px 20px 20px;
	cursor: pointer;
	transition: box-shadow 0.4s ease;
}

.case__grid .case__item:hover {
	box-shadow: 0 0 10px rgb(147 188 255 / 20%);
}

.case__grid .case__item:before,
.case__grid .case__item:after {
	position: absolute;
	width: 100%;
	text-align: center;
	font-weight: 800;
	color: #fff;
	left: 0;
	opacity: 0;
	transition: 0.5s;
	font-size: 70px;
	line-height: 1;
}

.case__grid .case__item:before {
	content: 'our';
	bottom: 105px;
}

.case__grid .case__item:after {
	content: 'cases';
	bottom: 40px;
}

.case__grid .case__item:hover:before,
.case__grid .case__item:hover:after {
	opacity: 0.05;
}

.case__grid .case__item span {
	position: absolute;
	text-align: center;
	width: 100%;
	top: 30px;
	left: 0;
	color: #bccce3;
	font-size: 28px;
	font-weight: 300;
	letter-spacing: 1px;
	display: block;
	transition: 0.5s;
	opacity: 0.4;
}

.case__grid .case__item:hover span {
	opacity: 0;
}

.case__grid .case__item h3 {
	background: linear-gradient(90deg, #006df4, #00c8dd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: #006df4;
	margin: 0 0 20px;
	font-size: 20px;
	line-height: 1.3;
	transform-style: preserve-3d;
	transition: 0.5s;
}

.case__grid .case__item:hover h3 {
	transform: translate3d(0, -10px, 65px);
}

.case__grid .case__item img {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	margin: 65px auto 30px;
	display: block;
	transform-style: preserve-3d;
	transition: 0.4s;
	opacity: 0.7;
}

.case__grid .case__item:hover img {
	transform: translate3d(0, -110px, 100px);
	opacity: 1;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(47, 55, 67, 0.6);
}

.case__grid .case__item .name {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 130px;
	left: 0;
	transform-style: preserve-3d;
	transition: 0.4s;
	color: #fff;
	opacity: 0;
	height: 0;
	letter-spacing: 1px;
	font-weight: 300;
	font-size: 20px;
	padding: 0 15px;
}

.case__grid .case__item:hover .name {
	transform: translate3d(0, 0, 70px);
	top: 230px;
	opacity: 1;
}

.case__item p,
.case__item i {
	display: none;
}

.service__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.service__item {
	position: relative;
	background: linear-gradient(-45deg, #668bdd, #f9bfda);
	width: 100%;
	padding: 30px 45px 40px;
	overflow: hidden;
	border-radius: 32px;
	z-index: 1;
}

.service__item-title {
	font-size: 30px;
	font-weight: 700;
	border-bottom: 2px solid rgb(0 0 0 / 20%);
	padding-bottom: 18px;
	margin-bottom: 18px;
	line-height: 1.3;
}

.service__item-info {
	height: 100%;
}

.service__item .hide {
	font-size: 22px;
	font-weight: 500;
}

.service__num {
	position: absolute;
	right: 30px;
	bottom: 10px;
	font-size: 150px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	opacity: 0.1;
	transition: all 0.5s ease;
	z-index: -1;
}

section {
	margin: 90px 0;
}

section.header__section {
	padding: 0;
}

.stc img {
	background: #fff;
	padding: 20px;
	border-radius: 23px;
}

.cont__drid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
}

.contacts__info h3 {
	font-size: 30px;
	color: #fff;
	margin-top: 0;
}

.contacts__info p {
	font-size: 23px;
	color: #fff;
	margin: 0 0 13px;
}

.contacts__info a {
	background: linear-gradient(90deg, #006df4, #00c8dd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.contacts__form form {
	position: relative;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 30px 30px 40px;
	border-radius: 23px;
	color: #fff;
}

.contacts__form h3 {
	margin-top: 0;
	text-align: center;
}

.contacts__form label {
	display: block;
	font-size: 17px;
}

.contacts__form input {
	display: block;
	width: 100%;
	padding: 14px 22px;
	background-color: #eee;
	border-radius: 10px;
	border: none;
	font-size: 17px;
	font-weight: 500;
	margin: 3px 0 20px;
}

.send__succes {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
}

.send__succes svg {
	width: 80px;
	fill: #29ab40;
}

.send__succes h3 {
	font-size: 26px;
	margin: 10px 0;
}

.send__succes p {
	margin: 0;
	font-size: 18px;
}

.contacts__map {
	position: relative;
	height: 500px;
	border-radius: 23px;
	overflow: hidden;
	margin-top: 40px;
}

.cm__wrap {
	height: 100%;
	position: relative;
	border-radius: 23px;
	overflow: hidden;
	z-index: 2;
}

.contacts__map span {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	color: #fff;
}

.footer {
	padding: 30px 0;
	color: #fff;
	text-align: center;
	background-color: rgb(0 0 0 / 20%);
	margin-top: 30px;
}

.footer__grid {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	justify-content: space-between;
	opacity: 0.7;
}

.footer__logo {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.45px;
}

a.made {
	text-decoration: none;
	color: #fff;
	transition: all 0.4s ease;
	font-weight: 700;
}

a.made:hover {
	color: #1e82ff;
	filter: brightness(1.2);
}

a.made svg {
	width: 16px;
	vertical-align: middle;
	margin: 0 3px;
	animation: introwert 1.4s ease infinite;
}

@keyframes introwert {
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
	}
}

.store .top__line .container {
	grid-template-columns: max-content 1fr max-content;
}

.store .store__label {
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 1px;
}

.store__section {
	margin: 50px 0 150px;
}

.store__section h1 {
	color: #f7c90e;
	font-size: 40px;
	text-align: center;
	margin-bottom: 40px;
}

.store__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: -15px;
}

.store__item {
	margin: 15px;
	flex-basis: calc(33.333333% - 30px);
	background: rgb(255 255 255 / 20%);
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
}

.store__item:hover img {
	display: none;
}

.store__item:hover .cover__second {
	display: block;
}

.item__cover {
	background: #fff;
	padding: 10px 0;
}

.item__cover img {
	display: block;
	max-width: 180px;
	margin: 0 auto;
	aspect-ratio: 180/234;
	object-fit: contain;
}

.store__item .cover__second {
	display: none;
}

.item__info {
	color: #fff;
	padding: 15px;
	letter-spacing: 0.7px;
}

.store__item-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
}

.store__item .price b {
	font-size: 22px;
}

.store__item:hover .price {
	color: #f7c90e;
}

.form__popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 50%);
	z-index: 99;
	padding: 0 15px;
	visibility: hidden;
	overflow: auto;
}

.form__popup.active {
	visibility: visible;
}

.popup {
	position: relative;
	max-width: 500px;
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	margin: 40px auto;
}

.popup .close__popup {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.popup .close__popup svg {
	pointer-events: none;
	width: 20px;
	height: 20px;
}

.popup .close__popup:hover {
	opacity: 1;
}

.popup h2 {
	margin: -7px 0 30px;
}

.popup h2 span {
	display: block;
	font-size: 20px;
	line-height: 1.3;
	opacity: 0.7;
}

.form__offer-img {
	max-width: 160px;
	display: block;
	margin: 0 auto 30px;
}

.popup form label {
	display: block;
	font-size: 17px;
}

.popup form input {
	display: block;
	width: 100%;
	padding: 14px 22px;
	background-color: #eee;
	border-radius: 10px;
	border: none;
	font-size: 17px;
	font-weight: 500;
	margin: 3px 0 20px;
}

.form__popup .form__price {
	text-align: center;
	font-size: 18px;
	margin: 25px 0 10px;
}

.kiberone__section {
	margin: 120px 0 0;
}

.kb__box {
	background: rgb(64 70 80 / 40%);
	padding: 60px 50px 70px;
	border-radius: 32px;
	border: 1px solid rgb(255 255 255 / 15%);
}

.kiberone__section h2.title {
	color: #f7c90e;
	line-height: 1.15;
}

.kiberone__section p {
	text-align: center;
	font-size: 20px;
	color: #fff;
}

.kiberone__section .btn {
	background: linear-gradient(90deg, #f7c90e, #fbe278);
	box-shadow: 0 0 10px #f7cb17;
	color: #000;
}

.top__info {
	background: rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: saturate(200%) blur(20px);
	backdrop-filter: saturate(200%) blur(20px);
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	color: #fff;
	padding: 5px 0;
}

.top__info .container {
	display: flex;
	justify-content: space-between;
	opacity: 0.7;
}

.footer__info {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	opacity: 0.7;
	border-top: 1px solid rgb(255 255 255 / 20%);
	padding-top: 23px;
	text-align: left;
}

.footer__info .footer__contacts {
	text-align: right;
}

.top__info b,
.footer__info b {
	font-weight: 600;
}

/* Media CSS */
@media (max-width: 1110px) {
	section {
		margin: 50px 0;
	}

	.container {
		max-width: 900px;
	}

	.menu a {
		margin: 0 10px;
	}

	.header__intro--info {
		margin-top: 180px;
		max-width: 605px;
	}

	h1 {
		font-size: 46px;
	}

	.intro__face {
		width: 490px;
	}

	.service__item {
		border-radius: 26px;
	}

	.service__item-title {
		font-size: 28px;
		line-height: 1.1;
	}

	.service__num {
		bottom: 15px;
		right: 30px;
	}

	.case {
		margin: 120px 0 90px;
	}

	.stc {
		margin-bottom: 75px;
	}

	.case__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 60px 30px;
		margin-top: 80px;
	}

	.case__grid .case__item {
		flex: 0 0 calc(48% - 30px);
		transform: none !important;
		will-change: initial !important;
	}

	.case__grid .case__item:hover img {
		transform: none;
		opacity: 1;
		border-radius: 18px;
	}

	.case__grid .case__item .name {
		position: relative;
		opacity: 1;
		top: 185px;
		padding: 0 20px;
	}

	.case__grid .case__item h3 {
		transform: translate3d(0, -10px, 0);
	}

	.case__grid .case__item:before,
	.case__grid .case__item:after {
		display: none;
	}

	.case__grid .case__item:hover {
		box-shadow: none;
	}

	.contacts__info a {
		display: table;
		margin-bottom: 20px;
	}

	.case__grid .case__item {
		display: grid;
	}

	.case__grid .case__item img {
		order: 1;
		margin: -60px auto 25px;
		opacity: 1;
		border-radius: 18px;
		box-shadow: 0 0 20px rgb(47 55 67 / 60%);
		transform: none;
	}

	.case__grid .case__item .name {
		order: 2;
		top: 0;
		height: auto;
	}

	.case__grid .case__item h3 {
		transform: none;
		order: 3;
		margin: 15px 0 18px;
	}

	.case__grid .case__item:hover .name {
		transform: none;
		top: 0;
	}

	.case__grid .case__item:hover h3 {
		transform: none;
	}

	.case__grid .case__item span {
		display: none;
	}

	.store__grid {
		margin: -10px;
	}

	.store__item {
		margin: 10px;
		flex-basis: calc(33.333333% - 20px);
	}

	.kiberone__section {
		margin-top: 90px;
	}

	.kb__box {
		border-radius: 26px;
	}
}

.humburger {
	display: none;
}

.mobile__menu {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: -110%;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	z-index: 1000;

	background: rgba(0, 0, 0, 0.55);
	-webkit-backdrop-filter: saturate(200%) blur(20px);
	backdrop-filter: saturate(200%) blur(20px);
	padding: 90px 20px 0;
	text-align: center;
	display: grid;
	align-items: center;
}

@media (max-width: 900px) {
	.menu {
		display: none;
	}

	.phone__number {
		justify-self: end;
	}

	.humburger {
		display: grid;
	}

	.humburger span {
		width: 32px;
		height: 3px;
		background-color: #fff;
		margin-bottom: 5px;
		border-radius: 3px;
		transition: all 0.3s ease;
	}

	.humburger span:nth-child(2) {
		width: 26px;
		justify-self: end;
	}

	.humburger span:nth-child(3) {
		margin-bottom: 0;
		width: 19px;
		justify-self: end;
	}

	.humburger.active span:nth-child(1) {
		transform: translate(0px, 7px) rotate(-45deg);
	}

	.humburger.active span:nth-child(2) {
		opacity: 0;
		transform: translateX(30px);
	}

	.humburger.active span:nth-child(3) {
		width: 32px;
		transform: translate(0px, -9px) rotate(45deg);
	}

	.mobile__menu.active {
		visibility: visible;
		opacity: 1;
		top: 0;
		overflow: auto;
		padding-bottom: 30px;
	}

	.mobile__menu a {
		display: table;
		margin: 12px auto;
		color: #fff;
		font-size: 21px;
		letter-spacing: 1px;
	}

	.mobile__menu a.phone__number--mobile {
		display: none;
	}

	.case__grid .case__item .name {
		padding: 0 15px;
	}

	.case__grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 75px;
	}

	.case__grid .case__item {
		max-width: 374px;
		margin: auto;
	}

	.contacts__info a {
		font-size: 20px;
	}

	.case__grid .case__item span {
		display: none;
	}

	.store__label {
		display: none;
	}

	.store__item {
		flex-basis: calc(50% - 20px);
	}
}

@media (max-width: 768px) {
	.header {
		padding-bottom: 60px;
	}
	.service__grid {
		grid-template-columns: 1fr;
	}
	.service__item {
		max-width: 374px;
		margin: auto;
		padding: 22px 30px 25px;
	}

	.service__item .hide {
		font-size: 20px;
	}

	.service__num {
		opacity: 0.08;
	}

	.case {
		margin: 100px 0;
	}

	.intro__face {
		width: 400px;
		top: -40%;
	}

	.header__intro--info {
		margin-top: 180px;
	}

	.cont__drid {
		grid-template-columns: 1fr;
	}

	.contacts__info h3 {
		display: none;
	}

	.contacts__map {
		height: 300px;
	}

	h1 {
		font-size: 40px;
	}

	.header__intro--info {
		max-width: 525px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.intro__face {
		display: none;
	}

	.header__intro span {
		margin-bottom: 0;
	}

	.mouse-icon {
		margin-top: 50px;
	}

	.contacts__map {
		margin-top: 20px;
	}

	.top__info .container,
	.footer__info {
		flex-direction: column;
		text-align: center;
	}

	.top__line {
		padding-top: 78px;
	}

	.footer__info .footer__contacts {
		text-align: center;
		margin-top: 15px;
	}
}

@media (max-width: 620px) {
	.top__line .container {
		grid-template-columns: auto 32px;
	}
	.phone__number {
		display: none;
	}

	.mobile__menu a.phone__number--mobile {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		font-weight: 900;
		background: linear-gradient(90deg, #006df4, #00c8dd);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.mobile__menu a.phone__number--mobile svg {
		fill: #0080ef;
		width: 30px;
	}

	.store .top__line .container {
		grid-template-columns: max-content;
		justify-content: center;
	}

	.store__section h1 {
		font-size: 32px;
	}

	.kiberone__section h2.title {
		font-size: 32px;
	}

	.kb__box {
		padding: 40px 25px 50px;
	}
}

@media (max-width: 576px) {
	.logo {
		font-size: 23px;
	}
	.footer__grid {
		grid-template-columns: auto;
		justify-content: center;
		gap: 5px;
	}
	.service__grid {
		gap: 20px;
	}

	.store__item {
		flex-basis: 100%;
		max-width: 300px;
	}

	.kiberone__section h2.title {
		font-size: 25px;
		line-height: 1.3;
	}

	.kb__box {
		padding: 40px 15px 50px;
	}

	.kiberone__section p {
		font-size: 18px;
	}
}

.ct__br {
	display: none;
}

@media (max-width: 410px) {
	h1 {
		font-size: 32px;
	}

	h2.title {
		font-size: 36px;
	}

	.service__item {
		border-radius: 18px;
		padding: 20px;
	}

	.service__item-title {
		font-size: 23px;
		line-height: 1.2;
	}

	.contacts__form form {
		padding: 30px 20px 40px;
	}

	.contacts__form h3,
	.btn {
		font-size: 18px;
	}

	.case__grid .case__item img {
		width: 160px;
		height: 160px;
	}

	.case__grid .case__item .name {
		padding: 0;
		font-size: 18px;
	}

	.ct__br {
		display: block;
	}

	.kb__box {
		border-radius: 18px;
	}

	.top__info,
	.footer__info {
		font-size: 13px;
	}
}
