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

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

@font-face {
	font-weight: 500;
	font-style: normal;
	font-family: 'SF UI Display';
	src: local('SF UI Display'), url("../fonts/SFUIDisplay-Medium.woff2") format('woff2');
	font-display: swap
}

@font-face {
	font-weight: 600;
	font-style: normal;
	font-family: 'SF UI Display';
	src: local('SF UI Display'), url("../fonts/SFUIDisplay-Bold.woff2") format('woff2');
	font-display: swap
}

@font-face {
	font-weight: 800;
	font-style: normal;
	font-family: 'SF UI Display';
	src: local('SF UI Display'), url("../fonts/SFUIDisplay-Heavy.woff2") format('woff2');
	font-display: swap
}

html {
	font-size: 10px
}

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

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

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

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

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

body {
	position: relative;
	overflow-x: hidden;
	margin: 0;
	min-width: 320px;
	color: #000;
	font-size: 1.8rem;
	font-family: 'SF UI Display';
	line-height: 1.833333333333333
}

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

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

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: 160rem
}

@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
}

.mb-65 {
	margin-bottom: 6.5rem
}

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

.mt-45 {
	margin-top: 4.5rem
}

@media (max-width:1024px) {
	.mt-45 {
		margin-top: 2rem
	}
}

.w-40 {
	width: 48.5%
}

@media (max-width:1024px) {
	.w-40 {
		width: 100%
	}
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-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: 6rem;
	border-radius: 1.5rem;
	text-decoration: none!important;
	font-weight: 600;
	font-size: 2rem
}

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

.btn-red {
	border: 1px solid #ef2b2e;
	background-color: #ef2b2e;
	color: #fff
}

.btn-red:hover {
	border-color: #012767;
	background-color: #fff;
	color: #000
}

.btn-outline {
	width: 26rem;
	border: 1px solid #b3b5bf;
	color: #012767
}

.btn-outline:hover {
	border-color: #ef2b2e;
	background-color: #ef2b2e;
	color: #fff
}

@media (max-width:1024px) {
	.btn-outline {
		width: 16.5rem;
		height: 4rem
	}
}

.btn-white {
	background-color: #fff;
	color: #000
}

.btn-white:hover {
	background-color: #ef2b2e;
	color: #fff
}

.burger {
	position: relative;
	display: none;
	width: 3rem;
	height: 3rem
}

@media (max-width:1024px) {
	.burger {
		display: block
	}
}

.burger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: .3rem;
	border-radius: 5px;
	background-color: #012767;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease
}

.burger span:nth-child(1) {
	top: 0
}

.burger span:nth-child(2) {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.burger span:nth-child(3) {
	bottom: 0
}

.burger-show span:nth-child(3) {
	display: none
}

.burger-show span:nth-child(2) {
	top: 50%;
	color: #ef2b2e;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.burger-show span:nth-child(1) {
	top: 50%;
	color: #ef2b2e;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.card {
	display: block
}

.card-main {
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 4.5rem 2rem 3rem;
	width: 33.5rem;
	height: 16rem;
	border-radius: 1.5rem;
	background-color: #f7f7f7
}

@media (max-width:1024px) {
	.card-main {
		margin-right: 1.5rem;
		padding: 3rem 1.5rem 2rem;
		width: 22rem;
		height: 10.5rem;
		border-radius: .9rem
	}
}

.card-main:hover {
	background-color: #ef2b2e
}

.card-main:hover .card__time,
.card-main:nth-child(1) .card__time {
	background-color: #012767
}

.card-main .card__logo {
	position: absolute;
	top: -3.5rem;
	left: 2rem;
	width: 7rem;
	height: 7rem;
	border: .7rem solid #fff;
	border-radius: 50%;
	background-color: #012767
}

@media (max-width:1024px) {
	.card-main .card__logo {
		top: -2.2rem;
		left: 1.5rem;
		width: 4.5rem;
		height: 4.5rem;
		border-width: .4rem
	}
}

.card-main .card__logo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover
}

.card-main .card__time {
	position: absolute;
	top: .8rem;
	right: .6rem;
	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: 9.5rem;
	height: 2.5rem;
	border-radius: 2.7rem;
	background-color: #ef2b2e;
	color: #fff;
	font-size: 1.2rem
}

@media (max-width:1024px) {
	.card-main .card__time {
		top: .5rem;
		right: .5rem;
		width: 6.5rem;
		height: 1.7rem;
		border-radius: 1.7rem;
		font-size: .8rem
	}
}

.card-main .card__time img {
	margin-right: .5rem;
	width: 1rem
}

@media (max-width:1024px) {
	.card-main .card__time img {
		margin-right: .2rem;
		width: .7rem
	}
}

.card-main .card__title {
	margin-bottom: 1rem;
	color: #012767;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.24
}

@media (max-width:1024px) {
	.card-main .card__title {
		margin-bottom: .5rem;
		font-size: 1.7rem;
		line-height: 1.176470588235294
	}
}

.card-main .card__text {
	font-size: 1.8rem;
	line-height: 1.166666666666667
}

@media (max-width:1024px) {
	.card-main .card__text {
		font-size: 1.2rem;
		line-height: 1.166666666666667
	}
}

.card__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 6rem;
	margin-bottom: 2.5rem
}

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

.card-item {
	overflow: hidden;
	margin-right: 2rem;
	margin-bottom: 2rem;
	width: 38.5rem;
	border-radius: 1.5rem;
	background-color: #012767
}

