* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}

body {
	max-width: 1300px;
	margin: 0 auto;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	background-color: #3a1700;
	color: #fff;
	padding-top: 60px;
}

.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: #1a0000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	z-index: 1000;
	text-align: center;

}

.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: 1px solid #8a0000;
	display: inline-block;
	padding: 10px 20px;
	background-color: #8a0000;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: box-shadow 0.3s ease-in-out;
}

@media (max-width: 768px) {
	.btn {
		width: 100%;
		text-align: center;
		padding: 10px;
		font-size: 14px;
	}
}

@keyframes glow {
	0% {
		box-shadow: 0 0 5px #8a0000;
	}

	50% {
		box-shadow: 0 0 20px #8a0000;
	}

	100% {
		box-shadow: 0 0 5px #8a0000;
	}
}

.glowing {
	animation: glow 1.5s infinite alternate;
}

.button_1 {
	background-color: #8a0000;
}

.button_2 {
	background-color: transparent;
}

.button_2:hover {
	background-color: #8a0000;
}

h1 {
	font-size: 50px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.4;
}

@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}

h2 {
	font-size: 30px;
	font-weight: bold;
}

@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 p {
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.5;
}

.main ul {
	list-style: disc;
	margin-bottom: 14px;
	padding-left: 20px;
}

.main ol {
	list-style: decimal;
	margin-bottom: 14px;
	padding-left: 20px;
}

ol li,
ul li {
	line-height: 1.5;
}


.main_text img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	border-radius: 14px;
	margin: 30px auto;
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}

.main h1 {
	margin-bottom: 50px;
}

@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}


.main table {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 30px 0;
	border-collapse: collapse;
	border-spacing: 0;
}

.main table tr {
	display: grid;
	grid-template: auto/repeat(2, 1fr);
	align-items: center;
	border-top: 1px solid #9e9e9e;
}

.main table tr:last-child {
	border-bottom: 1px solid #9e9e9e;
}

@media (max-width: 590px) {
	.main table tr {
		grid-template: auto/repeat(2, 1fr);
	}
}

.main table td {
	font-weight: 400;
	line-height: 25px;
	padding: 10px 0;
	text-align: center;
}

@media (max-width: 590px) {
	.main table td {
		font-size: 16px;
	}
}

@media (max-width: 390px) {
	.main table td {
		font-size: 14px;
	}
}

.main table th {
	line-height: 25px;
	padding: 10px 0;
	text-align: center;
}

.main table td:first-child {
	text-align: left;
	padding-left: 20px;
}

@media (max-width: 590px) {
	.main table td:first-child {
		padding-left: 0;
	}
}

.main table td:last-child {
	text-align: right;
	padding-right: 20px;
}

@media (max-width: 590px) {
	.main table td:last-child {
		padding-right: 0;
	}
}

.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #1a0000;
	color: #fff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

@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;
}

.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: #fff;
	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;
	}
}