* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	max-width: 1300px;
	margin: 0 auto;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	background: linear-gradient(135deg, #001432 0%, #002a5a 50%, #001432 100%);
	background-attachment: fixed;
	color: #ffffff;
	padding-top: 60px;
	min-height: 100vh;
	line-height: 1.6;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
	transition: all 0.3s ease;
}
.conteiner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #004182 0%, #0055b3 100%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 65, 130, 0.2);
	padding: 10px 0;
	z-index: 1000;
	text-align: center;
	backdrop-filter: blur(10px);
}
.header_conatiner {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 90px;
}
.header_logo img {
	height: 41px;
	width: 100%;
	object-fit: contain;
}
.header_button {
	display: flex;
	gap: 20px;
}
@media (max-width: 768px) {
	.header_button {
		gap: 8px;
	}
}

.btn {
	border: 2px solid transparent;
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #001432 0%, #003366 100%);
	color: #ffffff;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	overflow: hidden;
}
.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}
.btn:hover::before {
	left: 100%;
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 20, 50, 0.5);
}
.btn:active {
	transform: translateY(0);
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}
@keyframes glow {
	0% { 
		box-shadow: 0 0 10px rgba(0, 20, 50, 0.5), 0 0 20px rgba(0, 65, 130, 0.3);
		transform: scale(1);
	}
	50% { 
		box-shadow: 0 0 20px rgba(0, 65, 130, 0.8), 0 0 40px rgba(0, 100, 200, 0.5);
		transform: scale(1.02);
	}
	100% { 
		box-shadow: 0 0 10px rgba(0, 20, 50, 0.5), 0 0 20px rgba(0, 65, 130, 0.3);
		transform: scale(1);
	}
}
@keyframes gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}
.glowing {
	animation: glow 2s infinite ease-in-out;
	background: linear-gradient(135deg, #003366 0%, #001432 50%, #003366 100%);
	background-size: 200% 200%;
	animation: glow 2s infinite ease-in-out, gradient-shift 3s infinite ease;
}

.button_1 {
	background-color: #001432;
}
.button_2 {
	background-color: transparent;
	border: 2px solid #001432;
}
.button_2:hover {
	background: linear-gradient(135deg, #001432 0%, #003366 100%);
	border-color: #003366;
}
.button_3 {
	background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
	border: 2px solid #d32f2f;
}
.button_3:hover {
	background: linear-gradient(135deg, #f44336 0%, #ff5722 100%);
	border-color: #f44336;
	box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

h1 {
	font-size: 50px;
	text-align: center;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.3;
	background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
	letter-spacing: 1px;
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}
h2 {
	font-size: 30px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 20px;
	color: #ffffff;
	border-left: 4px solid #004182;
	padding-left: 15px;
	position: relative;
}
h2::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 15px;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #004182 0%, transparent 100%);
}
@media (max-width: 768px) {
	h2 {
		font-size: 26px;
		margin-top: 10px;
	}
}
.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main_text p {
	font-size: 16px;
	font-weight: 400;
	color: #e8e8e8;
	line-height: 1.8;
	margin-bottom: 15px;
	text-align: justify;
}
.main_text ul {
	margin: 20px 0 20px 30px;
	padding-left: 0;
	list-style: none;
}
.main_text ul li {
	margin-bottom: 12px;
	color: #e8e8e8;
	line-height: 1.8;
	position: relative;
	padding-left: 25px;
}
.main_text ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #004182;
	font-weight: bold;
	font-size: 18px;
}
.main_text strong {
	color: #ffffff;
	font-weight: 600;
}
.main_text em {
	font-style: italic;
	color: #ffffff;
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: auto;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 65, 130, 0.3);
	transition: all 0.4s ease;
	cursor: pointer;
}
.photo:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 65, 130, 0.4);
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}
.main h1 {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}
.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: linear-gradient(135deg, #004182 0%, #0055b3 100%);
	color: #ffffff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 65, 130, 0.4);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	border: 2px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
	.popup {
		width: 95%;
		padding: 6px;
		gap: 10px;
		border-radius: 10px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: space-around;	
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.476);
	font-size: 20px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 6px;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 16px;
		right: 6px;
		top: 3px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 35px;
	color: #ffffff;
	font-weight: 700;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 24px;
	}
}
.block_txt p {
	color: #ffffff;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 14px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
}