* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

@font-face {
	font-weight: 400;
	font-style: normal;
	font-family: Axiforma;
	src: local('Axiforma'), url(../fonts/Axiforma-Regular.woff2) format('woff2');
	font-display: swap
}

@font-face {
	font-weight: 600;
	font-style: normal;
	font-family: Axiforma;
	src: local('Axiforma'), url(../fonts/Axiforma-SemiBold.woff2) format('woff2');
	font-display: swap
}

@font-face {
	font-weight: 700;
	font-style: normal;
	font-family: Axiforma;
	src: local('Axiforma'), url(../fonts/Axiforma-Bold.woff2) format('woff2');
	font-display: swap
}

@font-face {
	font-weight: 800;
	font-style: normal;
	font-family: Axiforma;
	src: local('Axiforma'), url(../fonts/Axiforma-Black.woff2) format('woff2');
	font-display: swap
}

@font-face {
	font-weight: 900;
	font-style: normal;
	font-family: Axiforma;
	src: local('Axiforma'), url(../fonts/Axiforma-Heavy.woff2) format('woff2');
	font-display: swap
}

html {
	font-size: 10px
}

@media (max-width:1440px) {
	html {
		font-size: 9px
	}
}

@media (max-width:1320px) {
	html {
		font-size: 8px
	}
}

@media (max-width:1160px) {
	html {
		font-size: 7px
	}
}

@media (max-width:1024px) {
	html {
		font-size: 3.125vw
	}
}

body {
	position: relative;
	overflow-x: hidden;
	margin: 0;
	min-width: 320px;
	color: #171740;
	font-size: 1.6rem;
	font-family: Axiforma;
	line-height: 1.625;
	background-color: #f7f7f7
}

@media (max-width:1024px) {
	body {
		font-size: 1.2rem;
		line-height: 1.583333333333333
	}
}