@media (max-width:1024px) {
	.card-item {
		margin-right: 0;
		margin-bottom: 1.3rem;
		width: 100%
	}
	.card-item:nth-child(n+4) {
		display: none
	}
}

.card-item:nth-child(n+9) {
	display: none
}

.card-item:nth-child(4n) {
	margin-right: 0
}

.card-item .card__content {
	padding: 1.2rem 1.5rem 2rem
}

@media (max-width:1024px) {
	.card-item .card__content {
		padding: 1rem;
		padding-bottom: 1.5rem
	}
}

.card-item .card__logo {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 50%;
	height: 9rem
}

@media (max-width:1024px) {
	.card-item .card__logo {
		height: 7rem
	}
}

.card-item .card__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.card-item .card__rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 2rem;
	width: 50%;
	height: 9rem;
	background-color: #0b3479;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.166666666666667
}

@media (max-width:1024px) {
	.card-item .card__rating {
		padding-left: 1.5rem;
		height: 7rem;
		font-size: 1.35rem
	}
}

.card-item .card__rating img {
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	width: 14.5rem
}

@media (max-width:1024px) {
	.card-item .card__rating img {
		margin-bottom: 1rem;
		width: 11rem
	}
}

.card-item .card__pay {
	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: 1rem;
	padding: 0 2.5rem;
	height: 6rem;
	border-radius: 1.5rem;
	background-color: #0b3479
}

@media (max-width:1024px) {
	.card-item .card__pay {
		margin-bottom: .5rem;
		padding: 0 2rem;
		height: 4.5rem;
		border-radius: 1.1rem
	}
}

.card-item .card__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.1875
}

@media (max-width:1024px) {
	.card-item .card__item {
		font-size: 1.2rem
	}
}

.card-item .card__item img {
	margin-bottom: .4rem;
	width: 1.6rem
}

@media (max-width:1024px) {
	.card-item .card__item img {
		margin-bottom: .3rem;
		width: 1.2rem
	}
}

.card-item .card__white {
	overflow: hidden;
	margin-bottom: 1rem;
	padding-top: 1rem;
	width: 17rem;
	border-radius: 1.5rem;
	background-color: #fff;
	text-align: center
}

@media (max-width:1024px) {
	.card-item .card__white {
		margin-bottom: .7rem;
		padding-top: .5rem;
		width: 13rem;
		border-radius: 1rem
	}
}

.card-item .card__bold {
	font-weight: 800;
	font-size: 2.2rem;
	line-height: 1.181818181818182
}

@media (max-width:1024px) {
	.card-item .card__bold {
		font-size: 1.7rem;
		line-height: 1.25
	}
}

.card-item .card__bold-red {
	color: #ef2b2e
}

.card-item .card__bold-blue {
	color: #012767
}

.card-item .card__text {
	margin-bottom: 1rem;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.166666666666667
}

@media (max-width:1024px) {
	.card-item .card__text {
		margin-bottom: .5rem;
		font-size: 1.3rem
	}
}

.card-item .card__grey {
	padding: .5rem 0;
	background: rgba(179, 181, 191, .28);
	color: #75767b;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.1875
}

@media (max-width:1024px) {
	.card-item .card__grey {
		font-size: 1.2rem
	}
}

.card-top {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 5rem;
	padding: 2rem;
	border-radius: 1.5rem;
	background-color: #012767
}

@media (max-width:1024px) {
	.card-top {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 3.5rem;
		padding: 1rem;
		padding-bottom: 2.5rem;
		width: 100%
	}
}

.card-top .card__mb {
	display: none
}

@media (max-width:1024px) {
	.card-top .card__mb {
		display: block;
		margin-top: 2.5rem;
		margin-bottom: 1.5rem;
		color: #000;
		font-weight: 700;
		font-size: 1.4rem;
		line-height: 1.642857142857143
	}
}

.card-top .card__blue {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2.5rem;
	padding: 4rem 6rem 3.5rem;
	width: 35.5rem;
	height: 22rem;
	border-radius: 1.5rem;
	background-color: #0d317c
}

@media (max-width:1024px) {
	.card-top .card__blue {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-right: 0;
		padding: 2.5rem 1rem 2rem;
		width: 100%;
		height: 13rem
	}
}

.card-top .card__rating {
	margin-bottom: 2rem;
	width: 10.5rem
}

@media (max-width:1024px) {
	.card-top .card__rating {
		width: 11rem
	}
}

.card-top .card__logo {
	margin-bottom: 1.5rem;
	height: 3.5rem
}

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

.card-top .card__grey {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: .5rem;
	padding: 2rem 6rem 2.5rem;
	width: 35.5rem;
	height: 22rem;
	border-radius: 1.5rem;
	background-color: #f6f6f6
}

@media (max-width:1024px) {
	.card-top .card__grey {
		margin: 0;
		padding: 1.5rem 1rem 1.5rem;
		width: 100%;
		height: 15rem
	}
}

.card-top .card__title {
	margin-bottom: 1rem;
	color: #000;
	text-align: center;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.277777777777778
}

@media (max-width:1024px) {
	.card-top .card__title {
		margin-bottom: .5rem;
		font-size: 1.25rem;
		line-height: 1.333333333333333
	}
}

.card-top .card__promo {
	margin-bottom: 1.5rem;
	color: #012767;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.318181818181818
}

@media (max-width:1024px) {
	.card-top .card__promo {
		margin-bottom: 1rem;
		font-size: 1.5rem;
		line-height: 1.333333333333333
	}
}

.card-top .card__link {
	display: block;
	margin-top: 1.5rem;
	color: #000;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.3125
}

