@charset "UTF-8";
/* @import "fonts";
@import "null"; */
html {
	box-sizing: border-box;
	width: 100vw;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
	font-size-adjust: 0.5;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
}

body {
	width: 100vw;
}

::-webkit-scrollbar {
	width: 0;
}

/* свойство чтобы убрать стрелочки на input c type="number" со всех браузеров */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: textfield;
}

.wrapper {
	background: #000;
}

.wrapper {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	justify-content: space-between;
	padding: 0 40px;
}

.header {
	position: relative;
	width: 100%;
	max-width: 1600px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
		"Helvetica Neue", sans-serif;
	font-weight: 400;
	z-index: 1;
}

.header-cnt {
	padding-top: 30px;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}
.header-up-block {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.logo {
	aspect-ratio: 1/1;
}

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

.header-list-block {
	margin-bottom: 5px;
}
.header-list-block-right {
	font-family: Roboto;
	font-weight: 400;
	text-transform: lowercase;
	position: relative;
	padding-left: 50px;
}
.header-list-block-right::before {
	content: "";
	background: orange;
	border-radius: 50%;
	position: absolute;
}
h1 {
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}

.header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	font-family: Roboto;
	padding: 0 4px;
	cursor: pointer;
}

.header-right-title {
	position: relative;
	padding: 0 10px;
	border-radius: 15px;
	background-color: #000;
	z-index: 2;
}
.header-right-title::before {
	content: "";
	background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
	position: absolute;
	top: -2px;
	left: -2px;
	background-size: 400%;
	z-index: -2;
	filter: blur(5px);
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	animation: glowing 50s linear infinite;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
	border-radius: 15px;
}
.header-right-title::after {
	z-index: -1;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	left: 0;
	top: 0;
	border-radius: 10px;
}
@keyframes glowing {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 400% 0;
	}
	100% {
		background-position: 0 0;
	}
}
.header-right-title:hover::after {
	background: rgba(255, 255, 255, 0.7);
}
.header-right-title:hover h2 {
	color: #000;
}
.header-right-menu-wrapper {
	height: 600px;
	height: 0;
	position: absolute;
	top: 50px;
	right: 0;
	width: auto;
	overflow: hidden;
	transition: height 0.3s ease 0s;
}
.header-right-menu-logo {
	display: none;
}
.header-right-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 0px 20px 20px 20px;
	top: -550px;
	background: #000;
	transition: top 0.3s ease 0s;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

h2 {
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
	text-align: center;
	font-weight: 600;
	font-size: 40px;
	text-transform: uppercase;
}
.header-contact {
	width: 100%;
	border-radius: 15px;
	margin-top: 15px;
}
.header-contact a {
	border-radius: 15px;
	box-shadow: 0 0 10px 3px #18b5a4;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	cursor: pointer;
}
.header-contact a:hover {
	box-shadow: 0 0 10px 7px #18b5a4;
}
.header-qr {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
}
.header-qr p {
	text-align: center;
	margin-bottom: 20px;
}

.header-right.active .header-right-menu-wrapper {
	height: 550px;
}
.header-right.active .header-right-menu {
	top: 0;
	transition: top 0.3s ease 0s;
}
.content {
	width: 100%;
}
.content-cnt {
	width: 100%;
}
.content-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	flex-wrap: wrap;
	max-width: 1500px;
	flex: 0 0 auto;
	margin: 0 auto;
	padding: 0 60px;
}
.content-link {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1100 / 700;
}
.content-a {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	transition: 0.5s ease 0s;
	border-radius: 15px;
	overflow: hidden;
}
.content-image {
	transition: 1s ease 0s;
}
.content-link:hover .content-a {
	width: 120%;
	height: 120%;
}
.empty {
	display: block;
}
.footer {
	position: relative;
	z-index: 1;
	max-width: 1600px;
	width: 100%;
	background-color: rgba(10, 37, 38, 0.55);
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	backdrop-filter: blur(31.2px);
}