a,
button {
	outline: 0;
	border: none;
	background-color: transparent;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

a {
	color: #ff002f;
	text-decoration: underline
}

ol,
ul {
	margin: 0;
	padding: 0;
	list-style: none
}

input,
textarea {
	outline: 0
}

img {
	display: block;
	max-width: 100%;
	height: auto
}

.transition {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.container {
	margin: 0 auto;
	width: 128rem
}

@media (max-width:1024px) {
	.container {
		padding: 0 15px;
		width: 100%
	}
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%
}

@media (max-width:1024px) {
	.flex {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.justify-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.justify-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.align-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.accordion {
	margin-top: 4rem;
	margin-bottom: 6rem
}

@media (max-width:1024px) {
	.accordion {
		margin-top: 3rem;
		margin-bottom: 4rem
	}
}

.accordion__head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1rem;
	padding-left: 2rem;
	width: 100%;
	height: 7.2rem;
	border-radius: 1rem;
	background-color: #fff;
	text-align: left;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.666666666666667;
	cursor: pointer
}

@media (max-width:1024px) {
	.accordion__head {
		margin-top: .6rem;
		padding: 1.5rem;
		padding-right: 5.5rem;
		height: auto;
		font-size: 1.2rem;
		line-height: 1.666666666666667
	}
}

.accordion__head.active {
	color: #ff002f
}

.accordion__head.active:after,
.accordion__head.active:before {
	background-color: #ff002f;
	-webkit-transform: translateY(-50%) rotate(0);
	-ms-transform: translateY(-50%) rotate(0);
	transform: translateY(-50%) rotate(0)
}

.accordion__head:after,
.accordion__head:before {
	position: absolute;
	top: 50%;
	right: 3.5rem;
	width: 2rem;
	height: .5rem;
	border-radius: .5rem;
	background-color: #171740;
	content: '';
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width:1024px) {
	.accordion__head:after,
	.accordion__head:before {
		right: 2rem;
		width: 1.5rem;
		height: .3rem
	}
}

.accordion__head:after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg)
}

.accordion__panel {
	overflow: hidden;
	padding: 0 7rem 0 2rem;
	max-height: 0;
	border-radius: 0 0 1rem 1rem;
	background-color: #efefef;
	font-size: 1.4rem;
	line-height: 1.571428571428571;
	-webkit-transition: max-height .2s ease-out;
	-o-transition: max-height .2s ease-out;
	transition: max-height .2s ease-out
}

@media (max-width:1024px) {
	.accordion__panel {
		padding: 0 1.5rem;
		font-size: 1rem;
		line-height: 1.6
	}
}

.accordion__panel p {
	margin: 1.8rem 0
}

@media (max-width:1024px) {
	.accordion__panel p {
		margin: 1.3rem 0
	}
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 6.2rem;
	border-radius: 1rem;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.6rem;
	cursor: pointer
}

@media (max-width:1024px) {
	.btn {
		height: 4.5rem;
		font-size: 1.2rem
	}
}

.btn-red {
	background-color: #ff002f;
	color: #fff
}

.btn-red:hover {
	-webkit-box-shadow: 0 10px 29px -12px #ff002f;
	box-shadow: 0 10px 29px -12px #ff002f
}

@media (max-width:1024px) {
	.btn-red:hover {
		-webkit-box-shadow: 0 10px 29px -12px #ff002f;
		box-shadow: 0 10px 29px -12px #ff002f
	}
}

.btn-white {
	width: 28rem;
	height: 5rem;
	background-color: #fff;
	color: #9b9b9b
}

@media (max-width:1024px) {
	.btn-white {
		width: 21rem;
		height: 3.7rem
	}
}

.btn-white:hover {
	background-color: #ff002f;
	-webkit-box-shadow: 0 10px 29px -12px #ff002f;
	box-shadow: 0 10px 29px -12px #ff002f;
	color: #fff
}

.content p {
	margin-top: 0;
	margin-bottom: 2.5rem
}

@media (max-width:1024px) {
	.content p {
		margin-bottom: 2rem
	}
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content strong {
	position: relative;
	margin-top: 0;
	margin-bottom: 4rem;
	padding-left: 4.5rem;
	color: #171740;
	font-weight: 800;
	font-size: 3.1rem;
	line-height: 1.709677419354839
}

@media (max-width:1024px) {
	.content h2,
	.content h3,
	.content h4,
	.content h5,
	.content h6,
	.content strong {
		margin-bottom: 2rem;
		padding-left: 2rem;
		font-size: 1.7rem;
		line-height: 1.705882352941176
	}
}

.content h2:before,
.content h3:before,
.content h4:before,
.content h5:before,
.content h6:before,
.content strong:before {
	position: absolute;
	bottom: -1rem;
	left: .5rem;
	width: 8rem;
	height: 4rem;
	background-image: url(/images/line.svg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	content: ''
}

@media (max-width:1024px) {
	.content h2:before,
	.content h3:before,
	.content h4:before,
	.content h5:before,
	.content h6:before,
	.content strong:before {
		top: 1rem;
		bottom: auto;
		width: 4.5rem;
		height: 2.5rem
	}
}

.content ol,
.content ul {
	margin-top: 3.5rem;
	margin-bottom: 3.5rem;
	padding-left: 3.5rem
}

@media (max-width:1024px) {
	.content ol,
	.content ul {
		margin-top: 3rem;
		margin-bottom: 3rem
	}
}

.content ol li,
.content ul li {
	position: relative;
	margin-bottom: 2.5rem
}

@media (max-width:1024px) {
	.content ol li,
	.content ul li {
		margin-bottom: 2rem
	}
}

.content ol li:before,
.content ul li:before {
	position: absolute;
	top: 0rem;
	left: -3.5rem;
	width: 2.5rem;
	height: 2.5rem;
	background-image: url(/images/check.svg);
	background-size: 100% 100%;
	content: ''
}

@media (max-width:1024px) {
	.content ol li:before,
	.content ul li:before {
	    top: -.5rem;
	}
}

.footer {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: #171740
}

@media (max-width:1024px) {
	.footer {
		padding-top: 2rem
	}
}

@media (max-width:1024px) {
	.footer__block {
		width: 48%
	}
}

.footer__logo {
	display: block;
	margin-bottom: 2.5rem;
	width: 16.5rem
}

@media (max-width:1024px) {
	.footer__logo {
		margin-bottom: 1rem;
		width: 11rem
	}
}

.footer__text {
	margin: 0;
	width: 32.5rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.583333333333333
}

@media (max-width:1024px) {
	.footer__text {
		width: 100%;
		font-size: .8rem;
		line-height: 1.75
	}
}

.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: .5rem;
	margin-bottom: 2.5rem
}

@media (max-width:1024px) {
	.footer__menu {
		display: block;
		    margin-top: 0px;
		margin-bottom: 4rem
	}
}

.footer__link {
	margin-left: 1.8rem;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.571428571428571
}

.footer__link:hover {
	color: #ff002f
}

@media (max-width:1024px) {
	.footer__link {
		font-size: 1.2rem;
		line-height: 1.916666666666667
	}
}

.footer__img {
	margin-left: auto;
	width: 27rem
}

@media (max-width:1024px) {
	.footer__img {
		position: absolute;
		bottom: 0;
		left: 15px;
		margin: 0;
		width: 14.5rem
	}
}

.footer .container {
	position: relative
}

.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 8rem;
	background-color: #fff
}

@media (max-width:1024px) {
	.header {
		height: 9.5rem
	}
}

.header__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media (max-width:1024px) {
	.header__buttons {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
}

.header__select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 1.5rem;
	padding: 0 1rem;
	height: 3.8rem;
	border: 1px solid #efefef;
	border-radius: 1rem;
	background: #f7f7f7;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 1.8rem;
	cursor: pointer
}

@media (max-width:1024px) {
	.header__select {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-left: .5rem;
		padding: 0 .4rem;
		width: 5.5rem;
		height: 2.5rem;
		border-radius: .6rem;
		font-size: 1.1rem;
		line-height: 1
	}
}

.header__select span {
	font-weight: 800;
	font-size: 1.4rem
}

@media (max-width:1024px) {
	.header__select span {
		width: 100%;
		font-size: .8rem;
		line-height: 1
	}
}

.header__flag {
	margin: 0 .7rem;
	width: 2rem
}

@media (max-width:1024px) {
	.header__flag {
		margin: 0;
		margin-right: .3rem;
		width: 1.3rem
	}
}

.header__arrow {
	margin-left: .7rem;
	width: 1.6rem
}

@media (max-width:1024px) {
	.header__arrow {
		margin-left: .3rem;
		width: 1rem
	}
}

.logo {
	width: 16rem
}

@media (max-width:1024px) {
	.logo {
		width: 8.5rem;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
		margin: auto;
	}
}

.main__banner {
	margin-bottom: 6.5rem;
	padding-top: 10rem;
	padding-bottom: 10rem;
	background-image: url(/images/main.png);
	background-position: center;
	background-size: cover;
	text-align: center
}

@media (max-width:1024px) {
	.main__banner {
		margin-bottom: 3rem;
		padding-top: 4rem;
		padding-bottom: 3rem
	}
	
	.content {
	    font-size:1rem;
	}
	
}

.main__content {
	margin: 0 auto;
	width: 86rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5625
}

@media (max-width:1024px) {
	.main__content {
		width: 100%;
		font-size: 1.1rem;
		line-height: 1.666666666666667
	}
}

.main__content b {
	font-weight: 800;
	font-size: 2rem;
	line-height: 1.65
}

@media (max-width:1024px) {
	.main__content b {
		font-size: 1.2rem;
		line-height: 1.666666666666667
	}
}

.main__content p {
	margin: 0
}

.main__text {
	margin-bottom: 10rem;
	padding-top: 10rem
}

@media (max-width:1024px) {
	.main__text {
		padding-top: 5rem;
		margin-bottom: 5.5rem
	}
}

.menu {
	margin-left: 14rem
}

@media (max-width:1024px) {
	.menu {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin-top: .8rem;
		margin-right: -15px;
		margin-left: 0;
		margin-left: -15px;
		padding-top: 1rem;
		width: calc(100% + 30px);
		border-top: 1px solid #ededed
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

@media (max-width:1024px) {
	.menu__list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.menu__link {
	padding: 0 1.3rem;
	color: #171740;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.611111111111111
}

@media (max-width:1024px) {
	.menu__link {
		padding: 0 .7rem;
		font-size: 1.4rem;
		line-height: 2.714285714285714
	}
}

.menu__link-active,
.menu__link:hover {
	color: #ff002f
}

.table {
	display: block;
	margin-top: 5.5rem;
	margin-bottom: 3.5rem;
	width: 100%;
	counter-reset: table
}

@media (max-width:1024px) {
	.table {
		margin-top: 2rem;
		margin-bottom: 2.5rem
	}
}

.table tbody {
	display: block;
	width: 100%
}

.table td {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.table td.table__text {
	-ms-flex-negative: 1;
	flex-shrink: 1
}

.table__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 1rem 1.6rem 1rem .7rem;
	border-radius: 1rem;
	background-color: #fff;
	transition:.3s;
	    border:1px solid transparent;
}


.table__row:hover{
    border:1px solid #ff002f;
}

.table__row:nth-child(n+6) {
	display: none
}

@media (max-width:1024px) {
	.table__row {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: .9rem
	}
	.table__row:nth-child(n+5) {
		display: none
	}
}

.table__row:first-child {
	-webkit-box-shadow: 0 56px 29px -29px rgba(167, 167, 167, .26);
	box-shadow: 0 56px 29px -29px rgba(167, 167, 167, .26)
}



.table__num {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 1.5rem;
	width: 4.7rem;
	height: 9rem;
	border-radius: 1rem;
	background-color: #171740;
	color: #fff;
	font-weight: 800;
	font-size: 2.4rem
}

.table__row:hover .table__num {
    background:#ff002f;
}

@media (max-width:1024px) {
	.table__num {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
		margin-right: .5rem;
		width: 2.5rem;
		height: 4.8rem;
		border-radius: .5rem;
		font-size: 1.3rem
	}
}

.table__num:before {
	content: counter(table);
	counter-increment: table
}

.table__logo {
	width: 9rem;
	height: 9rem;
	border-radius: 1rem
}

@media (max-width:1024px) {
	.table__logo {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: 4.8rem;
		height: 4.8rem;
		border-radius: .5rem
	}
}

.table__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.table__text {
	-ms-flex-negative: 1;
	flex-shrink: 1;
	width: 100%;
	text-align: center;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.642857142857143
}

@media (max-width:1024px) {
	.table__text {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin: .9rem 0;
		font-size: .9rem;
		line-height: 1.666666666666667
	}
}

.table__text span {
	color: #ff002f;
	font-weight: 800;
	font-size: 2.4rem;
	line-height: 1.375
}

@media (max-width:1024px) {
	.table__text span {
		font-size: 1.5rem;
		line-height: 1.4
	}
}

.table__text p {
	margin: 0
}

.table__text p:first-child {
	color: #171740
}

.table__text p:last-child {
	color: #9b9b9b
}

.table__rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: .5rem;
	width: 24rem;
	height: 6.2rem;
	border-radius: 1rem;
	background-color: #171740;
	color: #fff;
	font-weight: 800;
	font-size: 2rem
}

@media (max-width:1024px) {
	.table__rating {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		padding-top: 0;
		width: 18.5rem;
		height: 4.8rem;
		border-radius: .5rem;
		font-size: 1.5rem
	}
}

.table__rating img {
	margin-right: .6rem;
	margin-bottom: .5rem;
	width: 2rem
}

@media (max-width:1024px) {
	.table__rating img {
		margin-right: .5rem;
		margin-bottom: 0;
		width: 1.6rem
	}
}

.table__rating img:nth-child(5) {
	margin-right: 1.5rem
}

@media (max-width:1024px) {
	.table__rating img:nth-child(5) {
		margin-right: 1.2rem
	}
}

.table__button {
	margin-left: 13rem;
	width: 25rem
}

@media (max-width:1024px) {
	.table__button {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
		margin-left: 0;
		width: 100%
	}
}

.title {
	margin: 0
}

.title-h1 {
	margin-bottom: .7rem;
	color: #fff;
	font-weight: 800;
	font-size: 4.8rem;
	line-height: 1.666666666666667;
	position:relative;
}




.main__banner:hover  {
    background-position:100% auto;
    
}

@media (max-width:1024px) {
	.title-h1 {
		margin-bottom: 1.5rem;
		font-size: 1.8rem;
		line-height: 1.666666666666667
	}
}

.title-h2 {
	position: relative;
	padding-left: 4.5rem;
	color: #171740;
	font-weight: 800;
	font-size: 3.1rem;
	line-height: 1.709677419354839
}

@media (max-width:1024px) {
	.title-h2 {
		padding-left: 2rem;
		font-size: 1.7rem;
		line-height: 1.705882352941176
	}
}

.title-h2:before {
	position: absolute;
	bottom: -1rem;
	left: .5rem;
	width: 8rem;
	height: 4rem;
	background-image: url(/images/line.svg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	content: ''
}

@media (max-width:1024px) {
	.title-h2:before {
		width: 4.5rem;
		height: 2.5rem;
		bottom: auto;
		top: 1rem
	}
}