@media (max-width:1024px) {
	.card-top .card__link {
		margin-top: 1rem;
		font-size: 1.1rem
	}
}

.card-top .card__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	overflow: hidden;
	margin-top: 1.5rem;
	width: 100%;
	height: 20rem
}

@media (max-width:1024px) {
	.card-top .card__content {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		margin-top: 5.5rem;
		margin-bottom: 2.5rem;
		height: 25rem
	}
}

.card-top .card__content-open {
	height: auto
}

.card-top .card__item {
	position: relative;
	margin-bottom: 2rem;
	padding-left: 2.5rem;
	min-height: 4rem;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.277777777777778
}

@media (max-width:1024px) {
	.card-top .card__item {
		margin-bottom: 1.5rem;
		padding-right: 0;
		padding-left: 2.5rem;
		min-height: auto;
		font-size: 1.25rem;
		line-height: 1.333333333333333
	}
}

.card-top .card__item:before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.277777777777778
}

@media (max-width:1024px) {
	.card-top .card__item:before {
		font-size: 1.28rem
	}
}

.card-top .card__item-plus:before {
	color: #27ae60;
	content: '+'
}

.card-top .card__item-minus:before {
	color: #eb5757;
	content: '-'
}

.card-top .card__wraps {
	width: 49%
}

@media (max-width:1024px) {
	.card-top .card__wraps {
		width: 100%
	}
}

.card-top .card__more {
	position: absolute;
	bottom: -2.2rem;
	left: 50%;
	width: 4.5rem;
	height: 4.5rem;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: #ef2b2e;
	background-image: url("../images/arrow-white.svg");
	background-position: center;
	background-size: 1.8rem;
	background-repeat: no-repeat;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

@media (max-width:1024px) {
	.card-top .card__more {
		bottom: -1.52rem;
		width: 3.3rem;
		height: 3.3rem;
		background-size: 1.2rem
	}
}

.card-top .card__more-open {
	-webkit-transform: translateX(-50%) rotate(180deg);
	-ms-transform: translateX(-50%) rotate(180deg);
	transform: translateX(-50%) rotate(180deg)
}

.card__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 4rem;
	margin-bottom: 11rem
}

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

.card-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: .5rem;
	padding-left: 2.5rem;
	width: 78.5rem;
	height: 4.5rem;
	border-radius: 1.5rem;
	background-color: #012767;
	color: #fff;
	font-weight: 600;
	font-size: 1.8rem
}

@media (max-width:1024px) {
	.card-link {
		margin-bottom: .3rem;
		padding-left: 1.5rem;
		width: 100%;
		height: 2.8rem;
		border-radius: .9rem;
		font-size: 1.1rem
	}
}

.card-link:before {
	position: absolute;
	right: 2rem;
	width: 1rem;
	height: 1.5rem;
	background-image: url("../images/arrow-right.svg");
	background-size: 100% 100%;
	content: ''
}

@media (max-width:1024px) {
	.card-link:before {
		right: 1rem;
		width: 1rem;
		height: 1rem
	}
}

.card-link:hover {
	background-color: #ef2b2e
}

.card-page .card__logo {
	margin-bottom: 1rem;
	width: 100%;
	height: 9rem
}

@media (max-width:1024px) {
	.card-page .card__logo {
		height: 7rem
	}
}

.card-page .card__link {
	display: block;
	padding-top: 2rem;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.625
}

.content {
	padding-left: 6rem;
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.4
}

@media (max-width:1024px) {
	.content {
		padding-left: 0;
		font-size: 1.2rem;
		line-height: 1.416666666666667
	}
}

.content-title {
	margin-top: 3.5rem;
	padding-left: 6rem
}

@media (max-width:1024px) {
	.content-title {
		margin-top: 1rem;
		padding-left: 0
	}
}

.content p {
	margin: 0;
	margin-bottom: 3rem;
	max-width: 119.5rem
}

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

.content a {
	color: #012767;
	text-decoration: underline
}

.content img {
	margin-top: 5.5rem;
	margin-bottom: 7rem;
	max-width: 148.5rem;
	width: 100%
}

@media (max-width:1024px) {
	.content img {
		margin-top: 1.5rem;
		margin-bottom: 3.5rem
	}
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content strong {
	margin: 0;
	margin-top: 7rem;
	margin-bottom: 4rem;
	color: #000;
	font-weight: 600;
	font-size: 3.6rem;
	line-height: 1.194444444444444
}

@media (max-width:1024px) {
	.content h2,
	.content h3,
	.content h4,
	.content h5,
	.content h6,
	.content strong {
		margin-top: 3.5rem;
		margin-bottom: 1.5rem;
		font-size: 1.8rem;
		line-height: 1.166666666666667
	}
}

.content__quote {
	margin-bottom: 2.5rem;
	padding-left: 2rem;
	border-left: 4px solid #012767;
	color: #000;
	font-weight: 600;
	font-size: 2.2rem;
	line-height: 1.636363636363636
}

@media (max-width:1024px) {
	.content__quote {
		padding-left: 1.5rem;
		font-size: 1.6rem;
		line-height: 1.625
	}
}

.content__img {
	width: 100%
}

.content__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
	color: #000!important;
	text-decoration: none!important;
	font-weight: 600
}

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

.content__link span {
	display: block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 2.5rem;
	width: 5rem;
	height: 5rem;
	border-radius: 1.6rem;
	background-color: #012767;
	background-image: url("../images/arrow-right.svg");
	background-position: center;
	background-size: 1.8rem;
	background-repeat: no-repeat
}

