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

@font-face {
	font-family: 'TT Norms';
	font-style: normal;
	font-weight: 500;
	src: local('TT Norms'), url(../fonts/TTNorms-Medium.woff2) format('woff2')
}

@font-face {
	font-family: 'TT Norms';
	font-style: italic;
	font-weight: 500;
	src: local('TT Norms'), url(../fonts/TTNorms-MediumItalic.woff2) format('woff2')
}

@font-face {
	font-family: 'TT Norms';
	font-style: normal;
	font-weight: 600;
	src: local('TT Norms'), url(../fonts/TTNorms-Bold.woff2) format('woff2')
}

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

@font-face {
	font-family: 'TT Norms';
	font-style: normal;
	font-weight: 900;
	src: local('TT Norms'), url(../fonts/TTNorms-ExtraBold.woff2) format('woff2')
}

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

body,
html {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility!important
}

html {
	font-size: 10px
}

body {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	background-color: #191919;
	color: #fff;
	font-family: TT Norms
}

a,
button {
	text-decoration: none;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease
}

a:hover,
button:hover {
	text-decoration: none
}

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

.container {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	width: 160rem
}

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

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

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

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

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

.header {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 2rem 0;
	padding-top: 0;
	height: 11rem;
	background-color: #1c1c1c
}

.header__logo {
	display: block;
	width: 14rem;
	height: 7.5rem;
	background-image: url(/images/dest/logo.png);
	background-size: 100% auto;
	background-repeat: no-repeat
}

.header__menu {
	position: absolute;
	top: 100%;
	right: 0;
	right: 4.5rem;
	z-index: 100;
	visibility: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1.5rem;
	padding-top: 6rem;
	width: 35rem;
	background-color: #1c1c1c;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.header__menu.menu-show {
	visibility: visible;
	opacity: 1
}

.header__link {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 1px;
	border-radius: 5px
}

.header__link span {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 4rem;
	height: 4.5rem;
	border-radius: 5px;
	background-color: #1c1c1c;
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem
}

.header__link:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	display: none;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

.header__link:after {
	position: absolute;
	top: 50%;
	right: -.5rem;
	z-index: 2;
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 5px;
	background-color: #8F430A;
	content: '';
	-webkit-transform: rotate(45deg) translate(0, -50%);
	-ms-transform: rotate(45deg) translate(0, -50%);
	transform: rotate(45deg) translate(0, -50%)
}

.header__link:hover:after,
.header__link:hover:before {
	display: block
}

.header .container {
	position: relative
}

.footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1rem;
	height: 10rem;
	background-color: #1c1c1c
}

.footer__logo {
	display: block;
	width: 10.5rem;
	height: 5.5rem;
	background-image: url(/images/dest/logo.png);
	background-size: 100% auto;
	background-repeat: no-repeat
}

.footer__link {
	padding: 0 3rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.4rem
}

.footer__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	font-size: 1.4rem
}

.border-right {
	margin-right: 5rem;
	padding-right: 3rem;
	height: 7.5rem;
	border-right: 1px solid #383838
}

.border-left {
	margin-left: 5rem;
	height: 7.5rem;
	border-left: 1px solid #383838
}

.bg {
	overflow-x: hidden;
	max-width: 100%;
	background-image: url(../images/dest/background.png)
}

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

.title-h1 {
	font-weight: 600;
	font-size: 2rem
}

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

.pb-50 {
	padding-bottom: 5rem
}

.card {
	position: relative;
	display: block;
	background-position: center;
	background-size: cover
}

.card__photo {
	background-position: center;
	background-size: cover
}

.card-top {
	position: relative;
	margin: 0 1.3rem;
	padding-top: 2rem
}

.card-top .card__tre {
	position: absolute;
	top: -4.5rem;
	right: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 6.5rem
}