.footer-cnt {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-text {
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serifs;
	width: auto;
	text-transform: uppercase;
}

.footer-right {
	width: 100%;
}

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.social-block a {
	aspect-ratio: 1 / 1;
	transition: all 0.7s ease 0s;
}
.social-block:hover a {
	transform: scale(200%, 200%) rotate(-360deg);
}
.social-block a img {
	width: 100%;
	height: 100%;
}
/* * ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* * //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 769px) {
	.logo {
		width: 300px;
		height: 300px;
	}
	.header-up-center {
		padding: 0 30px;
	}
	.header-list-block-right {
		font-size: 30px;
	}
	h1 {
		font-size: 40px;
	}
	.header-list-block-right::before {
		width: 10px;
		height: 10px;
		margin-left: -50px;
		top: 16px;
	}

	.header-right {
		font-size: 30px;
		flex: 0 0 100px;
		position: relative;
	}

	.burger {
		display: none;
	}

	.header-burger-menu-wrapper {
		display: none;
	}

	.content {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.content-flex {
		gap: 50px;
	}
	.content-link {
		flex: 1 1 25.33%;
	}
	.footer {
		height: 113px;
		padding: 0 50px;
		max-width: 1000px;
	}
	.footer-text {
		font-size: 40px;
		letter-spacing: -4%;
	}
	.footer-right {
		max-width: 350px;
	}
	.social-block a {
		display: block;
		width: 47px;
	}
}
/* * //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* @media (max-width: 1600px) and (min-width: 769px) { */
@media (max-width: 1600px) {
	.header-list-block-right {
		font-size: 25px;
	}
	h1,
	h2 {
		font-size: 30px;
	}
	.header-right {
		font-size: 25px;
	}
	.header-contact a {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.header-qr {
		margin-top: 0;
		padding-bottom: 0;
	}
	.header-qr p {
		margin-bottom: 5px;
	}
	.header-qr img {
		width: 100px;
		height: 100px;
	}
	.header-right.active .header-right-menu-wrapper {
		height: 400px;
	}
}
@media (max-width: 1600px) and (min-width: 769px) and (max-height: 870px) {
}
/* * ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 1367px) {
	.logo {
		width: 200px;
		height: 200px;
	}
	h1,
	h2 {
		font-size: 25px;
	}
	.header-list-block-right {
		font-size: 20px;
	}

	.header-list-block-right::before {
		margin-left: -30px;
		width: 7px;
		height: 7px;
		top: 10px;
	}
	.header-right {
		font-size: 20px;
	}
	.header-right.active .header-right-menu-wrapper {
		height: 360px;
	}
	.social-block:hover a {
		transform: scale(150%, 150%) rotate(-360deg);
	}
	.footer {
		height: 80px;
	}
	.footer-text {
		font-size: 25px;
	}
}
@media (max-width: 1367px) and (max-height: 600px) and (min-width: 769px) {
	.header-cnt {
		padding-top: 25px;
	}

	.content {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.content-flex {
		gap: 30px;
	}
}
/* * ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 1100px) {
	.header-right {
		flex: 0 0 35px;
	}
	.header-right-title {
		display: none;
	}
	.header-right-menu-wrapper {
		top: 35px;
	}
	.burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 35px;
		height: 25px;
		cursor: pointer;
	}
	.burger span {
		width: 100%;
		height: 4px;
		background-color: #fff;
		background-color: #000;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.header-right.burger-on .burger span:first-child {
		transform: translateY(10px) rotate(45deg);
	}
	.header-right.burger-on .burger span:nth-child(2) {
		display: none;
	}
	.header-right.burger-on .burger span:last-child {
		transform: translateY(-10px) rotate(-45deg);
	}
	.header-right.burger-on .header-right-menu-wrapper {
		height: 360px;
	}
	.header-right.burger-on .header-right-menu {
		top: 0;
		transition: top 0.3s ease 0s;
	}

	.burger::before {
		content: "";
		background: linear-gradient(45deg, #ff7300, #fffb00, #48ff00, #00ffd5, #ff7300);
		position: absolute;
		top: -4px;
		left: -2px;
		background-size: 400%;
		z-index: -2;
		filter: blur(5px);
		width: calc(100% + 4px);
		height: calc(28px + 4px);
		animation: glowing 30s linear infinite;
		opacity: 1;
		transition: opacity 0.3s ease-in-out;
	}

	.footer {
		padding: 0 calc(50px + 65 * (100vw - 768px) / 512);
	}
	.footer-left {
		margin-right: 50px;
	}
	.footer-text {
		font-size: calc(25px + 7 * (100vw - 768px) / 512);
	}
	.footer-right {
		max-width: calc(300px + 100 * (100vw - 768px) / 512);
	}
	.social-block a {
		display: block;
		width: calc(37px + 10 * (100vw - 768px) / 512);
	}
	.social-block a img {
		width: 100%;
	}
}
@media (max-width: 1100px) and (min-width: 769px) and (max-height: 445px) {
	.wrapper {
		padding: 0 20px;
	}
	.logo {
		width: 150px;
		height: 150px;
	}
	.header-up-center {
		padding: 0 15px;
	}
	h1 {
		font-size: 20px;
	}
	.header-list-block-right {
		font-size: 16px;
	}
	.header-list-block-right::before {
		margin-left: -25px;
		width: 5px;
		height: 5px;
		top: 8px;
	}
	.header-right {
		font-size: 16px;
	}
	.header-contact a {
		padding-top: 0px;
		padding-bottom: 2px;
	}
	.header-qr img {
		width: 70px;
		height: 70px;
	}
	.header-right.burger-on .header-right-menu-wrapper {
		height: 275px;
	}
}
@media (max-width: 768px) {
	.wrapper {
		min-height: 100vh;
		min-height: 100dvh;
		padding: 0 30px;
	}
	.logo {
		width: 100px;
		height: 100px;
	}
	.header-up-center {
		padding: 0;
	}
	h1 {
		margin-bottom: 10px;
	}
	h1,
	h2 {
		font-size: 25px;
	}
	.header-list-block-right {
		font-size: 20px;
	}
	.header-list-block-right::before {
		margin-left: -30px;
		width: 7px;
		height: 7px;
		top: 10px;
	}
	.header-contact a {
		padding-top: 0px;
		padding-bottom: 2px;
	}
	.header-qr img {
		width: 70px;
		height: 70px;
	}
	.header-right.burger-on .header-right-menu-wrapper {
		height: 275px;
	}
	.header-right {
		font-size: 16px;
		position: absolute;
		top: 30px;
		right: -10px;
		flex: 0 0 35px;
	}
	.content {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.content-flex {
		gap: 30px;
	}
	.content-link {
		flex: 1 1 34%;
	}
	.footer {
		height: 80px;
		padding: 0 calc(50px + 65 * (100vw - 768px) / 512);
	}
	.footer-left {
		margin-right: 50px;
	}
	.footer-text {
		font-size: calc(25px + 7 * (100vw - 768px) / 512);
	}
	.footer-right {
		max-width: calc(300px + 100 * (100vw - 768px) / 512);
	}
	.social-block a {
		display: block;
		width: calc(37px + 10 * (100vw - 768px) / 512);
	}
	.social-block a img {
		width: 100%;
	}
	.social-block:hover a {
		transform: scale(150%, 150%) rotate(-360deg);
	}
}
@media (max-width: 650px) {
	h1 {
		font-size: 20px;
	}
	.header-list-block {
		margin-bottom: 5px;
	}
	.header-list-block-right {
		font-size: 16px;
		padding-left: 35px;
	}
	.header-list-block-right::before {
		margin-left: -20px;
		width: 5px;
		height: 5px;
		top: 8px;
	}
	.content-flex {
		padding: 0 30px;
	}
	.footer-text {
		font-size: 20px;
	}
}
@media (max-width: 551px) {
	.header-right {
		right: 4px;
	}
	.header-left {
		display: none;
	}
	.header-right.burger-on .header-right-menu-wrapper {
		display: flex;
		height: 271.2px;
	}
	.header-right-menu {
		flex-direction: row;
		align-items: start;
	}
	.header-right-menu-logo {
		display: block;
		margin-top: 15px;
		margin-right: 20px;
	}
	.content {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.content-flex {
		padding: 0 15px;
		gap: 20px;
	}
	.footer {
		height: auto;
		padding: 15px 25px;
		width: auto;
	}
	.footer-cnt {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		height: auto;
		gap: 15px;
	}
	.footer-text {
		font-size: calc(18px + 2 * (100vw - 320px) / 230);
	}
	.footer-left {
		width: 100%;
		text-align: center;
		margin-right: 0px;
	}
	.footer-right {
		max-width: calc(250px + 30 * (100vw - 320px) / 230);
	}
	.social-block a {
		width: calc(33px + 4 * (100vw - 320px) / 230);
	}
}
@media (max-width: 455px) {
	.header-right-menu {
		flex-direction: column;
		align-items: center;
	}
	.header-right.burger-on .header-right-menu-wrapper {
		height: 380px;
	}
}
@media (max-width: 360px) {
	h1 {
		font-size: 18px;
	}
	.wrapper {
		padding: 0 20px;
	}
	.header-cnt {
		padding-top: 20px;
	}
	.header-list-block-right {
		font-size: 14px;
		padding-left: 24px;
	}
	.header-right {
		top: 20px;
		right: 4px;
	}
	.content-link {
		flex: 1 1 51%;
	}
	.content-flex {
		padding: 0 50px;
	}
	.empty {
		display: none;
	}
}