@media (max-width:1024px) {
	.content__link span {
		display: none
	}
}

.content__italic {
	margin-top: 3rem;
	margin-bottom: 6rem;
	text-align: center;
	font-style: italic;
	font-size: 1.6rem;
	line-height: 1.5625
}

@media (max-width:1024px) {
	.content__italic {
		margin: 2rem 0;
		font-size: 1rem;
		line-height: 1.6
	}
}

.content__join {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 2.5rem;
	padding: 2rem;
	width: 95%;
	height: 7rem;
	border-radius: 2.3rem;
	background-color: #b3b5bf;
	color: #000;
	font-weight: 700;
	font-size: 1.6rem
}

@media (max-width:1024px) {
	.content__join {
		margin-top: 1.5rem;
		padding: .5rem 0 .5rem .8rem;
		width: 100%;
		height: 3rem;
		border-radius: 1rem;
		font-size: 1rem
	}
}

.content__join img {
	margin-right: 2rem;
	height: 3.5rem
}

@media (max-width:1024px) {
	.content__join img {
		margin-right: 1rem;
		height: 2rem
	}
}

.content__join:before {
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 1.5rem;
	background-color: #012767;
	background-image: url("../images/arrow-right.svg");
	background-position: center;
	background-size: 1.2rem;
	background-repeat: no-repeat;
	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) {
	.content__join:before {
		right: 0;
		width: 3rem;
		height: 3rem;
		border-radius: 1rem;
		background-size: 1rem
	}
}

.content__join:hover {
	color: #ef2b2e
}

.content__join:hover:before {
	background-color: #ef2b2e
}

.facts {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 4rem;
	margin-bottom: 9rem;
	padding: 3rem 3.5rem;
	height: 20rem;
	border-radius: 1.5rem;
	background-color: #012767;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.3125
}

@media (max-width:1024px) {
	.facts {
		margin-top: 2.5rem;
		margin-bottom: 6.5rem;
		padding: 2.5rem;
		height: 26rem;
		font-size: 1.1rem;
		line-height: 1.272727272727273
	}
}

.facts-open {
	height: auto
}

.facts__item {
	margin-bottom: 2.5rem;
	width: 50%
}

@media (max-width:1024px) {
	.facts__item {
		width: 100%
	}
}

.facts__item span {
	display: block;
	font-weight: 600
}

.facts__item a {
	color: #ef2b2e
}

.facts__more {
	position: absolute;
	bottom: -2.2rem;
	left: 50%;
	width: 4.5rem;
	height: 4.5rem;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: #ef2b2e;
	background-image: url("../images/arrow-white.svg");
	background-position: center;
	background-size: 1.8rem;
	background-repeat: no-repeat;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

@media (max-width:1024px) {
	.facts__more {
		bottom: -1.52rem;
		width: 3.3rem;
		height: 3.3rem;
		background-size: 1.2rem
	}
}

.facts__more-open {
	-webkit-transform: translateX(-50%) rotate(180deg);
	-ms-transform: translateX(-50%) rotate(180deg);
	transform: translateX(-50%) rotate(180deg)
}

.faq {
	margin-top: 6rem;
	margin-bottom: 11.5rem;
	padding-top: 6rem;
	padding-right: 13rem;
	padding-bottom: 6rem;
	padding-left: 13rem;
	border-radius: 1.5rem;
	background-color: #012767
}

@media (max-width:1024px) {
	.faq {
		margin-top: 3.5rem;
		margin-bottom: 4.5rem;
		padding: 0 15px;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
		border-radius: 0
	}
}

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

@media (max-width:1024px) {
	.faq__wrap {
		display: block
	}
}

.faq__title {
	margin-bottom: 2rem;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 4.7rem;
	line-height: 1.191489361702128
}

@media (max-width:1024px) {
	.faq__title {
		margin-bottom: 1.3rem;
		font-size: 2.3rem;
		line-height: 1.173913043478261
	}
}

.faq__text {
	margin-bottom: 6rem;
	color: #fff;
	text-align: center;
	font-size: 2rem;
	line-height: 1.2
}

@media (max-width:1024px) {
	.faq__text {
		margin-bottom: 2.5rem;
		font-size: 1.2rem;
		line-height: 1.166666666666667
	}
}

.faq__block {
	width: calc(50% - 3rem)
}

@media (max-width:1024px) {
	.faq__block {
		width: 100%
	}
}

.faq__item {
	overflow: hidden;
	margin-bottom: 1rem;
	border-radius: 1.5rem;
	background-color: #981010
}

@media (max-width:1024px) {
	.faq__item {
		margin-bottom: .5rem
	}
}

.faq__head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 2.5rem;
	height: 4.5rem;
	border-radius: 1.5rem;
	background-color: #0d317c;
	color: #fff;
	font-weight: 600;
	font-size: 1.8rem;
	cursor: pointer
}

@media (max-width:1024px) {
	.faq__head {
		padding-left: 1.5rem;
		height: 3rem;
		border-radius: .9rem;
		font-size: 1.1rem
	}
}

.faq__head:before {
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url("../images/arrow-white.svg");
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	content: '';
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width:1024px) {
	.faq__head:before {
		right: 1rem;
		width: 1rem;
		height: 1rem
	}
}

.faq__head-open {
	background-color: #ef2b2e
}

.faq__head-open:before {
	-webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg)
}

.faq__content {
	display: none;
	padding: 3rem;
	background-color: #981010;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.166666666666667
}

