* {
	margin: 0;
	padding: 0;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body::-webkit-scrollbar {
	background-color: black;
	width: 12px;
}

body::-webkit-scrollbar-thumb {
	background-color: rgb(2, 171, 2);
	border-radius: 10px;
}

.requst-btn {
	font-size: 20px;
	border-radius: 30px;
	border: none;
	/* background: #1eff00; */
	background-image: linear-gradient(135deg, rgb(2, 171, 2), rgb(148, 249, 90));
	display: block;
	padding: 15px 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	color: black !important;
}

.requst-btn:hover {
	transform: scale(1.1);
}

body {
	background-color: black;
}

.container {
	max-width: 1300px;
	padding: 0 10px;
	margin: 0 auto;
}

.row {
	display: flex;
}

/* Background Animation */

.background__lines-wrapper {
	height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: -1;
}
.mobile-lines {
	display: none;
}

.desktop-lines .background__lines-row {
	display: grid;
	gap: 15px;
	grid-template-rows: repeat(8, 1fr);
}

.desktop-lines .background__lines-column {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(16, 1fr);
}

.mobile-lines .background__lines-row {
	display: grid;
	gap: 15px;
	grid-template-rows: repeat(15, 1fr);
}

.mobile-lines .background__lines-column {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(8, 1fr);
}

.background__lines-row .background__line {
	opacity: 0.15;
	height: 1px;
	width: 100%;
}

.background__lines-column .background__line {
	opacity: 0.3;
	width: 1px;
	height: 100%;
}

.background__line-full-column {
	background-image: linear-gradient(to top, black 0%, white 30%, black 90%);
	background-size: 100% 500%;
	background-position: 50% 50%;
	animation: moveDown 9s linear infinite;
}

.background__line-50-column {
	background-image: linear-gradient(to top, black 10%, white 50%, black 90%);
	background-size: 100% 500%;
	background-position: 50% 50%;
	animation: moveDown 6s linear infinite;
}

.background__line-75-column {
	background-image: linear-gradient(to top, black 0%, white 50%, black 100%);
	background-size: 100% 500%;
	background-position: 50% 50%;
	animation: moveDown 4s linear infinite;
}

.background__line-full-row {
	background-image: linear-gradient(to right, black 0%, white 30%, black 90%);
	background-size: 100% 100%;
	background-position: 50% 50%;
	animation: moveRight 9s linear infinite;
}

.background__line-50-row {
	background-image: linear-gradient(to right, black 10%, white 50%, black 90%);
	background-size: 100% 100%;
	background-position: 50% 50%;
	animation: moveRight 6s linear infinite;
}

.background__line-75-row {
	background-image: linear-gradient(to right, black 0%, white 50%, black 100%);
	background-size: 100% 100%;
	background-position: 50% 50%;
	animation: moveRight 4s linear infinite;
}

@keyframes moveDown {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 0% 100%;
	}
}

@keyframes moveRight {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 100% 0%;
	}
}

@media all and (max-width: 768px) {
	.desktop-lines {
		display: none;
	}
	.mobile-lines {
		display: block;
	}
}

/* Header */

header {
	padding: 10px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	transition: background-image 0.3s ease;
}

header .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

header a {
	text-decoration: none;
	font-size: 20px;
	color: white;
	font-weight: 500;
}

.header__burger {
	display: none;
}

.header-transparent {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, black);
}
.header__social {
	gap: 15px !important;
}

.header__social a {
	height: 32px;
}
.header__social img {
	width: 32px;
	height: 32px;
}

.header__content nav {
	margin-left: auto;
}
.header-solid {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.863) 20%, black 90%);
}

.header__content {
	position: relative;
	z-index: 10;
}

.header__logo .row {
	gap: 10px;
	align-items: center;
}

.header__logo .header__logo-btn {
	height: 34px;
	width: 34px;
	animation: logo-click 3s infinite ease-in;
}

@keyframes logo-click {
	0% {
		transform: scale(1);
	}
	3% {
		transform: scale(0.4);
	}
	12% {
		transform: scale(1.3);
	}
	20% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
	}
}

.header__logo .header__logo-txt {
	margin-top: 5px;
}

.header__logo figure {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	width: 52px;
	border: 4px solid white;
	border-radius: 50%;
}

header .type-btn {
	padding: 8px 20px;
	border-radius: 20px;
	background: none;
	color: white;
	cursor: pointer;
	border: 2px solid rgba(0, 202, 0, 1);
	font-size: 18px;
	transition: all 0.3s;
}

header button:hover {
	color: black;
	background: linear-gradient(135deg, rgb(2, 171, 2), rgb(148, 249, 90));
}

/* Footer */

footer {
	background: rgba(255, 0, 0, 0);
	color: white;
}

/* Modal */

.modal form p {
	text-align: center;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	opacity: 0;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.863) 20%, black 90%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 5px;
	padding-bottom: 100px;
	transition: all 0.3s;
}
.modal.active {
	z-index: 100;
	opacity: 1;
}
.modal h3 {
	max-width: 400px;
	margin-bottom: 10px;
}
.modal .requst-btn {
	border: none;
}
.modal .requst-btn:hover {
	transform: scale(1);
}
.modal__window-close {
	position: absolute;
	right: 15px;
	top: 10px;
	border: none;
	background: none;
	cursor: pointer;
	border-radius: 50%;
	font-size: 24px;
}
.modal form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.modal input {
	height: 40px;
	font-size: 18px;
	padding: 0 10px;
	border-radius: 20px;
}
.modal__window {
	position: relative;
	max-width: 800px;
	padding: 30px;
	border-radius: 25px;
	background: white;
	transform: scale(0.1);
	transition: all 0.3s;
}
.modal.active .modal__window {
	transform: scale(1);
}
.modal__window-close {
}

/* Media */

@media all and (max-width: 768px) {
	.header__social {
		margin-left: auto;
	}
	header .row {
		gap: 15px;
	}
	.header__burger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 30px;
		width: 45px;
	}

	.header__burger figure {
		transition: all 0.3s ease;
		width: 100%;
		border-radius: 5px;
		height: 4px;
		background: white;
	}

	.header__burger.active figure:nth-child(1) {
		transform: rotate(45deg) translate(8px, 10px);
	}
	.header__burger.active figure:nth-child(2) {
		width: 0;
		transform: translate(20px);
	}
	.header__burger.active figure:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -10px);
	}

	.header__content nav {
		position: absolute;
		top: 0;
		left: -150%;
		background-image: linear-gradient(to top, rgba(0, 0, 0, 0.863) 20%, black 90%);
		width: 80%;
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		gap: 60px;
		z-index: 2;
		transition: all 0.3s;
	}

	header a {
		font-size: 24px;
		font-weight: 600;
	}

	.header__content nav.active {
		left: 0;
	}
}

footer {
	background: rgba(0, 0, 0, 0.7);
	padding: 60px 0;
}

.footer__left {
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.footer__link {
	color: white;
	text-decoration: none;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.footer__link img {
	width: 18px;
	height: auto;
}

.footer__social img {
	height: 42px;
	width: 42px;
}

.footer__social {
	gap: 15px;
	margin-top: 10px;
}

.footer__logo {
	margin-bottom: 10px;
}

.footer__wrapper {
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
}

.footer__wrapper iframe {
	height: 360px;
	width: 600px;
	flex-shrink: 0;
}

@media all and (max-width: 768px) {
	.footer__wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
	}
	.footer__wrapper iframe {
		height: 320px;
		width: 100%;
		flex-shrink: 0;
	}
	footer {
		background: rgba(0, 0, 0, 0.7);
		padding: 40px 0 60px 0;
	}
}
