fot* {
	padding: 0;
	margin: 10;
	box-sizing: border-box;
}
:root {
	--textPrimary: #ffffff;
	--background: #262626;
	--blueColor: #3959d9;
}

html,
body {
	font-family: OpenSansRegular, sans-serif;
	height: 100%;
	background: #1a1a1a;
}

h1 {
	font-size: 40px;
	text-align: center;
	color: #ffffff;
}
h2,
strong {
	display: block;
	font-size: 34px;
	color: white;
	text-align: center;
}
h3 {
	font-size: 24px;
	color: #9fa0a8;
}

p {
	font-size: 16px;
	line-height: 24px;
	color: var(--textPrimary);
	margin: 15px 0;

	text-align: justify;
}

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

ul {
	list-style: none;
	padding-left: 50px;
	margin: 20px 0;
}

ul li,
ol li {
	position: relative;
	line-height: 24px;
	color: var(--textPrimary);
}

ul li::before {
	content: '♣';
	position: absolute;
	width: 14px;
	height: 14px;
	top: 2px;
	left: -25px;
	color: #f32020;
}

.wrapper {
	min-height: 100vh;
}

.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--background);
	z-index: 99;
	box-shadow: 0 0 10px 5px rgba(255, 253, 253, 0.1);
	padding: 15px 0;
	/* opacity: 0.9; */
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
}

.header .logo {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1;
	min-width: 40%;
}

.header .title {
	font-size: 28px;
	color: var(--blueColor);
	font-weight: 600;
}

.header .title:hover {
	color: #9fa0a8;
}

.buttons31 .btn {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	padding: 10px 30px;
	margin-left: 8px;
	cursor: pointer;
	border-radius: 100px;
}
.buttons31 .reg {
	background: linear-gradient(180deg, #eb3434 0%, #741717 100%);
}
.buttons31 .reg:hover {
	background-color: linear-gradient(103.42deg, #f20303 6.06%, #121213 77.61%);
}
.buttons31 .sign-up {
	border: 1px solid #3959d9;
	color: #3959d9;
}
.buttons31 .sign-up:hover {
	background: #c4cdf4;
}
.main-body {
	max-width: 1200px;
	margin: 100px auto 0;
	flex: 1 1 auto;
}

.main-body img {
	width: 90%;
	margin: 15px;
}
.content {
	max-width: 1000px;
	margin: 30px auto 0;
	background-color: #262626;
	border-radius: 100px;
}

.table {
	font-family: Arial, Helvetica, sans-serif;
	border-collapse: collapse;
	width: 100%;
	text-align: center;
}

.table table {
	width: 100%;
	border-collapse: collapse;
}

.table td,
.table th {
	border: 1px solid #ffffff;
	padding: 8px;
	color: white;
	width: max-content;
}

.table tr:nth-child(even) {
	background-color: #262626;
}

.table tr:hover {
	background-color: rgb(0, 0, 0);
	color: white;
}

.table th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: center;
	background-color: #000000;
	color: white;
}

.mosttable {
	overflow-x: scroll;
	width: 100%;
}
.img-block {
	width: 90%;
	margin: 30px 0;
}
.img-block .flex {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 5rem;
}
.img-block .flex img {
	width: 100px;
}

.img-heip {
	width: 300px;
}

.main-footer {
	box-shadow: 0 0 10px 5px #262626;
	width: 100%;
	margin-top: 100px;
}
.main-footer .footer-text {
	text-align: center;
	font-size: 14px;
	padding: 15px 0;
}

.faq {
	font-family: Arial, sans-serif;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
}

.table {
	width: 100%;
	overflow-x: auto;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	margin: 0;
}

h3 {
	background: linear-gradient(180deg, #eb3434 0%, #741717 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Mobile */

@media screen and (max-width: 767px) {
	h1 {
		font-size: 30px;
	}
	h2,
	strong {
		font-size: 26px;
	}
	h3 {
		font-size: 24px;
	}
	.buttons31 {
		display: flex;
	}
	.header .logo {
		min-width: 20%;
	}
	.content {
		padding: 0 15px;
	}
	ul {
		padding-left: 40px;
	}
	.buttons31 .btn {
		font-size: 16px;
	}
	.img-block .flex {
		display: block;
	}
	.img-block .flex:nth-child(2) {
		display: flex;
		flex-direction: column-reverse;
		gap: 0;
	}
	.img-block .flex .img {
		text-align: center;
	}
}

@media screen and (min-width: 768px) {
	.btn span {
		cursor: pointer;
		display: inline-block;
		position: relative;
		transition: 0.5s;
	}

	.btn span:after {
		content: '\00bb';
		position: absolute;
		opacity: 0;
		top: 0;
		right: -20px;
		transition: 0.5s;
	}

	.btn:hover span {
		padding-right: 25px;
	}

	.btn:hover span:after {
		opacity: 1;
		right: 0;
	}
}
.betonred {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.transparent-button {
	background: linear-gradient(180deg, #eb3434 0%, #741717 100%);
	border: none;
	color: whitesmoke;
	padding: 20px 70px;
	font-size: 20px;
	border-radius: 100px;
	font-weight: bold;
}

.transparent-button:hover {
	opacity: 1;
	cursor: pointer;
}
blockquote {
	margin: 0;
	background: white;
	border-top: 5px solid #eaf9f9;
	border-bottom: 5px solid #eaf9f9;
	color: #3a3c55;
	padding: 30px 30px 30px 90px;
	position: relative;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}
blockquote:before {
	content: '\201C';
	font-family: serif;
	position: absolute;
	left: 20px;
	top: 20px;
	color: white;
	background: #f92003;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 50px;
	line-height: 1.35;
	text-align: center;
}
blockquote p {
	margin: 0 0 16px;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
blockquote cite {
	font-style: normal;
}

.photo {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.photoo {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.main-footer nav {
	padding: 20px;
}
.main-footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:30px;
}