@media (max-width:1024px) {
	.faq__content {
		padding: 1rem 2rem;
		font-size: 1.1rem;
		line-height: 1.181818181818182
	}
}

.footer {
	position: relative;
	padding-top: 4.5rem;
	background-color: #012767
}

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

.footer__block {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 50%
}

.footer__logo {
    display: block;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    height: auto;
    width: 20rem;
}

@media (max-width:1024px) {
.footer__logo {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    height: auto;
    width: 10rem;
}
}



.footer__text {
	margin-bottom: 4.5rem;
	color: #b3b5bf;
	font-size: 1.8rem;
	line-height: 1.166666666666667
}

@media (max-width:1024px) {
	.footer__text {
		margin-bottom: 3.5rem;
		font-size: 1rem;
		line-height: 1.2
	}
}

.footer__img {
	margin-right: 6.5rem;
	max-height: 4.5rem
}

@media (max-width:1024px) {
	.footer__img {
		margin-right: 0;
		margin-bottom: 2.5rem;
		max-height: 3.5rem
	}
}

.footer__title {
	margin-bottom: 3rem;
	color: #fff;
	font-weight: 600;
	font-size: 1.9rem;
	line-height: 1.157894736842105
}

@media (max-width:1024px) {
	.footer__title {
		margin-bottom: 1rem;
		font-size: 1.15rem;
		line-height: 1.272727272727273
	}
}

.footer__link {
	display: block;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.875
}

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

.footer__item {
	margin-left: 6rem
}

@media (max-width:1024px) {
	.footer__item {
		margin: 0;
		margin-bottom: 3rem;
		width: 70%
	}
}

.footer__copy {
	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-top: 3rem;
	height: 10rem;
	background: #022258;
	color: #b3b5bf;
	font-size: 1.8rem;
	line-height: 1.166666666666667
}

@media (max-width:1024px) {
	.footer__copy {
		margin-top: 2.5rem;
		height: 5rem;
		font-size: 1rem
	}
}

.header {
	padding-top: 1rem
}

@media (max-width:1024px) {
	.header {
		padding-top: 0
	}
}

.header .container {
	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;
	padding: 0 4rem;
	height: 9.5rem;
	border-radius: 1.5rem;
	background-color: #f7f7f7
}

@media (max-width:1024px) {
	.header .container {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 0 15px;
		height: 7.5rem
	}
}

.header__logo {
    height: auto;
    width: 20rem;
}

@media (max-width:1024px) {
.header__logo {
    height: auto;
  width: 14rem;
}
}


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

@media (max-width:1024px) {
	.header__menu {
		position: absolute;
		top: 7.5rem;
		right: 0;
		left: 0;
		z-index: 100;
		display: block;
		visibility: hidden;
		background-color: #012767;
		opacity: 0;
		-webkit-transition: all .2s ease;
		-o-transition: all .2s ease;
		transition: all .2s ease
	}
}

@media (max-width:1024px) {
	.header__menu.menu-show {
		visibility: visible;
		opacity: 1
	}
}

.header__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 4.5rem;
	padding: 1.3rem 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0);
	color: #75767b;
	font-size: 2rem;
	line-height: 1.2
}

@media (max-width:1024px) {
	.header__link {
		margin-left: 0;
		padding: 0;
		padding-left: 15px;
		height: 6.3rem;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		color: #fff;
		font-size: 1.45rem
	}
}

.header__link svg {
	margin-right: 1.3rem;
	width: 2rem;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	fill: #b3b5bf
}

@media (max-width:1024px) {
	.header__link svg {
		margin-right: 1rem;
		width: 1.6rem;
		fill: #fff
	}
}

.header__link-active,
.header__link:hover {
	border-color: #ef2b2e;
	color: #000
}

@media (max-width:1024px) {
	.header__link-active,
	.header__link:hover {
		border-color: rgba(255, 255, 255, .1);
		color: #ef2b2e
	}
}

.header__link-active svg,
.header__link:hover svg {
	fill: #012767
}

@media (max-width:1024px) {
	.header__link-active svg,
	.header__link:hover svg {
		fill: #ef2b2e
	}
}

.info {
	display: -ms-grid;
	display: grid;
	margin-bottom: 9rem;
	padding: 4rem 4rem 2rem;
	border-radius: 2.3rem;
	background-color: #f6f6f6;
	-ms-grid-columns: auto auto auto;
	grid-template-columns: auto auto auto
}

@media (max-width:1024px) {
	.info {
		display: block;
		margin-bottom: 4.5rem;
		padding: 3rem 1.5rem 1.5rem
	}
}

.info__row {
	margin-bottom: 1.5rem;
	color: #75767b;
	font-size: 1.8rem;
	line-height: .944444444444444
}

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

.info__row span {
	color: #000;
	font-weight: 600
}

.info__item {
	position: relative;
	margin-bottom: 2rem;
	padding-right: 2rem;
	padding-left: 3rem;
	font-size: 1.8rem;
	line-height: 1.277777777777778
}

@media (max-width:1024px) {
	.info__item {
		margin-bottom: 1.5rem;
		padding-right: 0;
		padding-left: 2rem;
		width: 100%;
		font-size: 1.3rem;
		line-height: 1.307692307692308
	}
}

.info__item:before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.277777777777778
}

.info__item-plus:before {
	color: #27ae60;
	content: '+'
}

.info__item-minus:before {
	color: #eb5757;
	content: '-'
}

.info__items {
	margin-top: 5rem;
	width: 50%
}

@media (max-width:1024px) {
	.info__items {
		margin-top: 2rem;
		width: 100%
	}
}

