/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap'); */

@font-face {
	font-family: "ProximaNova";
	src: url("/front/fonts/ProximaNovaCond-Regular.woff2") format("woff2"),
	url("/front/fonts/ProximaNovaCond-Regular.woff") format("woff"), url("/front/fonts/ProximaNovaCond-Regular.ttf") format("ttf") ;
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	}
	  @font-face {
	font-family: "ProximaNova";
	src: url("/front/fonts/ProximaNovaCond-Semibold.woff2") format("woff2"),
	url("/front/fonts/ProximaNovaCond-Semibold.woff") format("woff"), url("/front/fonts/ProximaNovaCond-Semibold.ttf") format("ttf") ;
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}
	@font-face {
		font-family: "ProximaNova";
		src: url("/front/fonts/ProximaNovaCond-Bold.woff2") format("woff2"),
		url("/front/fonts/ProximaNovaCond-Bold.woff") format("woff"), url("/front/fonts/ProximaNovaCond-Bold.ttf") format("ttf") ;
		font-weight: 700;
		font-style: normal;
		font-display: swap;
		}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

:root {
	--transition: 0.4s all linear;
	--main-color: #FBE51D;
	--bg-color: #161922;
}

::-webkit-scrollbar {
	width: 6px;
	height: 4px;
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
	-webkit-border-radius: 1ex;
}

body {
	font-family: 'ProximaNova', sans-serif;
	font-optical-sizing: auto;
	font-display: swap;
	font-variation-settings: 'slnt' 0;
	background-color: var(--bg-color);
}