.card-top .card__tr {
	margin-left: 2.3rem;
	width: 3rem;
	height: 3rem;
	border-radius: 5px;
	background-color: #8F430A;
	content: '';
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.card-top .card__photo {
	width: 7.5rem;
	height: 7.5rem;
	border-radius: 10px
}

.card-top .card__title {
	position: absolute;
	top: 100%;
	left: 50%;
	display: none;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.card-top .card__title span {
	position: relative;
	z-index: 1;
	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: 17rem;
	height: 5rem;
	border-radius: 5px;
	background-color: #1c1c1c;
	color: #fff;
	font-weight: 600;
	font-size: 1.4rem
}

.card-top .card__title:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

@media (min-width:1000px) {

.card-top:hover {
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px)
}

.card-top:hover .card__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.card-top:hover .card__tre {
	display: block
}}

.card-best {
	margin-bottom: 1rem;
	width: 100%;
	border-radius: 5px
}

.card-best .card__photo {
	height: 12.5rem;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
    background-size: 80%;
    background-repeat: no-repeat;
    background-color: #fff;
}

.card-best .card__title {
	position: relative
}

.card-best .card__title span {
	position: relative;
	z-index: 1;
	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;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 5.5rem;
	border: 1px solid #474747;
	border-top: 0;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: #161616;
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem
}

.card-best .card__title:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	display: none;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

.card-best:hover span {
	border-color: transparent
}

.card-best:hover .card__title:before {
	display: block
}

.card-cas {
	overflow: hidden;
	margin-bottom: 1rem;
	padding: 1.5px;
	border-radius: 5px;
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem
}

.card-cas>div {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1rem 1rem 1rem 1rem;
	border: 1px solid #474747;
	border-radius: 5px;
	background-color: #161616
}

.card-cas .card__photo {
	margin-right: 1.5rem;
	width: 10.5rem;
	height: 6rem
}

.card-cas .card__title {
	margin-top: 1rem
}

.card-cas:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	display: none;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

.card-cas:after {
	position: absolute;
	top: 50%;
	right: -.5rem;
	z-index: 2;
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 5px;
	background-color: #8F430A;
	content: '';
	-webkit-transform: rotate(45deg) translate(0, -50%);
	-ms-transform: rotate(45deg) translate(0, -50%);
	transform: rotate(45deg) translate(0, -50%)
}

.card-cas:hover>div {
	border-color: transparent
}

.card-cas:hover:after,
.card-cas:hover:before {
	display: block
}

.card-review {
	margin: 0 1rem;
	margin-bottom: 1.5rem;
	width: calc(25% - 2rem);
	color: #fff
}

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

.card-review .card__photo {
	width: 100%;
	height: 16.5rem;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    background-position: center;
     background-size: 80%;
    background-repeat: no-repeat;
    background-color: #fff;
}

.card-review .card__title {
	font-weight: 600;
	font-size: 1.4rem
}

.card-review .card__content {
	position: relative
}

.card-review .card__content>div {
	position: relative;
	z-index: 1;
	padding: 2rem 1.5rem;
	border: 1px solid #474747;
	border-top: 0;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: #161616
}

.card-review .card__content:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	display: none;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

.card-review .btn {
	width: 12rem;
	font-size: 1.4rem
}

.card-review:hover .card__content>div {
	border-color: transparent
}

.card-review:hover .card__content:before {
	display: block
}

.card-review:hover .btn {
	background-color: #fff;
	color: #000
}

.card-bonus {
	margin: 0 1rem;
	margin-bottom: 1.5rem;
	width: calc(25% - 2rem);
	color: #fff
}

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

.card-bonus .card__photo {
	width: 100%;
	height: 16.5rem;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
    background-position: center;
      background-size: 80%;
    background-color: #fff;
    background-repeat: no-repeat;
}

.card-bonus .card__title {
	margin-bottom: .5rem;
	font-weight: 500;
	font-size: 1.4rem
}

.card-bonus .card__content {
	position: relative
}

.card-bonus .card__content>div {
	position: relative;
	z-index: 1;
	padding: 1.5rem 1.5rem;
	border: 1px solid #474747;
	border-top: 0;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: #161616
}

.card-bonus .card__content:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	display: none;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

.card-bonus .card__text {
	margin-bottom: 1rem;
	color: #bababa;
	font-weight: 400;
	font-size: 1.2rem
}

.card-bonus .card__info {
	color: #bababa;
	font-weight: 500;
	font-size: 1.2rem
}

.card-bonus .btn {
	width: 15rem
}

.card-bonus:hover .card__content>div {
	border-color: transparent
}

.card-bonus:hover .card__content:before {
	display: block
}

.card-bonus:hover .btn {
	background-color: #fff;
	color: #000
}

.card-news {
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1.6rem
}

.card-news>div {
	position: relative;
	z-index: 1;
	padding: 1.5rem 1.5rem;
	border: 1px solid #474747;
	border-radius: 5px;
	background-color: #161616
}

.card-news:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	display: none;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

.card-news .card__date {
	margin-top: 1rem;
	font-size: 1.4rem;
	opacity: .8
}

.card-news:hover:before {
	display: block
}

.mt-50 {
	margin-top: 5rem
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.mx-n1 {
	margin-right: -1rem;
	margin-left: -1rem
}

.pb-20 {
	padding-bottom: 2rem
}

.pb-35 {
	padding-bottom: 3.5rem
}

.mt-15 {
	margin-top: 1.5rem
}

.content {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.714285714285714
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.faq__head{
	margin-top: 2rem;
	margin-bottom: 2rem;
	color: #F2700D;
	font-weight: bold;
	
	font-size: 2rem
}

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

.mt-35 {
	margin-top: 3.5rem
}

.mr-50 {
	margin-right: 5rem
}

.mb-25 {
	margin-bottom: 2.5rem
}

.pr-25 {
	padding-right: 2.5rem
}

.mt-10 {
	margin-top: 1rem
}

.mb-20 {
	margin-bottom: 2rem
}

.mb-10 {
	margin-bottom: 1rem
}

.table__head {
	color: #8c8c8c;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.2rem
}

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

.table__head .container>div {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.table__head .table-1,
.table__head .table-2,
.table__head .table-3,
.table__head .table-4,
.table__head .table-5,
.table__head .table-6,
.table__head .table-7,
.table__head .table-8 {
	padding-top: 3.5rem
}

.table-1 {
	width: 17.5rem;
	background-color: #191919
}

.table-2 {
	width: 18.5rem
}

.table-3 {
	width: 18rem;
	background-color: #191919
}

.table-4 {
	width: 12.5rem
}

.table-5 {
	width: 17.5rem;
	background-color: #191919
}

.table-6 {
	width: 20rem
}

.table-7 {
	width: 11rem;
	background-color: #191919
}

.table-8 {
	width: 15.5rem
}

.table__row {
	border-bottom: 2px solid #8F430A
}

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

.table__row .container>div {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.table__row .container .table-1 {
	padding-top: 2rem;
	padding-bottom: 3rem
}

.table__row .container .table-2 {
	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-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 2rem;
	padding-bottom: 2rem
}

.table__row .container .table-3 {
	padding-top: 5.5rem;
	padding-right: 2rem;
	padding-bottom: 2rem;
	padding-left: 2rem
}

.table__row .container .table-4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 5.5rem;
	padding-bottom: 2rem
}

.table__row .container .table-5 {
	padding-top: 5.5rem;
	padding-right: 1rem;
	padding-bottom: 2rem;
	padding-left: 1rem
}

.table__row .container .table-6 {
	padding-top: 5.5rem;
	padding-right: 2rem;
	padding-bottom: 2rem;
	padding-left: 2rem
}

.table__row .container .table-7 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 5.5rem;
	padding-bottom: 2rem
}

.table__row .container .table-8 {
	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-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 4rem;
	padding-bottom: 2rem
}

.table__row .container .table-8 .btn-orange {
	margin-bottom: .7rem;
	width: 13rem
}

.table__row .container .table-8 .btn-outline {
	margin-bottom: 1.5rem;
	width: 13rem
}

.table__row:nth-child(n+5) .table__num {
	color: #fff;
	font-size: 10.3rem
}

.table__row:nth-child(n+5) .table__num span:last-child {
	display: none
}

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

.table__row:hover .table__title span:after {
	height: calc(100% + 2px)
}

.table__num {
	position: relative;
	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;
	color: #8F430A;
	text-align: center;
	font-weight: 600;
	font-size: 16.1rem;
	line-height: 0
}

.table__num span:first-child {
	position: relative;
	z-index: 2
}

.table__num span:last-child {
	position: absolute;
	z-index: 1;
	margin-top: .9rem;
	margin-left: .7rem;
	color: #191919;
	text-shadow: 1px 0 0 #8F430A, -1px 0 0 #8F430A, 0 1px 0 #8F430A, 0 -1px 0 #8F430A, 1px 1px #8F430A, -1px -1px 0 #8F430A, 1px -1px 0 #8F430A, -1px 1px 0 #8F430A;
	font-size: 15.8rem
}

.table__photo {
    margin-bottom: 1rem;
    width: 14.5rem;
    height: 10rem;
    border-radius: 5px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    background-color: #fff;
}

.table__title {
	position: relative
}

.table__title span {
	position: relative;
	z-index: 2;
	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: 14.5rem;
	height: 4.5rem;
	border-radius: 5px;
	background-color: #161616;
	color: #fff;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.714285714285714
}

.table__title span:after {
	position: absolute;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: -1;
	height: 0;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: '';
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease
}

.table__title span span {
	z-index: 2;
	background-color: transparent
}

.table__title:before {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: -2px;
	left: -1px;
	z-index: 0;
	border-radius: 5px;
	background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
	background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
	background: linear-gradient(to top, #8F430A, #1c1c1c);
	content: ''
}

.table__text {
	margin-top: -.5rem;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.714285714285714
}

.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;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 3rem;
	height: 4.5rem;
	border-radius: 5px;
	font-weight: 600;
	font-size: 1.4rem
}

.btn-outline {
	border: 1px solid #fff;
	color: #fff
}

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

.btn-orange {
	background-color: #8F430A;
	color: #fff
}

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

.btn-big {
	width: 63rem;
	height: 7rem;
	border-radius: 10px;
	font-size: 1.9rem
}

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

.screen img {
	width: 18.5rem
}

.mt-65 {
	margin-top: 6.5rem
}

.text-center {
	text-align: center
}

.text-italic {
	font-style: italic;
	font-size: 1.4rem
}

.mt-25 {
	margin-top: 2.5rem
}

.panel-left {
	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-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}

.panel-right {
	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-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.pt-35 {
	padding-top: 3.5rem
}

.w-10 {
	width: 1rem;
	background-color: #191919
}

.h-10 {
	width: 500%;
	height: 1rem;
	background-color: #191919
}

.w-305 {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 30.5rem
}

.w-1300 {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 130rem
}

.pl-25 {
	padding-left: 2.5rem
}

.mb-60 {
	margin-bottom: 6rem
}

.burger {
	position: relative;
	margin-left: 8rem;
	width: 8rem;
	height: 5rem
}

.burger span {
	position: absolute;
	right: 0;
	display: block;
	width: 100%;
	height: .5rem;
	border-radius: 5px;
	background-color: #8F430A;
	opacity: 1;
	-webkit-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0)
}

.burger span:nth-child(1) {
	top: 0;
	width: 100%
}

.burger span:nth-child(2),
.burger span:nth-child(3) {
	top: 50%;
	width: 6rem;
	background-color: #fff
}

.burger span:nth-child(4) {
	top: 100%;
	width: 4rem
}

.burger-show span:nth-child(1) {
	top: 50%;
	left: 50%;
	width: 0%
}

.burger-show span:nth-child(2) {
	background-color: #8F430A;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.burger-show span:nth-child(3) {
	background-color: #8F430A;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.burger-show span:nth-child(4) {
	top: 50%;
	left: 50%;
	width: 0%
}

.rating {
	width: 11.5rem;
	height: 1.6rem;
	background-size: auto 100%;
	background-repeat: no-repeat
}

.rating-2 {
	background-image: url(../images/dest/rating-light-2.png)
}

.rating-light {
	width: 11.5rem;
	height: 1.7rem;
	background-size: auto 100%;
	background-repeat: no-repeat
}

.rating-light-2 {
	background-image: url(../images/dest/rating-light-2.png)
}

.rating-big {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 31.5rem;
	height: 7rem;
	border-radius: 10px;
	background-color: #161616;
	background-position: center;
	background-size: 19rem 3rem;
	background-repeat: no-repeat
}

.rating-big-2 {
	background-image: url(../images/dest/rating-light-2.png)
}

.big-rating {
	width: 63.5rem;
	height: 7rem;
	border-radius: 10px;
	background-color: #161616;
	background-position: center;
    background-size: 18.5rem 3rem;
	background-repeat: no-repeat
}

.big-rating-2 {
	background-image: url(../images/dest/rating-light-2.png)
}

.mb-85 {
	margin-bottom: 8.5rem
}

.club__photo {
	margin-bottom: 3rem;
	width: 63.5rem;
	height: 41.5rem;
	border-radius: 10px;
    background-position: center;
     background-size: 80%;
    background-color:#fff;
    background-repeat: no-repeat;
}

.club__info {
	margin-right: 3.5rem
}

.club__info .btn-orange {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 31rem;
	height: 7rem;
	border-radius: 10px;
	font-size: 1.9rem
}

.club__table {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5
}

.club__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: .8rem 2rem;
	border-radius: 5px
}

.club__row a {
	color: #fff
}

.club__row:nth-child(2n+1) {
	background-color: #161616
}

.club__title {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 36%;
	color: #bababa
}

.breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 3rem;
	color: #8F430A;
	font-weight: 500;
	font-size: 1.6rem
}

.breadcrumb__link {
	color: #bababa
}

.breadcrumb span {
	display: block;
	padding: 0 2rem;
	color: #bababa
}

.mb-15 {
	margin-bottom: 1.5rem
}

.d-md-block,
.d-md-flex {
	display: none
}

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

@media (max-width:1300px) {
	html {
		font-size: 6.5px
	}
}

@media (max-width:1040px) {
    .card-top:before{
        display:none!important;
    }
    .card-top:hover{
            transform: translateY(0px);
       
    }
    
    
    
    .w-1300 .d-flex.justify-content-end {
    width: 100%;
    align-items: center;
    justify-content: center;
}
    
	html {
		font-size: 3.125vw
	}
	.d-flex {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.order-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}
	.order-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	.order-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.order-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}
	.container {
		padding: 0 15px;
		width: 100%
	}
	.border-left {
		position: absolute;
		top: 6.5rem;
		right: 0;
		left: 0;
		margin: 0;
		width: 100%;
		height: .3rem;
		border-left: 0;
		background-color: #161616
	}
	.header__logo {
		width: 9.5rem;
		height: 4.5rem
	}
	.border-right {
		margin: 0;
		padding: 0;
		border: 0
	}
	.burger {
		width: 4.5rem;
		height: 4rem
	}
	.burger span:nth-child(2),
	.burger span:nth-child(3) {
		width: 3.5rem
	}
	.burger span:nth-child(4) {
		width: 2rem
	}
	.burger-show span:nth-child(4) {
		width: 0
	}
	.burger-show span:nth-child(1) {
		display: none
	}
	.header {
		height: 17rem
	}
	.header .container {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
	.header .title {
		max-width: 5rem
	}
	.title-h1 {
		font-size: 1.6rem
	}
	.mr-50 {
		margin-right: 1.5rem
	}
	.card-top {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-right: 1rem;
		margin-left: 0;
		padding: 1px;
		width: 17rem
	}
	.card-top:before {
		position: absolute;
		top: 0;
		right: -1px;
		bottom: -2px;
		left: -1px;
		z-index: 0;
		display: block;
		width: auto;
		height: auto;
		border-radius: 5px;
		background: -webkit-gradient(linear, left bottom, left top, from(#8F430A), to(#1c1c1c));
		background: -o-linear-gradient(bottom, #8F430A, #1c1c1c);
		background: linear-gradient(to top, #8F430A, #1c1c1c);
		content: '';
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
	.card-top .card__photo {
		width: 4.5rem;
		height: 4.5rem
	}
	.card-top .card__title {
		position: relative;
		left: 0;
		display: block;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
	.card-top .card__title span {
		width: 12.5rem;
		height: 4.5rem;
		border-bottom-left-radius: 0;
		font-size: 1.2rem
	}
	.card-top .card__title:before {
		display: none
	}
	.header {
		padding-top: 2rem
	}
	.header .order-2 {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
		margin-top: 1rem;
		width: 100%
	}
	.card-top .card__wrap {
		position: relative;
		z-index: 10;
		background-color: #1c1c1c
	}
	.mt-10 {
		margin-top: .5rem
	}
	.flex-md-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.w-1300,
	.w-305 {
		width: 100%
	}
	.pt-35 {
		padding-top: 1.5rem
	}
	.pl-25 {
		padding-left: 15px
	}
	.table__head {
		font-size: .8rem
	}
	.table__head .table-1 {
		width: 2.5rem
	}
	.table__head .table-2 {
		width: 13.5rem
	}
	.table__head .table-3 {
		width: 4rem
	}
	.table__head .table-4 {
		width: 9rem;
		text-align: right
	}
	.table__head .table-5,
	.table__head .table-6,
	.table__head .table-7,
	.table__head .table-8 {
		display: none
	}
	.table__head .table-1,
	.table__head .table-2,
	.table__head .table-3,
	.table__head .table-4,
	.table__head .table-5,
	.table__head .table-6,
	.table__head .table-7,
	.table__head .table-8 {
		padding-top: 2.5rem;
		padding-bottom: 1rem
	}
	.table__head {
		background-color: #191919
	}
	.d-md-block {
		display: block
	}
	.d-none {
		display: none
	}
	.table__num,
	.table__num span:last-child {
		font-size: 6.4rem
	}
	.table__row {
		background-color: #191919
	}
	.table__row .container {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.table__row .table-1 {
		width: 2.5rem
	}
	.table__row .table-2 {
		width: 12.5rem
	}
	.table__row .table-3 {
		width: 9rem
	}
	.table__row .table-3 .btn {
		display: none
	}
	.table__row .container .table-3 {
		padding: 0;
		padding-top: 1.5rem
	}
	.table__row .container .table-4 {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		padding: 0;
		padding-top: 1.5rem;
		width: 5rem
	}
	.table__row .container .table-1 {
		padding-top: 0;
		padding-bottom: 5.5rem
	}
	.table__photo {
		width: 10rem;
		height: 5rem
	}
	.table__title span {
		width: 13.5rem;
		height: 2.5rem;
		font-size: 1.2rem
	}
	.table__title {
		margin-top: -.5rem;
		margin-left: -4rem
	}
	.table__text {
		font-size: 1rem;
		line-height: 1.8
	}
	.table__num span:last-child {
		margin-top: .3rem;
		margin-left: .4rem
	}
	.table__row .container .table-5,
	.table__row .container .table-6,
	.table__row .container .table-7 {
		display: none
	}
	.table__row .container .table-8 {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: -1.5rem;
		padding-top: 0;
		padding-bottom: 1.5rem;
		width: 100%
	}
	.table__row .container .table-8 .rating {
		width: 14rem;
		height: 1.6rem;
		background-position: center
	}
	.table__row .container .table-8 .btn-orange,
	.table__row .container .table-8 .btn-outline {
		width: 14rem;
		height: 3rem;
		font-size: 1.2rem
	}
	.table__row .container .table-8 .btn-orange {
		margin-bottom: .5rem
	}
	.table__row .container .table-8 .btn-outline {
		margin-bottom: 0
	}
	.table__row:nth-child(n+5) .table__num {
		font-size: 4.37rem
	}
	.mt-45 {
		margin-top: 2rem
	}
	.btn {
		height: 4rem;
		font-size: 1.2rem
	}
	.more {
		padding: 0 15px
	}
	.w-10 {
		width: 100%;
		height: .5rem
	}
	.pb-50 {
		padding-bottom: 2rem
	}
	.panel-left {
		padding: 0 15px
	}
	.pr-25 {
		padding-right: 0
	}
	.d-md-flex {
		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
	}
	.card-best {
		margin-bottom: .5rem;
		width: calc(50% - .25rem)
	}
	.card-best .card__photo {
		height: 6.5rem
	}
	.card-best .card__title span {
		height: 3rem;
		font-size: 1.2rem
	}
	.pb-20 {
		padding-bottom: 1rem
	}
	.card-cas {
		margin-bottom: .5rem;
		font-size: 1.4rem
	}
	.mt-15 {
		margin-top: .5rem
	}
	.card-cas>div {
		padding: 1rem
	}
	.content {
		font-size: 1.2rem;
		line-height: 1.5
	}
	.content h2 {
		margin-bottom: 1rem;
		font-size: 1.4rem
	}
	.content p {
		margin-bottom: 1.5rem
	}
	.mt-md-10 {
		margin-top: 1rem
	}
	.gray {
		margin-right: -15px;
		margin-left: -15px;
		padding: 0 15px;
		background-color: #161616
	}
	.pb-35 {
		padding-bottom: .5rem
	}
	.pt-md-30 {
		padding-top: 3rem
	}
	.pb-md-15 {
		padding-bottom: 1.5rem
	}
	.footer__text {
		display: none
	}
	.footer__logo {
		width: 10.5rem;
		height: 5rem
	}
	.footer__menu {
		display: block;
		width: 46%
	}
	.footer__link {
		display: block;
		margin-bottom: 1.3rem;
		padding: 0;
		font-size: 1rem
	}
	.footer {
		margin-top: 0;
		padding-top: 2rem;
		padding-bottom: 1rem;
		height: auto
	}
	.club__photo {
		margin-bottom: 1rem;
		width: 100%;
		height: 17.5rem
	}
	.breadcrumb {
		margin-bottom: 2rem;
		color: #8F430A;
		font-size: 0;
	}
	.breadcrumb__link:first-child {
	font-size:1.2rem;
	}
		.breadcrumb__link:before{
		    content: '<<';
		    padding-right:5px;
		}
	
	.breadcrumb span {
		padding-right: 0;
		padding-left: .3rem;
		color: #8F430A;
		-webkit-transform: scaleX(-1);
		-ms-transform: scaleX(-1);
		transform: scaleX(-1)
	}
	.club__info {
		margin-right: 0;
		width: 100%
	}
	.mb-15 {
		margin-bottom: .5rem
	}
	.pr-md-15 {
		padding-right: 15px
	}
	.rating-big {
		width: 14rem;
		height: 4rem;
		background-size: 10rem auto
	}
	.club__info .btn-orange {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding: 0;
		width: 14rem;
		height: 4rem;
		font-size: 1.2rem
	}
	.d-md-flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.club__table {
		margin-top: 2.5rem;
		margin-right: -15px;
		margin-left: -15px;
		font-size: 1.2rem
	}
	.club__row {
		padding: .5rem 15px
	}
	.club__title {
		width: 50%
	}
	.mb-85 {
		margin-bottom: 0
	}
	
	.content img{

    height: auto;

	}
	
	.big-rating {
		width: 14rem;
		background-color:transparent;
		height: 4rem;
		background-size: 8rem auto
	}
	.btn-big {
		padding: 0;
		width: 14rem;
		height: 4rem;
		font-size: 1.2rem
	}
	.mt-25 {
		margin-top: 1rem
	}
	.screen {
		margin-top: 2.5rem;
		margin-bottom: 2rem
	}
	.screen img {
		width: 6.5rem
	}
	.screen img:nth-child(n+5) {
		display: none
	}
	.text-italic {
		font-size: 1rem
	}
	.mt-65 {
		margin-top: 2.5rem
	}
	.card-bonus,
	.card-review {
		margin-right: 0;
		margin-left: 0;
		width: calc(50% - .5rem)
	}
	.card-bonus:nth-child(2n+1),
	.card-review:nth-child(2n+1) {
		margin-right: 1rem
	}
	.mx-n1 {
		margin-right: 0;
		margin-left: 0
	}
	.mt-50 {
		margin-top: 2rem
	}
	.card-review .rating {
		margin-top: 1rem;
		width: 5rem;
		height: 1rem;
		background-size: 100% auto
	}
	.card-review .card__photo {
		height: 8rem
	}
	.card-review:nth-child(n+5) {
		display: none
	}
	.card-review .card__title {
		font-size: 1.2rem
	}
	.card-bonus .card__content>div,
	.card-review .card__content>div {
		padding: 1rem
	}
	.card-review .btn {
		position: absolute;
		right: 1rem;
		bottom: 1rem;
		width: 6rem;
		height: 2rem;
		font-size: 1.2rem
	}
	.card-bonus .card__photo {
		height: 8rem
	}
	.card-bonus:nth-child(n+5) {
		display: none
	}
	.card-bonus .btn {
		width: 6.5rem;
		height: 2rem;
		font-size: 1rem
	}
	.card-bonus .card__title {
		font-size: 1.2rem
	}
	.card-bonus .card__text {
		font-size: 1rem
	}
	.card-bonus .card__info {
		font-size: .9rem
	}
	.header__menu {
		top: 6rem;
		right: 0;
		left: 0;
		padding-top: 2rem;
		width: 100%
	}
	.d-m-flex {
		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
	}
	.content {
		width: 100%
	}
}

.item-list a {
		color:#fff;
	}
	.item-list a:hover {
		text-decoration:underline;
	}
	@media (max-width:1040px){
		ol {
			padding-left:0;
		}
	}
	
	
		.item-list a {
		color:#fff;
	}
	.item-list a:hover {
		text-decoration:underline;
	}
	@media (max-width:1040px){
		ol {
			padding-left:0;
		}
	}
	
		.faq__title {
	   color: #f58830;
    font-weight: bold;
    font-size: 2rem;
					}
	@media (max-width: 1040px) {
		.faq__title, .faq__head {
			font-size:1.4rem;
		}
	}
	
		.item-list a {
		color:#fff;
	}
	.item-list a:hover {
		text-decoration:underline;
	}
	
		.anchor-menu-mobile {
		display:none;
	}
	@media (max-width: 1040px) {
		.anchor-menu-desctop {
		display:none;
	}
		.anchor-menu-mobile {
		display:block;
	}
	}
	
	table{
width: 100%;
border-collapse:collapse;
border-spacing:0;
}
table, td, th{
/*border: 1px solid #595959;*/
}
td, th{
padding: 3px;
/*width: 30px;*/
/*height: 25px;*/
}
th{
background-color: #7accee!important;
}

/*author style*/

		.author__head {
		    display:flex;
		flex-direction:row !important;
		 justify-content: space-between;	
		}
		.author__head img {
		max-width:160px;	
		width:100%;
		border-radius:50%;
	}
	.author__head-descr h1 {
	    font-size:24px;
	  
	}
		.author__head-descr span {
		color:#FE284A;
		}
		.author__head-descr p, .author__text p {
		margin-bottom:15px !important;
		font-size:16px;
		}
		.author__head-descr {
			width:80%;
		}
		.content a {
		color:#5b6883;
		}
		.content a:hover {
		color:#FE284A;
		}
		.btn__social {
			margin-top:15px;
		 width: fit-content;
		 font-size:16px;
		}
		.btn__social span {
			color:#FFFFFF;
		}
	
		@media screen and (max-width: 600px) {
		    	.author__head-descr {
			width:100% !important;
		}
			.author__head {
			flex-direction:column !important;
			text-align:center;
			}
			.author__head img  {
				max-width:110px;
				margin:auto;
			}
			.author__head-descr h1 {
				margin-top:18px !important;
			}
			.author__text {
			    text-align:center;
			}
		}
		@media screen and (max-width:1250px){
			.author__head-descr {
			width:80%;
		}
		}

/*style author plashka*/

	.block__expert {
    display: flex;
     justify-content: space-around;
    /* align-items: center; */
    border-radius: 13px;
    margin: 70px auto;
    padding: 20px 15px;
    background:#161616;
}
.block__expert-img img {
    max-width: 142px;
    width: 95%;
    border-radius: 50%;
}
			.block__expert__data-mobile {
    display: none;
}
		.block__expert-name {
			font-size:24px !important;
			font-weight:700 !important;
		
		}
		.block__expert-prof {
    	color: #ffffff !important;
   		}
			.block__expert__text {
    width: 85%;
    font-size:16px;
}
		.block__name-mobile {
			font-size:16px !important;
			font-weight:700 !important;
		}
		.block__prof-mobile {
    	color: #ffffff !important;
   			}
			@media screen and (max-width: 600px) {
.block__expert {
    flex-direction: column;
}
	.block__expert-img {
    display: flex;
}
	.block__expert-img img {
    max-width: 55px;
}
.block__expert__data-mobile {
    display: block;
    margin-left: 15px;
}
.block__expert__text {
    width: 100%;
}
.block__expert-name,.block__expert-prof {
    display: none;
}
			}	