.info__rating {
	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: .4rem;
	padding: 0 3rem;
	height: 3.8rem;
	border-radius: 1.4rem;
	background-color: #012767;
	color: #fff;
	white-space: nowrap;
	font-weight: 600;
	font-size: 1.6rem
}

@media (max-width:1024px) {
	.info__rating {
		margin-bottom: .2rem;
		padding-right: 1rem;
		padding-left: 1.5rem;
		height: 2.4rem;
		border-radius: .7rem;
		font-size: .9rem
	}
}

.info__rating:first-child {
	margin-top: 1.5rem
}

@media (max-width:1024px) {
	.info__rating:first-child {
		margin-top: 2.5rem
	}
}

.info__rating .flex {
	width: auto
}

.info__total {
	margin-left: 3rem
}

@media (max-width:1024px) {
	.info__total {
		margin-left: 1.5rem
	}
}

.info__star {
	margin-left: .5rem;
	width: 1.7rem
}

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

.item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1.5rem;
	margin-bottom: 8.5rem;
	padding-top: 6rem;
	padding-bottom: 4rem;
	border-radius: 1.5rem;
	background-image: url("../images/review.png");
	background-position: center;
	background-size: cover;
	color: #fff
}

@media (max-width:1024px) {
	.item {
		margin-top: 1rem;
		margin-right: -15px;
		margin-bottom: 6.5rem;
		margin-left: -15px;
		padding-top: 3rem;
		padding-right: 15px;
		padding-bottom: 1.5rem;
		padding-left: 15px;
		border-radius: 0
	}
}

.item__logo {
	margin-bottom: 3.5rem;
	height: 5rem
}

@media (max-width:1024px) {
	.item__logo {
		margin-bottom: 2rem;
		height: 2rem
	}
}

.item__logo img {
	height: 100%
}

.item__promo {
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 700;
	font-size: 6rem;
	line-height: 1.2
}

@media (max-width:1024px) {
	.item__promo {
		margin-bottom: 2rem;
		font-size: 2.4rem;
		line-height: 1.208333333333333
	}
}

.item__title {
	margin-right: 2rem;
	font-weight: 800;
	font-size: 2.4rem;
	line-height: 1.666666666666667
}

@media (max-width:1024px) {
	.item__title {
		margin-bottom: 1rem;
		width: 100%;
		text-align: center;
		font-size: 1.2rem;
		line-height: 1.75
	}
}

.item__star {
	margin-right: .8rem;
	width: 3rem
}

@media (max-width:1024px) {
	.item__star {
		margin: 0 .3rem;
		width: 1.8rem
	}
}

.item__link {
	display: block;
	margin-top: 2rem;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.625
}

@media (max-width:1024px) {
	.item__link {
		margin-top: 1.5rem;
		font-size: 1.2rem
	}
}

.item .flex {
	width: auto
}

.item .btn {
	margin-top: 4.5rem;
	width: 35rem
}

@media (max-width:1024px) {
	.item .btn {
		margin-top: 2rem;
		width: 27rem
	}
}

.main {
	margin-top: 1rem
}

.main .container {
	padding-top: 7rem;
	padding-bottom: 14rem;
	border-radius: 1.5rem;
	background-image: url("../images/main.png");
	background-position: center;
	background-size: cover
}

@media (max-width:1024px) {
	.main .container {
		padding-top: 3rem;
		padding-bottom: 3rem;
		border-radius: 0
	}
}

.main .container-page {
	margin-bottom: 9rem;
	padding-bottom: 7rem
}

@media (max-width:1024px) {
	.main .container-page {
		margin-bottom: 3rem;
		padding-bottom: 3.5rem
	}
}

.main p {
	margin: 0
}

.main__title {
	margin: 0 auto;
	margin-bottom: 4rem;
	width: 70%;
	color: #000000;
	text-align: center;
	font-weight: 600;
	font-size: 7.2rem;
	line-height: 1
}

@media (max-width:1024px) {
	.main__title {
		margin-bottom: 1.5rem;
		width: 100%;
		font-size: 2.4rem
	}
}

.main__title span {
	font-weight: 400;
	font-size: 5.8rem;
	line-height: 1
}

@media (max-width:1024px) {
	.main__title span {
		font-size: 1.9rem
	}
}

.main__text {
	margin: 0 auto;
	width: 95rem;
	color: #000000;
	text-align: center;
	font-size: 2rem;
	line-height: 1.2
}

@media (max-width:1024px) {
	.main__text {
		padding: 0 1rem;
		width: 100%;
		font-size: 1.1rem;
		line-height: 1.214285714285714
	}
}

.main__cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: -3.5rem;
	margin-bottom: 4.5rem;
	padding: 0 8.5rem
}

@media (max-width:1024px) {
	.main__cards {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		overflow-x: scroll;
		margin-top: 0;
		margin-bottom: 1rem;
		padding: 0;
		padding-top: 3rem;
		padding-bottom: 1rem
	}
}

.review {
	margin-top: 4rem;
	margin-bottom: 3rem;
	padding: 2.5rem 4.5rem 4rem;
	border-radius: 2.3rem;
	background-color: #f6f6f6
}

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

.review__photo {
	margin-right: 2.5rem;
	width: 6rem;
	height: 6rem
}

@media (max-width:1024px) {
	.review__photo {
		margin-right: 1.5rem;
		width: 5rem;
		height: 5rem
	}
}

.review__title {
	color: #012767;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.208333333333333
}

@media (max-width:1024px) {
	.review__title {
		font-size: 1.8rem
	}
}