.container {
	margin: 0 auto;
	max-width: 85%;
	width: 100%;
}
.header-container {
	margin: 0 auto;
    max-width: 85%;
    width: 100%;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.button__login {
	padding: 10px 16px;
	border-radius: 8px;
	background: linear-gradient( 90deg, #2DBEEC 0%, #1B48E5 100%);
	margin-right:10px;
	color:#ffffff;
	text-decoration: none;	
}
.button__login:hover {
	background: linear-gradient( 90deg, #2091b4 0%, #1535a6 100%);
}
.button__registration {
	position: relative;
	padding: 10px 24px;
	border-radius: 8px;
	color:#ffffff;
	text-decoration: none;
	background: linear-gradient( 90deg, #FDD607 0%, #FBE51D 100%);
}
.button__registration:after {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    position:absolute;
    bottom:-4px;
    right:-20px;
	background-image: url(/front/img/present.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.button__registration:hover {
	background: linear-gradient( 90deg, #c2a30b 0%, #96880d 100%);
}


main {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 0;
	background: linear-gradient( 90deg, #2E333F 0%, #434C5F 100%);
}

.logo {
	position: relative;
	display: flex;
	width: 195px;
	height: auto;
	z-index: 9;
}

a.logo {
	transition: var(--transition);
}

a.logo:hover {
	transform: scale(1.05);
}

.logo picture,
.logo img,
.logo p {
	display: flex;
	width: auto;
	height: 50px;
}

header nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
}

header nav .menu {
	justify-content: flex-end;
}

footer nav .menu {
	justify-content: center;
}

.menu li {
	position: relative;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #FFFFFF;
	transition: var(--transition);
}

header .menu li {
	margin: 0 0 15px 38px;
}
.menu li a:hover {
	color:#FE7C00;
}


.menu li.active:before {
	width: 100%;
}

.menu li a {
	color: #FFFFFF;
	text-decoration: none;
}

.burger {
	position: relative;
	display: none;
	z-index: 9;
}



.intro {
	margin:30px auto;
	background: url('/front/img/bg.webp') center / cover no-repeat;
	border-radius: 12px;
	padding: 65px 44px;
}

.intro h1 {
	margin: 0 0 8px 0;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 43px;
	color: #FFFFFF;
	flex: 1;
	width: 50%;
}

.intro p {
	margin: 0 0 23px 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #FFFFFF;
	width: 50%;
}

.intro .button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 250px;
	border-radius: 8px;
	padding: 15px;
	cursor: pointer;
	color: #FFFFFF;
	background: linear-gradient( 90deg, #FDD607 0%, #FBE51D 100%);
	text-decoration: none;
}
.intro .button:hover {
	background: linear-gradient(90deg, #ac920d 0%, #a5981b 100%);
}

.content {
	margin: 20px 0;
	border-radius: 20px;
}

.content.error {
	justify-content: center;
	align-items: center;
	min-height: 45vh;
}

.content .img-text, .img-big {
	display: flex;
	margin: 30px 0;
	width: 100%;
	height: auto;
	border-radius: 54px;
	overflow: hidden;
}

.content .img-text p,
.content .img-text picture,
.content .img-text img,
.img-big img {
	display: flex;
	width: 100%;
	height: 100%;
	transition: var(--transition);
}
.img-big {
	height: 510px;
}
.img-big img {
	object-fit: cover;
	border-radius: 12px;
}

.content .img-text:hover img {
	transform: scale(1.02);
	filter: brightness(80%);
}

.content .img-cov {
	width: 200px;
	height: 200px;
	border-radius: 20px;
	overflow: hidden;
	margin:20px auto;
}

.content .img-cov p,
.content .img-cov picture,
.content .img-cov img {
	display: flex;
	width: 100%;
	height: 100%;
	transition: var(--transition);
}

.content .img-cov:hover img {
	transform: scale(1.02);
	filter: brightness(80%);
}

.content h2,
.content h3 {
	width: 100%;
	text-align: center;
	margin: 30px 0 15px 0;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: #FFFFFF;
	background: linear-gradient( 90deg, #2DBEEC 0%, #1B48E5 100%);
	border-radius: 12px;
	padding: 19px 0;
}

.content h4 {
	margin: 0 0 15px 0;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: var(--main-color);
}

.content h5 {
	font-size: 35px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: #FFFFFF;
}

.content h2 {
	font-size: 24px;
}
.content h3 {
	font-size: 20px;
}

.content ul,
.content ol {
	margin: 0 0 15px 15px;
}

.content ul li:last-child,
.content li ol:last-child {
	margin: 0;
}

.content .table-responsive {
	display: flex;
	overflow: auto;
	margin: 20px 0;
	width: 100%;
	background: linear-gradient( 90deg, #2E333F 0%, #434C5F 100%);
	padding: 16px;
	border-radius: 12px;
}

.content .table-responsive table {
	display: table;
	width: 100%;
	border-collapse: separate;
    border-spacing: 0 8px;

}
.table-responsive .headling {
	font-size: 14px;
	color: 	#969BAA;
	font-weight: 600;
}
.table-responsive .text {
	font-size: 16px;
	color: 	#FFFFFF;
	font-weight: 600;
}

.content .table-responsive td:first-child {
	border-radius: 8px 0 0 8px;
}
.content .table-responsive td:last-child {
	border-radius: 0 8px 8px 0;
}
.content .table-responsive tr {
	background:	#2C3240;

}

.content .table-responsive td,
.content .table-responsive th {
	text-align: center;
	padding: 7px;
	width: 30px;
	height: 25px;
	text-align: left;
	
}
.content .table-responsive th {
	font-weight: bold;
	background-color: #FFFFFF;
	color: var(--main-color);
}

.content p,
.content li {
	margin: 0 0 15px 0;
}

.content p,
.content td,
.content th,
.content li {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #FFFFFF;
}
.row {
	margin: 0 auto;
    max-width: 85%;
    width: 100%;
}

footer {
	padding: 15px;
	background: #2C3240;
}

footer,
footer nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer nav .menu {
	justify-content: center;
}

footer .menu li {
	margin: 10px 16px;
}
.row {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.payment svg {
width:30px;
height: 30px;
}
.social svg {
width: 15px;
height: 15px;
fill:#545D7F;
}
.social a {
	text-decoration: none;
}
.social svg:hover {
	fill:#FFFFFF;
	}

	.spoiler-list {
		background-color: #161B2D;
		border-radius: 8px;
		margin-bottom: 24px;
	}

	.spoiler-list .spoiler-btn {
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 14px 16px;
	}
	.spoiler-list .spoiler-list-content {
		display: none;
	}
	.spoiler-list .spoiler-list-content ol {
		padding-left: 33px;
		padding-bottom: 10px;
		margin-top: 4px;
	}
.spoiler-btn p {
	margin-bottom: 0;
}
.spoiler-list .spoiler-list-content.show {
    display: block;
}

.spoiler-list .spoiler-btn .arrow.open {
    transform: rotate(180deg);
}
.spoilerContentJs a {
	text-decoration: none;
	color:inherit;
}
.spoilerContentJs a:hover {
	color:var(--main-color);
}
.faq .faq-item h3 {
    cursor: pointer;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
	margin-top: 0 !important;
    font-weight: 600;
    background: #2C3240 !important;
	text-align: left;
}
.faq .faq-item .faq-item-content {
    padding: 12px 16px;
    background-color: #2C3240;
    border-radius: 12px;
    display: none;
    margin-bottom: 8px;
}
.faq .faq-item .faq-item-content.show {
    display: block;
}
.faq .faq-item .faq-item-content p {
    margin: 0;
}
.faq .faq-item h3::after {
    content: url(/front/img/arrow-down.svg);
    margin-right: 5px;
}
.faq .faq-item.show h3::after {
    content: url(/front/img/arrow-up.svg);
    margin-right: 5px;
}

@media screen and (max-width: 1024px) {
	header {
		position: relative;
	}

	.logo {
	    margin: 0 0 10px 0;
		height: 20px;
	}

	.burger {
		display: flex;
		width: 50px;
		height: 50px;
		background: url('../img/burger-open.webp') center / contain no-repeat;
		border: none;
		transition: var(--transition);
	}

	header.active .burger {
		background: url('../img/burger-close.webp') center / contain no-repeat;
	}

	header .menu {
		position: absolute;
		top: -700%;
		left: 0;
		flex-direction: column;
		align-items: flex-start;
		padding: 50px 0;
		width: 100%;
		background-color: var(--bg-color);
		transition: 0.55s all linear;
		z-index: 8;
	}

	header.active .menu {
		top: 100%;
	}

	header .menu li {
		margin: 0 0 35px 0;
	}

	.menu li {
		font-size: 25px;
	}

	.intro {
		margin: 40px 0 0 0;
		width: 100%;
		flex-direction: column-reverse;
		padding: 50px 13px 5px 13px;
	}
	
	.intro .bg {
	    margin: 25px 0 0 0;
	    width: 100%;
	}
	
	.intro .body {
	    width: 100%;
	}

	.intro h1 {
		margin: 0 0 15px 0;
	}

	.intro p {
		font-size: 22px;
	}

	.content.error {
		min-height: 55vh;
	}

	.content h2 {
		font-size: 40px;
	}

	.content h3 {
		font-size: 35px;
	}

	.content p,
	.content li {
		margin: 0 0 20px 0;
	}

	.content ul,
	.content ol {
		margin: 0 0 20px 15px;
	}

	.content p,
	.content td,
	.content th,
	.content li {
		font-size: 22px;
	}

	footer {
		padding: 30px 0;
	}
}

@media screen and (max-width: 600px) {
	header {
		padding: 10px 20px;
	
	}

	.logo {
		margin: 0;
		height: 35px;
		align-items: center;
		width: auto;
	}
	.logo picture, .logo img, .logo p {
		height: 35px;
		width: 65px;
	}
	.header-container {
		max-width:100%;
	}
	/* .logo picture, .logo img, .logo p {
		height: 15px;
	} */
	.button__registration, .button__login {
		font-size:12px;
	}
	.button__login {
		padding: 8px 25px;
	}
	.button__registration {
		padding: 8px 25px;
	}
	.burger {
		width: 20px;
		height: 20px;
	}

	header .menu {
		padding: 25px;
	}

	.menu li {
		margin: 0 0 31px 0;
		font-size: 12px;
	}

	.intro {
		margin: 20px 0;
		width: 100%;
		background: url(/front/img/mob.webp) center / cover no-repeat;
	}

	.intro .body {
		min-height: auto;
		width: 100%;
		padding: 10px 20px;
		border-radius: 10px;
	}

	.intro .body h1 {
		margin: 0 0 30px 0;
	}

	.intro .body p {
		font-size: 12px;
	}

	.intro .bg {
		width: 100%;
		height: 200px;
		border-radius: 10px;
	}

	.intro h1 {
		font-size: 24px;
		line-height: 29px;
		width: 100%;
		text-align: center;
	}

	.intro p {
		margin: 0 0 20px 0;
		font-size: 12px;
		width: 100%;
		text-align: center;
	}

	.intro .button {
		width: 100%;
		padding: 15px;
		border-radius:6px;
		max-width: 100%;
	}

	.content {
		padding: 20px 0;
		border-radius: 10px;
	}

	.content.error {
		min-height: 60vh;
	}

	.content .img-text {
		border-radius: 24px;
	}
	.img-big {
		height: 195px;
		border-radius:8px;
	}

	.content h2 {
		font-size: 18px;
		border-radius: 8;
	}

	.content h3 {
		font-size: 16px;
	}

	.content ul,
	.content ol {
		margin: 0 0 10px 10px;
	}

	.content p,
	.content li {
		margin: 0 0 10px 0;
	}

	.content p,
	.content td,
	.content th,
	.content li {
		font-size: 12px;
	}

	footer {
		padding: 10px;
	
	}

	/*.content .img-cov {*/
	/*	width: 100px;*/
	/*	height: 100px;*/
	/*	border-radius: 12px;*/
	/*}*/
	.content .table-responsive {
		border-radius: 8px;
	}
	.row {
		flex-wrap: wrap;
	}
	.row .logo {
		order: 1;
		height: 25px;
	}
	.social {
		order:2
	}
	.payment {
		order: 3;
	}
	.faq .faq-item h3 {
		border-radius: 8px;		
	}
	.faq .faq-item .faq-item-content {
		border-radius: 8px;	
	}
.content .table-responsive tbody {
	display: flex;
}
.content .table-responsive tr {
	display: block;
}
.content .table-responsive td {
	width: 100%;
	float: left;
	height: auto;
}
.table-responsive .headling {
	font-size: 12px;
}
.table-responsive .text {
	font-size: 12px;
}

}

@media screen and (max-width:600px) {
	.img-cov {
		float: none !important;
	}
}

.intro-error  {
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
}
    .intro-error h1 {
         font-size:150px;
        color:#FBE51D;
    }
     .intro-error h1 span{
         color:#FFFFFF;
    }
    .intro-error p {
        color:#FFFFFF;
        margin:20px auto 50px auto;
    }
    .intro-error .button {
       position: relative;
    max-width: 300px;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    color: #FFFFFF;
    background: linear-gradient(90deg, #2DBEEC 0%, #1B48E5 100%);
    box-shadow: 0px 0px 8.9px 0px #E5EAF8 inset;
    text-decoration: none;
    }
    @media screen and (max-width:600px){
        .intro-error h1 {
            font-size:90px;
        }
    }