.review__content {
	margin-top: 2rem;
	padding: 0;
	color: #75767b;
	font-size: 1.8rem;
	line-height: 1.388888888888889
}

@media (max-width:1024px) {
	.review__content {
		margin-top: 1rem;
		font-size: 1.2rem;
		line-height: 1.333333333333333
	}
}

.scroll {
	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: 9rem;
	padding: 1.2rem 1.5rem;
	border-radius: 1.5rem;
	background-color: #f7f7f7
}

@media (max-width:1024px) {
	.scroll {
		margin-right: -15px;
		margin-bottom: 3.5rem;
		margin-left: -15px;
		padding: .5rem 2rem;
		border-radius: 0
	}
}

.scroll__item {
	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: 38rem;
	height: 6rem;
	border-radius: 1.5rem;
	background-color: #fff;
	font-size: 2rem;
	line-height: 1.2
}

@media (max-width:1024px) {
	.scroll__item {
		padding: 0 .7rem;
		width: auto;
		height: 2.5rem;
		border-radius: .7rem;
		font-size: 1rem
	}
}

.scroll__item:hover {
	background-color: #012767;
	color: #fff;
	font-weight: 600
}

.section-links {
	padding-top: 6rem
}

@media (max-width:1024px) {
	.section-links {
		padding-top: 3rem
	}
}

.section-content {
	padding-bottom: 4.5rem
}

@media (max-width:1024px) {
	.section-content {
		padding-bottom: 1.5rem
	}
}

.section-one {
	padding-bottom: 5.5rem
}

@media (max-width:1024px) {
	.section-one {
		padding-bottom: 2rem
	}
}

.section-two {
	padding-bottom: 6.5rem
}

@media (max-width:1024px) {
	.section-two {
		padding-bottom: 4.5rem
	}
}

.section-info {
	padding-bottom: 9.5rem
}

@media (max-width:1024px) {
	.section-info {
		padding-bottom: 4.5rem
	}
}

.table {
	margin-bottom: 4rem;
	counter-reset: table
}

@media (max-width:1024px) {
	.table {
		margin-right: -15px;
		margin-bottom: 2.5rem;
		margin-left: -15px
	}
}

@media (max-width:1024px) {
	.table-two .table__row {
		height: 14rem
	}
	.table-two .table__row .btn {
		margin-top: 0
	}
}

.table__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	margin-top: 4.5rem;
	height: 6.5rem;
	background-color: #012767;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.8rem
}

@media (max-width:1024px) {
	.table__head {
		margin-top: 2rem;
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 15px;
		padding-left: 15px;
		height: 4.5rem;
		font-size: 1.2rem
	}
}

.table__item {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.table__item:nth-child(1) {
	width: 8rem
}

@media (max-width:1024px) {
	.table__item:nth-child(1) {
		width: 2rem
	}
}

.table__item:nth-child(2) {
	width: 21rem
}

@media (max-width:1024px) {
	.table__item:nth-child(2) {
		width: 18rem
	}
}

.table__item:nth-child(3) {
	width: 30rem
}

@media (max-width:1024px) {
	.table__item:nth-child(3) {
		display: none
	}
}

.table__item:nth-child(4) {
	width: 21rem
}

@media (max-width:1024px) {
	.table__item:nth-child(4) {
		width: 8rem
	}
}

.table__item:nth-child(5) {
	width: 35rem
}

@media (max-width:1024px) {
	.table__item:nth-child(5) {
		display: none
	}
}

.table__item:nth-child(6) {
	width: 31rem
}

@media (max-width:1024px) {
	.table__item:nth-child(6) {
		display: none
	}
}

.table__item-two:nth-child(3) {
	width: 26rem
}

.table__item-two:nth-child(4) {
	width: 24rem
}

@media (max-width:1024px) {
	.table__item-two:nth-child(4) {
		display: none
	}
}

.table__item-two:nth-child(5) {
	width: 16rem
}

.table__item-two:nth-child(6) {
	width: 19rem
}

@media (max-width:1024px) {
	.table__item-two:nth-child(6) {
		display: block;
		width: 8rem
	}
}

.table__item-two:nth-child(7) {
	width: 27rem
}

.table__item-th:nth-child(3) {
	width: 47rem
}

.table__item-th:nth-child(4) {
	width: 32rem
}

@media (max-width:1024px) {
	.table__item-th:nth-child(4) {
		display: block;
		width: 8rem
	}
}

.table__item-th:nth-child(5) {
	width: 39rem
}

.table__border {
	width: 100%;
	height: .8rem;
	background: -webkit-gradient(linear, left top, right top, from(#f33a45), color-stop(30.52%, #f3b43a), color-stop(61.77%, #c9cd42), to(#4f69f0));
	background: -o-linear-gradient(left, #f33a45 0, #f3b43a 30.52%, #c9cd42 61.77%, #4f69f0 100%);
	background: linear-gradient(90deg, #f33a45 0, #f3b43a 30.52%, #c9cd42 61.77%, #4f69f0 100%)
}

@media (max-width:1024px) {
	.table__border {
		margin: 0 -15px;
		padding: 0 15px;
		width: calc(100% + 30px)
	}
}

.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;
	width: 8rem;
	height: 12rem;
	color: #fff;
	font-size: 2.4rem
}

@media (max-width:1024px) {
	.table__num {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
		width: 4.5rem;
		height: 7.5rem;
		font-size: 1.8rem
	}
}

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

.table__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: -1px;
	height: 12rem;
	border: 1px solid #e0e0e0
}

@media (max-width:1024px) {
	.table__row {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 1.3rem;
		height: 17rem
	}
	.table__row .btn {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
		margin-top: 1.5rem
	}
}

.table__row:nth-child(4n+1) .table__num {
	background-color: $green
}

@media (max-width:1024px) {
	.table__row:nth-child(4n+1) {
		border-color: $green
	}
}

.table__row:nth-child(4n+2) .table__num {
	background-color: $yellow
}

@media (max-width:1024px) {
	.table__row:nth-child(4n+2) {
		border-color: $yellow
	}
}

.table__row:nth-child(4n+3) .table__num {
	background-color: #012767
}

@media (max-width:1024px) {
	.table__row:nth-child(4n+3) {
		border-color: #012767
	}
}

.table__row:nth-child(4n+4) .table__num {
	background-color: #ef2b2e
}

@media (max-width:1024px) {
	.table__row:nth-child(4n+4) {
		border-color: #ef2b2e
	}
}

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

@media (max-width:1024px) {
	.table__row:nth-child(n+4) {
		display: none
	}
}

@media (max-width:1024px) {
	.table__row-th {
		height: 14rem
	}
	.table__row-th .btn {
		margin: 0 auto;
		margin-top: 0;
		width: 29rem
	}
}

.table__row-th .table__logo {
	width: 28rem
}

@media (max-width:1024px) {
	.table__row-th .table__logo {
		width: 11.5rem;
		height: 7.5rem
	}
}

.table__row-th .table__name {
	width: 33rem
}

.table__row-th .table__soft {
	margin-right: 3rem;
	width: 46rem
}

@media (max-width:1024px) {
	.table__row-th .table__soft {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 0;
		padding: 0 .5rem;
		width: 15.5rem;
		height: 7.5rem;
		border-bottom: 1px solid #e0e0e0;
		font-size: 1.6rem;
		line-height: 1.375
	}
}

.table__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	width: 21rem;
	height: 100%
}

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

.table__logo img {
	min-width: 100%;
	min-height: 100%;
	max-width: none
}

.table__bonus {
	width: 30rem;
	text-align: center
}

@media (max-width:1024px) {
	.table__bonus {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		width: 16rem
	}
}

.table__blue {
	color: #012767;
	font-weight: 700;
	font-size: 3.1rem;
	line-height: 1.387096774193548
}

@media (max-width:1024px) {
	.table__blue {
		font-size: 2.4rem;
		line-height: 1.333333333333333
	}
}

.table__green {
	color: $green;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.428571428571429
}

@media (max-width:1024px) {
	.table__green {
		font-size: 1.1rem;
		line-height: 1.363636363636364
	}
}

.table__review {
	width: 21rem;
	color: #012767;
	text-align: center;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.428571428571429
}

@media (max-width:1024px) {
	.table__review {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-top: 1.5rem;
		width: 11rem;
		height: 7.5rem;
		font-size: 1rem;
		line-height: 1.3
	}
}

.table__review img {
	margin: 1.2rem auto;
	width: 10.5rem
}

@media (max-width:1024px) {
	.table__review img {
		margin: .8rem auto;
		width: 7.5rem
	}
}

.table__text {
	color: $dark;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.357142857142857
}

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

.table__stroke {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 2
}

.table__stroke img {
	margin-right: 1rem;
	width: 1.5rem
}

.table__spec {
	margin-right: 3rem;
	padding-left: 7.5rem;
	width: 35rem
}

@media (max-width:1024px) {
	.table__spec {
		display: none
	}
}

.table__name {
	padding: 0 3.5rem;
	width: 26rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.388888888888889
}

@media (max-width:1024px) {
	.table__name {
		display: none
	}
}

.table__soft {
	width: 24rem;
	color: $green;
	text-align: center;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.388888888888889
}

@media (max-width:1024px) {
	.table__soft {
		display: none
	}
}

.table__dep {
	width: 16rem;
	color: $yellow;
	text-align: center;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.388888888888889
}

@media (max-width:1024px) {
	.table__dep {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		padding-top: 1rem
	}
}

.table__bn {
	margin-right: 4rem;
	width: 19rem;
	color: #ef2b2e;
	text-align: center;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.388888888888889
}

@media (max-width:1024px) {
	.table__bn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 0;
		width: 11rem;
		height: 7.5rem;
		font-size: 1.6rem
	}
}

.title {
	position: relative;
	margin: 0
}

.title-h2 {
	padding-left: 6rem;
	font-weight: 600;
	font-size: 4.7rem;
	line-height: 1.191489361702128
}

@media (max-width:1024px) {
	.title-h2 {
		padding-left: 3rem;
		font-size: 2.3rem;
		line-height: 1.217391304347826
	}
}

.title-h2:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 4rem;
	border-top: .5rem solid #ef2b2e;
	content: '';
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width:1024px) {
	.title-h2:before {
		top: 1.2rem;
		width: 2rem;
		border-width: .25rem;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.faq__head:hover {
	background-color: #981010;
}

.card-top .card__link:hover {
	color: #ef2b2e;
}

.content h2 {
	color: #012767;
}

.card-page .card__link:hover {
	color: #ef2b2e;
}

.main .container:hover {
	background-size: 150% auto;
}

.main .container {
	background-size: 145% auto;
	transition: all .3s ease;
}

@media (max-width: 1024px) {
	.main .container {
		background-size: cover;
	}
	.main .container:hover {
		background-size: cover;
	}
}
.clearfix::after{content:"";display:table;clear:both}
