/* USER VARIABLES SECTION */

:root {
  /*--blue: #007ACC;*/
  --blue: #007ACC;
  --darkblue: #1c40b8;
  --white: #fff;
  --gray: #EAECF2;
  --dark: #1B2031;
  --text: #1B2031;
  --secondary: #6E7794;
  --ghost: #99A3C0;
  --regular-text: 16px;
  --lineheight: 160%;
  --userfont: poppins, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: .625rem;
}

.row,
.row>* {
  --bs-gutter-x: 1.875rem;
}

/* FONTS LOAD SECTION */

@font-face {
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-family: "poppins";
  font-weight: 400;
  font-style: normal;
  font-display: s;
}

@font-face {
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
  font-family: "poppins";
  font-weight: 500;
  font-style: normal;
  font-display: s;
}

@font-face {
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-family: "poppins";
  font-weight: 600;
  font-style: normal;
  font-display: s;
}

@font-face {
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-family: "poppins";
  font-weight: 700;
  font-style: normal;
  font-display: s;
}

/* GENERAL CSS SETTINGS */

::placeholder {
  color: #666;
}

::selection {
  background-color: var(--ghost);
  color: #fff;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  background-color: #FAFAFA;
}

a{
	color: #007ACC;
}


/* UTILITIES */
.text-center {
  text-align: center !important;
}

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-white {
  color: white;
}

.text-blue {
  color: var(--blue);
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.bg-blue {
  background-color: var(--blue);
}

.bg-white {
  background-color: var(--white);
}

.bg-gray {
  background-color: var(--gray);
}

.rounded {
  border-radius: 20px;
}

.shadow {
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04);
}

.opacity-50 {
  opacity: .5;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto,
.wp-block-table {
  overflow: auto;
}

.position-relative {
  position: relative;
}

.position-sticky {
  position: sticky;
  top: 24px;
}

.vw-100 {
  width: 100vw;
}

.vh-100 {
  height: 100vh;
}

.h-100 {
  height: 100%;
}

/* SPACING */

.pt-130 {
  padding-top: 130px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-90 {
  padding-bottom: 90px;
}

.py-16 {
  padding: 16px 0;
}

.p-18 {
  padding: 18px;
}

.p-24 {
  padding: 24px;
}

.p-32 {
  padding: 32px;
}

.me-16 {
  margin-right: 16px;
}

.mb-30 {
  margin-bottom: 30px;
}

.gap-16 {
  gap: 16px;
}

/* CONTENT */

h1,
.h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 120%;
}

h2,
.h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
}

h3,
.h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 25px;
}

h4,
.h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}

h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.5;
}

p {
  margin-bottom: 24px;
}

img {
  max-width: 100%;
}

blockquote {
  position: relative;
  background: #EAECF2;
  padding: 16px 30px;
  border-radius: 20px;
  margin-bottom: 24px;
}

blockquote::before {
  content: '';
  position: absolute;
  left: 16px;
  display: inline-block;
  background: var(--ghost);
  border-radius: 4px;
  width: 4px;
  height: calc(100% - 32px);
}

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

ol li,
ul li {
  position: relative;
  margin-bottom: 9px;
}

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

ol li {
  counter-reset: line;
  counter-increment: step-counter;
}

ol li::before,
ul li::before {
  color: #007ACC;
  display: inline-block;
  position: absolute;
  left: -22px;
  width: 10px;
  text-align: center;
  font-weight: 700;
}

aside ol li::before,
aside ul li::before {
  left: -28px;
}

ol li::before {
  content: counter(step-counter) '';
}

ul li::before {
  font-size: 20px;
  content: '•';
}

table {
  background: #EAECF2;
  border-radius: 20px;
  padding: 16px;
  gap: 10px;
}

table tbody tr {
  border-top: 1px solid var(--ghost);
}

table th {
  font-weight: 700;
}

table th,
table td {
  padding: 15px 16px 10px;
  vertical-align: unset;
  width: calc(100% / 3);
}

.content>* {
  margin-bottom: 25px;
}

.content h2 {
  margin-bottom: 32px;
}

.content h3 {
  margin-top: 30px;
}

.content>*:last-child {
  margin-bottom: 0;
}

blockquote p {
  margin: 0;
}


table tbody tr:first-child {
  border: none;
}

table tbody tr td:first-child {
  min-width: auto !important;
}

table th,
table td {
  min-width: 58px;
  vertical-align: top;
}

.content table {
  display: block;
  overflow-x: auto;
}

.content iframe {
  width: 100%;
}


/* LIGHTBOX  */

.content a.zoom-lightbox {
  display: block;
  position: relative;
  text-align: center;
}

.content a.zoom-lightbox img {
  position: relative;
  transition: all .3s;
  /*filter: brightness(99%);*/
  border: 1px solid var(--blue)
}
/*
.content a.zoom-lightbox::before {
  content: '';
  background: url(../images/icons/icon-zoom.svg) center no-repeat;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  z-index: 1;
  pointer-events: none;
}
*/
.content a.zoom-lightbox img:hover {
  /*filter: brightness(95%);*/
  cursor: zoom-in;
}

.lb-outerContainer {
  background-color: transparent !important;
}

.lb-dataContainer {
  position: relative;
  z-index: 999;
  padding-top: 0 !important;
  padding-bottom: 10px !important;
}

.lb-dataContainer {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
}

.lb-data .lb-details {
  display: none;
}

.lb-data .lb-close {
  background: url(../images/icons/icon-close.svg) top right no-repeat;
  width: 24px;
  height: 24px;
  position: relative;
  right: -12px;
}

.lb-data .lb-close:hover {
  background: url(../images/icons/icon-close-red.svg) top right no-repeat;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 1 !important;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
  opacity: .7;
}

.lb-nav a.lb-prev {
  background: url(../images/icons/icon-slider-prev.svg) left 48% no-repeat;
}

.lb-nav a.lb-next {
  background: url(../images/icons/icon-slider-next.svg) right 48% no-repeat;
}


/* LINKS & BUTTONS */


a {
  text-decoration: none;
}

button {
  border: none;
}

.link {
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  border: none;
  background: unset;
}

.link_black {
  color: var(--dark);
}

.link_blue {
  color: var(--blue);
}

.btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--text);
  padding: 10px 24px;
  border-radius: 32px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: background-color .3s, color .3s, border .3s;
  transition: background-color .3s, color .3s, border .3s;
  border: 1px solid var(--white);
  cursor: pointer;
}

.btn_white {
  background-color: var(--white);
  color: var(--text);
}

.btn_gray {
  background-color: var(--gray);
  color: var(--text);
  border: 1px solid var(--gray);
}

.btn_blue {
  background: var(--blue);
  color: var(--white);
}

.btn_black {
  background-color: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

.btn_transparent {
  background-color: transparent;
  color: var(--white);
}

.btn_long {
  padding: 10px 80px;
}

.prg-pattern button {
  font-weight: 600;
  color: inherit;
  text-transform: uppercase;
  background: none;
  padding-right: 0;
}

.prg-pattern.btn_blue::after,
a.btn::after,
span.btn_blue::after {
  content: '';
  position: relative;
  top: 1px;
  display: inline-block;
  margin-left: 12px;
  width: 18px;
  height: 14px;
  background: url(../images/icons/icon-arrow-right_black.svg) center no-repeat;
  -webkit-transition: filter .3s;
  transition: filter .3s;
}

a.btn_gray::after {
  background: url(../images/icons/icon-arrow-right_black.svg) center no-repeat;
}

.prg-pattern.btn_blue::after,
a.btn_blue::after,
span.btn_blue::after {
  background: url(../images/icons/icon-arrow-right_white.svg) center no-repeat;
}

a.btn_transparent::after {
  background: url(../images/icons/icon-arrow-right_white.svg) center no-repeat;
}

a.btn:hover {
  color: var(--text);
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--white);
}

a.btn:hover::after {
  filter: brightness(0) invert(1);
}

a.btn_blue:hover {
  background: var(--dark);
}

.btn_transparent:hover {
  color: var(--white);
}

.btn_empty:hover {
  color: unset;
}

.btn_color-blue {
  color: var(--blue);
  transition: color .3s;
}

.btn_color-blue:hover {
  color: var(--primary);
}

/* BREADCRUMB */

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.breadcrumb__item {
  display: inline-block;
  font-weight: 600;
  margin: 0;
  color: var(--secondary);
}

.breadcrumb__item a {
  color: var(--secondary);
  opacity: 0.5;
  -webkit-transition: color .3s, opacity .3s;
  transition: color .3s, opacity .3s;
}

.breadcrumb__item::before {
  content: none;
  margin: 0;
}

.breadcrumb__item+.breadcrumb__item::before {
  content: ">";
  position: unset;
  color: var(--secondary);
  opacity: 0.5;
  display: inline-block;
  padding-right: 1rem;
  padding-left: 0.25rem;
}

.breadcrumb_white .breadcrumb__item,
.breadcrumb_white .breadcrumb__item a {
  color: var(--white);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.breadcrumb_white .breadcrumb__item+.breadcrumb__item::before {
  color: var(--white);
}

.breadcrumb__item a:hover {
  color: var(--blue);
  opacity: 1;
}

/* HEADER */

.logo {
  width: 150px;
}

.header-logo {
  margin-right: 50px;
  flex-shrink: 0;
}

.header-nav {
  flex: 1;
  margin-right: calc(-1 * var(--bs-gutter-x));
  margin-left: calc(-1 * var(--bs-gutter-x));
}

.menu {
  display: flex;
  flex: 1;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

.menu__item {
  padding: 0;
  margin: 0;
}

.menu__item::before {
  content: none;
}

.menu__link {
  display: inline-block;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 30px;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  margin: 0 15px;
  font-size: 16px;
}

.menu__item:first-child .menu__link {
  margin-left: 0;
}

.menu__item:last-child .menu__link {
  margin-right: 0;
  font-weight: 600;
  background-color: var(--dark);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 30px;
  flex: 1;
}

.menu__item:last-child {
  flex: 1;
  text-align: right;
}

nav .active a,
.menu__link_active {
  font-weight: 600;
  background: rgba(27, 32, 49, 0.1);
  color: #1B2031;
  padding: 7px 16px;
  border-radius: 30px;
}

.menu__link:hover {
  background-color: var(--blue) !important;
  color: var(--white) !important;
}

.menu-btn {
  display: none;
  font-weight: 600;
  background-color: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  z-index: 1000;
}

.hamburger {
  padding: 0;
  margin-left: 5px;
  transform: scale(.5);
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before,
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background-color: var(--white);
}

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: unset;
}

/* SWIPER */
.swiper {
  padding-bottom: 30px;
}

.swiper-slide {
  height: unset !important;
}

.swiper-pagination {
  bottom: -6px !important;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}

/* SECTIONS */

.intro {
  padding-top: 6px;
}

.intro-decor {
  position: relative;
}

.intro-content {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
}

.intro-decor::before {
  content: '';
  position: absolute;
  top: 0px;
  left: -130px;
  display: inline-block;
  width: 245px;
  height: 245px;
  background: url(../images/decor-football.webp) center no-repeat;
  background-size: cover;
  z-index: 10;
}

.intro-decor::after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: -170px;
  display: inline-block;
  width: 350px;
  height: 350px;
  background: url(../images/decor-cup.webp) center no-repeat;
  background-size: cover;
  z-index: 10;
}

.intro-header {
  width: 50%;
  padding: 115px 70px;
  color: var(--white);
  background-color: var(--blue);
}

.intro-header__title {
  margin-bottom: 15px;
}

.intro-header__desc {
  margin-bottom: 31px;
}

.intro-image {
  width: 50%;
  background-size: cover;
}

.articles {
  padding-top: 128px;
  padding-bottom: 89px;
}

.articles-page {
  padding-top: 20px;
  padding-bottom: 98px;
}

.articles_similar {
  padding-top: 70px;
}

.articles-header {
  text-align: center;
  padding-bottom: 70px;
}

.articles-header__inscription {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 16px;
}

.articles-header__title {
  margin-bottom: 15px;
}

.articles-header__title-h2 {
  margin-top: 23px;
  margin-bottom: 26px;
}

.articles-header__desc {
  margin: 0 auto;
  color: var(--secondary);
  max-width: 500px;
}

.articles-page-header {
  padding-top: 25px;
  padding-bottom: 130px;
}

.articles-decor {
  position: relative;
}

.articles-decor::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 17px;
  display: inline-block;
  width: 294px;
  height: 306px;
  background: url(../images/decor-football-and-basketball.webp) center no-repeat;
  background-size: cover;
  z-index: -1;
}

.articles-decor::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 45px;
  display: inline-block;
  width: 238px;
  height: 238px;
  background: url(../images/decor-money.webp) center no-repeat;
  background-size: cover;
}

.article-item {
  display: flex;
  flex-direction: column;
  background-color: var(--text);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 30px;
}


.article-item__date {
  font-weight: 700;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-item__rating {
  flex-grow: 1;
  margin-bottom: 190px;
}

.article-item__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--white);
  margin-bottom: 10px;
  padding-right: 24px;
  overflow: hidden;
  height: 84px;
}

.article-item__type,
.article-item__type a,
.article-item__rtime {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  opacity: .8;
  margin-bottom: 12px;
}

.article-item__desc {
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  margin-bottom: 40px;
  padding-right: 24px;
  overflow: hidden;
  height: 74px;
}

.articles .wrapper-read-all-link {
  text-align: center;
  margin-top: 44px;
}

.articles .similar {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 140%;
  margin-bottom: 32px;
}

.article {
/*  padding-top: 17px; */
  padding-bottom: 98px;
}

.article-header {
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.04));
  margin-bottom: 30px;
}

.article-header__wrap {
  padding-top: 98px;
}

.article-header__date {
  font-weight: 700;
  line-height: 140%;
  color: #1B2031;
  opacity: .5;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-header__title {
  color: var(--white);
  margin-bottom: 6px;
}

.article-header__desc {
  color: var(--white);
}

.article-header__desc p {
  margin: 0;
}

.article-header__rtime {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #1B2031;
  opacity: .5;
  margin-bottom: 24px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-author__image img {
  object-fit: cover;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.article-author__name a {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--secondary);
  transition: color .3s ease;
}

.article-author__name a:hover {
  color: var(--blue);
}

.article-header__benefits {
  margin-top: 30px;
}

.benefits {
  display: flex;
  align-items: center;
  gap: 70px;
}

.benefits__item {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.benefits__item span {
  min-width: 32px;
  text-align: center;
  display: inline-block;
  padding: 4px 8px;
  background: var(--blue);
  border-radius: 100px;
  margin-left: 4px;
}

/* crash */


.modal {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  background: var(--white);
  margin: 5% auto;
  width: 876px;
  border-radius: 20px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/icons/icon-close.svg) center no-repeat;
  transition: opacity .3s;
}

.modal-close:hover {
  background: url(../images/icons/icon-close-red.svg) center no-repeat;
}

.bk-roster,
.has-light-blue-background-color {
  padding: 24px;
  background: rgba(75, 111, 231, 0.05);
  border: 1px solid var(--blue);
  border-radius: 10px;
}

.bk-roster>*:last-child {
  margin: 0;
}

.bk-compare th {
  text-transform: inherit;
}

.bk-compare td {
  padding: 20px 0;
  vertical-align: baseline;
}

.bk-compare-modal {
  padding: 48px 80px;
}

.bk-compare-modal-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

.bk-compare-modal__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
}

.bk-compare-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 32px;
}

.bk-compare-item {
  position: relative;
  padding: 40px 24px;
  border: 1px solid rgba(27, 32, 49, 0.1);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: background .3s;
}

.bk-compare-item.active::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icons/icon-close.svg) center no-repeat;
  background-size: contain;
}

.bk-compare-item.active:hover::after {
  background-image: url(../images/icons/icon-close-red.svg);
}

.bk-compare-item:hover {
  background: rgba(110, 119, 148, 0.05);
}

.bk-compare-item.active {
  border: 1px solid var(--blue);
  background: linear-gradient(0deg, rgba(75, 111, 231, 0.15), rgba(75, 111, 231, 0.15)), #FFFFFF;
}

.bk-compare-item img {
  width: 100px;
}

.bk-compare-wrap {
  overflow-x: auto;
}

.bk-compare {
  min-width: 520px;
}

table.bk-compare img {
  width: 100px;
}

.form-search {
  position: relative;
  flex-grow: 1;
}

.form-search__input {
  width: 100%;
  display: block;
  border: unset;
  border-bottom: 1px solid var(--ghost);
  padding: 8px 48px 8px 8px;
}

.form-search__button {
  position: absolute;
  top: calc(50% - 12px);
  right: 8px;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icons/icon-search.svg) center no-repeat;
  transition: opacity .3s;
}

.form-search__button:hover {
  opacity: .6;
}

aside {
  position: sticky;
  top: 0;
}

aside .h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 160%;
  opacity: .5;
  margin-bottom: 13px;
}

aside ol,
aside ul {
  padding-left: 28px;
  margin: 0;
}

aside ol li,
aside ul li {
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
  counter-increment: step-counter;
}

aside ol li:before,
aside ul li:before {
  content: counter(step-counter)'.';
}

aside ol li:last-child,
aside ul li:last-child {
  margin-bottom: 0;
}

aside ol li a,
aside ul li a {
  color: var(--text);
  -webkit-transition: color .3s;
  transition: color .3s;
}

aside ol li a.active,
aside ul li a.active {
  color: var(--blue);
}

.contacts {
  padding-top: 20px;
  padding-bottom: 100px;
}

.contacts-decor {
  position: relative;
}

.contacts-decor::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -2px;
  display: inline-block;
  width: 330px;
  height: 330px;
  background: url(../images/decor-tennis.webp) center no-repeat;
  background-size: cover;
  z-index: -1;
}

.contacts-decor::after {
  content: '';
  position: absolute;
  top: -55px;
  right: 12px;
  display: inline-block;
  width: 343px;
  height: 339px;
  background: url(../images/decor-football-and-basketball-rotate.webp) center no-repeat;
  background-size: cover;
}

.contacts-header {
  text-align: center;
  padding-bottom: 128px;
  padding-top: 25px;
}

.contacts-header__title {
  margin-bottom: 15px;
}

.contacts-header__inscription {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 16px;
}

.mail-block {
  background: var(--white);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 48px;
}

.mail-block__top {
  display: flex;
  align-items: center;
  margin-bottom: 130px;
  padding: 5px;
}

.mail-block__desc {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 140%;
  color: var(--ghost);
  padding-left: 20px;
}

.mail-block__link {
  display: inline-block;
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  color: var(--text);
  margin-bottom: 40px;
}

.privacy {
  padding-top: 51px;
  padding-bottom: 90px;
}

.privacy-decor {
  position: relative;
}

.privacy .breadcrumb {
  margin-bottom: 15px;
}

.privacy-header {
  padding-bottom: 48px;
}

.privacy-header__title {
  margin: 0;
}

.privacy-decor::after {
  content: '';
  position: absolute;
  top: -61px;
  right: 64px;
  display: inline-block;
  width: 260px;
  height: 260px;
  background: url(../images/decor-basketball.webp) center no-repeat;
  background-size: cover;
}

.questions {
  position: relative;
}

.questions::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #1B2031;
  opacity: .1;
}

/*
.questions-decor::after {
  content: '';
  position: absolute;
  top: -62px;
  right: -45px;
  width: 137px;
  height: 138px;
  background: url(../images/decor-wistle.webp) center no-repeat;
}
*/
.questions__left-part {
  max-width: 700px;
  margin-right: 85px;
}

.questions__right-part {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
}

.questions__title {
  margin-bottom: 9px;
}

.questions__desc {
  opacity: .7;
  margin-bottom: 0;
}

.page-numbers {
  padding: 5px 12px;
  color: #6e7794;
  -webkit-transiton: color .3s;
  transition: color .3s;
}

.page-numbers:hover {
  color: #007ACC;
}

.page-numbers.current {
  color: var(--ghost);
}


.team {
  padding-top: 48px;
  padding-bottom: 98px;
}

.team__title {
  margin-top: 16px;
  margin-bottom: 10px;
}

.team__content {
  padding-top: 48px;
}

.team-row {
  gap: 30px 0;
}

.team-item {
  position: relative;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
}

.team-item .avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-item__image {
  position: absolute;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
}

.team-item__content {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40.63%, #000000 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
}

.team-item__title {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 4px;
  transition: color .3s;
}

.team-item__proffession {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  opacity: .5;
  height: 24px;
  margin-bottom: 24px;
}

.team-item__socials-wrap {
  display: flex;
  gap: 12px;
  height: 32px;
}

.team-item__social {
  transition: opacity .3s;
}

.team-item__social:hover {
  opacity: .5;
}

.progress-bar {
  position: fixed;
  left: 0;
  top: 0;
  height: 2px;
  background: var(--blue);
  z-index: 1;
}


.faq-title {
  margin-top: 40px !important;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  color: var(--green);
  text-transform: uppercase;
}

.faq {
  border-bottom: 2px solid rgba(27, 32, 49, 0.1);
  margin-bottom: 8px;
}

.faq__title {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  padding: 12px 80px 12px 0;
  cursor: pointer;
}

.faq__chevron {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/icons/icon-chevron-faq-down.svg) center no-repeat;
}

.faq__title.active .faq__chevron {
  background: url(../images/icons/icon-chevron-faq-up.svg) center no-repeat;
}

.faq__desc {
  margin-bottom: 24px;
}

.faqs>*:last-child {
  border: none;
}

.author {
  padding-top: 48px;
  padding-bottom: 96px;
}

.author__header-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 60px 0;
}

.author__image {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  overflow: hidden;
}

.author__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.author__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
}

.author__socials-wrap {
  display: flex;
  gap: 8px;
}

.author__social {
  transition: opacity .3s;
}

.author__social:hover {
  opacity: .6;
}

.author__content {
  padding-bottom: 60px;
}

.bk-table {
  width: 100%;
  background: inherit;
}

.bk-table th,
.bk-table td {
  text-align: center;
}

.bk-table th {
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: var(--blue);
  text-transform: uppercase;
}

.bk-table td {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.bk-table tbody tr {
  border-top: 1px solid rgba(27, 32, 49, 0.1);
}

.bk-table tbody tr:first-child {
  border: none;
}

.color-ghost {
  color: var(--ghost);
}

.bk-table-get {
  width: 100%;
}

.bk-table-get tr {
  border: none;
}

.bk-table-get td {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

.bk-table-get tbody,
.bk-table-get thead {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}

.bk-table-get tr {
  display: flex;
  flex-wrap: wrap;
}

.bk-table-get tbody tr {
  background: #FAFAFA;
  border: none;
  border-radius: 85px;
}

.bk-table-get-large tbody tr {
  background: unset;
  border-radius: unset;
  border-top: 1px solid rgba(27, 32, 49, 0.1);
}

.bk-table-get-large tbody tr:first-child {
  border: none;
}

.bk-table-get thead {
  margin-bottom: 16px;
}

.bk-table__rank {
  flex-basis: 10%;
}

.bk-table__operator {
  flex-basis: 30%;
}

.bk-table__bonus {
  flex-basis: 38%;
}

.bk-table__action {
  flex-basis: 22%;
}

.bk-table__rank span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.bk-table__bonus-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
}

.bk-table__bonus-caption {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--blue);
}

td.bk-table__action {
  align-items: flex-end;
}

.bk-table__info {
  flex-basis: 100%;
}

td.bk-table__info {
  position: relative;
  background: rgba(75, 111, 231, 0.05);
  border: 1px solid var(--blue);
  border-radius: 10px;
  align-items: flex-start;
  text-align: left;
  padding: 24px;
  margin-top: 4px;
}

td.bk-table__info span {
  position: absolute;
  top: 16px;
  right: 32px;
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: var(--blue);
  text-transform: uppercase;
}

td.bk-table__info ol {
  margin: 0;
}

td.bk-table__info ol li {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}


/* .table-bk-list */

.table-bk-list {
  width: 100%;
  background: unset;
}

.table-bk-list__thead,
.table-bk-list__tbody {
  display: flex;
  flex-direction: column;
}

.table-bk-list__tbody {
  gap: 24px 0;
}

.table-bk-list__thead-tr,
.table-bk-list__tbody-tr {
  display: flex;
  /* flex-wrap: wrap; */
}

.table-bk-list__tbody-tr {
  background: var(--white);
  border-radius: 85px;
  border: none;
}

.table-bk-list__th,
.table-bk-list__td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.table-bk-list__th {
  padding: 24px 16px;
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: var(--blue);
}

.table-bk-list__td {
  position: relative;
  padding: 8px 12px;
}

.table-bk-list__th-rank,
.table-bk-list__td-rank {
  flex-basis: 11%;
  align-items: start;
}

.table-bk-list__th-operator,
.table-bk-list__td-operator {
  flex-basis: 24%;
}

.table-bk-list__th-bonus,
.table-bk-list__td-bonus {
  flex-basis: 24%;
}

.table-bk-list__th-rating,
.table-bk-list__td-rating {
  flex-basis: 24%;
}

.table-bk-list__th-action,
.table-bk-list__td-action {
  flex-basis: 17%;
  align-items: end;
}

.table-bk-list__th-action {
  padding: 20px 50px;
}

.table-bk-list__td::after {
  content: '';
  position: absolute;
  top: calc(50% - 12px);
  right: -12px;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icons/icon-table-decor.svg) center no-repeat;
}

.table-bk-list__td:last-child::after {
  display: none;
}

/* .table-bk-list__td--last-child::after {
  display: none;
}
.table-bk-list__td-action::after {
  display: none;
} */


.star-rating {
  display: flex;
  gap: 4px;
}

.star {
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: opacity .3s;
}

.star-rating_white .star {
  width: 30px;
}

.star-rating_black .star {
  width: 30px;
}

.star_full {
  background: url(../images/icons/icon-star-full.svg) center no-repeat;
}

.star_full_blue {
  background: url(../images/icons/icon-star-full-blue.svg) center no-repeat;
}

.star_empty {
  background: url(../images/icons/icon-star-empty.svg) center no-repeat;
}

.star-rating--large {
  gap: 8px;
}

.star-rating--large .star {
  width: 32px;
  height: 32px;
  background-size: contain;
}

.articles-nav {
  margin-bottom: 24px;
}

.articles-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.articles-nav__item {
  margin: 0;
}

.articles-nav__item::before {
  display: none;
}

.articles-nav__link {
  display: inline-block;
  padding: 4px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  transition: color .3s;
}

.articles-nav__link.active {
  color: var(--blue);
  border-color: var(--blue);
  pointer-events: none;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.rating .ellipse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.rating .ellipse_full {
  background: var(--blue);
}

.rating .ellipse_empty {
  background: unset;
}

.bk-score {
  padding: 0;
  border-radius: 0;
}

.bk-score td {
  vertical-align: middle;
  padding: 4px;
}

.bk-score tbody tr {
  border: none;
}

.bk-score__bonus,
.bk-score__summary {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--secondary);
}

.bk-score__bonus {
  text-align: left !important;
}

.bk-score__summary {
  width: 60px;
  text-align: right !important;
}

.bk-score__bonus span {
  color: var(--blue);
}

.bk-plusminus {
  display: flex;
  background: rgba(75, 111, 231, 0.05);
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 48px 24px;
}

.bk-plusminus__list {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  flex-basis: 50%;
  margin: 0;
  padding-right: 80px;
}

.bk-plusminus__list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: var(--ghost);
  margin: 0;
}

.bk-plusminus__list_plus li::before,
.bk-plusminus__list_minus li::before {
  content: '';
  left: -36px;
  width: 24px;
  height: 24px;
}

.bk-plusminus__list_plus li::before {
  background: url(../images/icons/icon-list-plus.svg) center no-repeat;
}

.bk-plusminus__list_minus li::before {
  background: url(../images/icons/icon-list-minus.svg) center no-repeat;
}


.bk-contacts {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  flex-wrap: wrap;
}

.bk-contact-item {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(27, 32, 49, 0.1);
  border-radius: 8px;
  gap: 8px;
  padding: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--dark);
}

.bk-contact-item::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.bk-contact-item_fm::before {
  background-image: url(../images/icons/icon-contacts-fm.svg);
}

.bk-contact-item_tw::before {
  background-image: url(../images/icons/icon-contacts-tw.svg);
}

.bk-contact-item_fb::before {
  background-image: url(../images/icons/icon-contacts-fb.svg);
}

.bk-contact-item_wa::before {
  background-image: url(../images/icons/icon-contacts-wa.svg);
}

.bk-contact-item_in::before {
  background-image: url(../images/icons/icon-contacts-in.svg);
}

.bk-contact-item_chat::before {
  background-image: url(../images/icons/icon-contacts-chat.svg);
}

.bk-contact-item_email::before {
  background-image: url(../images/icons/icon-contacts-email.svg);
}

.bk-contact-item_phone::before {
  background-image: url(../images/icons/icon-contacts-phone.svg);
}

.share {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  background: #007ACC;
  border-radius: 8px;
  gap: 16px;
}

.share-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--white);
}

.share-list {
  display: flex;
  gap: 12px;
}

.share-item {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: opacity .3s;
}

.share-item::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.share-item_fb::before {
  background-image: url(../images/icons/icon-share-fb.svg);
}

.share-item_tw::before {
  background-image: url(../images/icons/icon-share-tw.svg);
}

.share-item_tg::before {
  background-image: url(../images/icons/icon-share-tg.svg);
}

.share-item_wa::before {
  background-image: url(../images/icons/icon-share-wa.svg);
}

.share-item:hover {
  opacity: .6;
}
/*
.section-bk-items {
  padding-top: 120px;
}
*/
.bk-items {
  background: #FFFFFF;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 48px;
}

.bk-items__caption {
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--secondary);
}

.bk-items__title {
  margin-bottom: 24px;
  text-align: center;
}

.bk-items__desc {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--secondary);
  margin: 0 auto 48px;
  text-align: center;
  max-width: 600px;
}

.bk-item {
  margin-bottom: 48px;
  color: var(--dark);
  background: rgba(250, 250, 250, 0.85);
  ;
  border-radius: 20px;
  padding: 24px;
}

.bk-item-main {
  display: flex;
  justify-content: space-between;
}

.bk-item-general {
  position: relative;
  flex-basis: 26.5%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(27, 32, 49, 0.1);
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
}

.bk-item-general__sticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
}

.bk-item-general__sticker_bg {
  position: absolute;
  background: rgba(41, 145, 24, 0.1);
  color: #6DB862;
}

.bk-item-star-rating {
  gap: 6px;
}

.score {
  font-weight: 700;
  line-height: 130%;
}

.score__first-letter {
  font-size: 28px;
}

.bk-item-adv {
  flex-grow: 1;
  padding: 0 32px 4px;
}

.bk-item__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bk-item__level {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  color: var(--violet);
}

.bk-item__rating {
  gap: 0;
}

.bk-item-adv-wrap {
  display: flex;
  padding: 10px 0 32px;
  border-bottom: 1px solid rgba(27, 32, 49, 0.1);
  margin-bottom: 32px;
}

.bk-item-adv-wrap>* {
  flex-basis: 50%;
}

.bk-item__adv-list,
.bk-item__disadv-list {
  margin: 0;
  margin-left: 40px;
  margin-right: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bk-item__adv-item,
.bk-item__disadv-item {
  display: flex;
  align-items: center;
  color: var(--ghost);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
}

.bk-item__adv-item::before,
.bk-item__disadv-item::before {
  content: '';
  left: -36px;
  width: 24px;
  height: 24px;
}

.bk-item__adv-item::before {
  background: url(../images/icons/icon-list-plus.svg) center no-repeat;
}

.bk-item__disadv-item::before {
  background: url(../images/icons/icon-list-minus.svg) center no-repeat;
}

.bk-item-offer {
  flex-basis: 25%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 30px;
}

.bk-item-offer__info {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--blue);
  margin-bottom: 16px;
}

.bk-item-offer__caption {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 32px;
}

.more-text-btn,
.bk-item-accordion-btn {
  display: flex;
  margin: 2px auto 3px;
}

.bk-item-accordion-panel-content {
  display: flex;
  gap: 24px;
  padding: 68px 12px 0 12px;
}

.bk-item-about {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}

.bk-item-about__caption {
  color: var(--secondary);

}

.bk-item-info {
  flex-basis: 25%;
}

.bk-item-brief {
  flex-basis: 45%;
}

.bk-item-pics {
  flex-basis: 30%;
  overflow-x: auto;
}

.bk-item-pics__inner {
  min-width: 372px;
  display: flex;
  gap: 12px;
}

.bk-item-pics img {
  width: 180px;
}

.bk-item-brief__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: var(--violet);
}

.bk-item-brief__head-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bk-item-brief__image {
  border-radius: 50%;
  overflow: hidden;
  width: 34px;
  height: 34px;
}

.bk-item-brief__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bk-item-brief__author {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: var(--dark);
}

.bk-item-brief__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(27, 32, 49, 0.3);
}

.bk-item-brief__text {
  padding: 12px 0;
}

.bk-item-brief__link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: var(--blue);
  text-decoration: underline;
}

.bk-item-brief__link:hover {
  text-decoration: none;
}

.bk-item-payment-wrap {
  padding: 12px 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.bk-item-payment {
  flex-basis: calc(50% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  text-align: center;
  padding: 5px 0;
}

.bk-item-payment:last-child {
  padding-bottom: 0;
}

.bk-item-payment>* {
  width: calc(100% / 3);
  text-align: center;
}

.bk-item-payment-th {
  color: var(--violet)
}

.bk-item-payment-td {
  border-top: 1px solid rgba(75, 77, 84, .2);
}


.td-rank__rank {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: var(--white);
  background: var(--blue);
}

.td-bonus__bonus {
  text-transform: uppercase;
}

.td-bonus__desc {
  color: var(--blue);
}

/* bk-best-item */

.bk-best-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  padding: 76px 30px;
  text-align: center;
}

.bk-best-item__image {
  margin-bottom: 20px;
}

.bk-best-item__ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-top: 1px solid rgba(27, 32, 49, 0.1);
  border-bottom: 1px solid rgba(27, 32, 49, 0.1);
  text-align: left;
  flex-grow: 1;
}

.bk-best-item__li {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: var(--ghost);
  margin: 0;
}

.bk-best-item__li::before {
  content: '';
  display: inline-block;
  position: initial;
  margin-right: 8px;
  width: 14px;
  height: 14px;
  background: url(../images/icons/icon-list-plus-sm.svg) center no-repeat;
  flex-shrink: 0;
}

.bk-best-item__rating {
  justify-content: center;
  margin: 40px 0 36px;
  gap: 0;
}

.bk-best-item__btn {
  margin-bottom: 10px;
  margin-top: 10px;
}

.bk-best-item__link {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

/* .bk-info */
.bk-info {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.bk-info__image {
  margin-bottom: 24px;
}

.bk-info__rating-betlogo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.bk-info__rating-betlogo-caption {
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: var(--ghost);
}

.bk-info__rating-betlogo-score {
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: var(--ghost);
}

.bk-info__payment-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bk-info__payment-caption {
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: var(--ghost);
}

.bk-info__payment-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.bk-info-second-part {
  text-align: center;
}

.bk-info__bonus-wrap {
  margin-top: 20px;
}

.bk-info__bonus-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--blue);
  margin-bottom: 12px;
}

.bk-info__bonus-caption {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: var(--secondary);
  margin-bottom: 24px;
}


/* .bk-bonus */
.bk-bonus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 32px;
  box-shadow: 0px 0px 20px rgba(75, 111, 231, 0.06);
  border-radius: 12px;
}

.bk-bonus-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
}

/* .bk-short-info */

.bk-short-info__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  border-bottom: 1px solid var(--blue);
  margin-bottom: 28px;
}

.bk-short-info {
  background: #FAFAFA;
  border: 1px solid #EAECF2;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 44px 60px;
  position: relative;
  max-height: 500px;
}

.bk-short-info-500 {
  max-height: 500px;
}

.bk-short-info-200 {
  max-height: 200px;
}

.bk-short-info::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, #FAFAFA 0%, rgba(250, 250, 250, 0.6) 100%);
  transform: rotate(-180deg);
}

.bk-short-info.active::before {
  display: none;
}

.bk-short-info__item {
  flex-basis: calc(50% - 30px);
}

.bk-short-info-item__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
}

.bk-short-info-item__desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
}

.bk-short-info__btn {
  position: relative;
  top: -20px;
  left: calc(50% - 20px);
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue) url(../images/icons/icon-chevron-down.svg) center no-repeat;
  border: none;
}

.bk-short-info__btn.active {
  transform: rotate(180deg);
}

/* .bk-bottombox */

.bk-bottombox {
  z-index: 5;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue);
  padding: 6px 0;
  border-top: 1px solid var(--white);
  display: none;
}

.bk-bottombox-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bk-bottombox__rating-betlogo-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bk-bottombox__rating-betlogo-caption,
.bk-bottombox__rating-betlogo-score {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: var(--white);
}

.bk-bottombox__rating-betlogo {
  flex-basis: 100%;
  margin-top: 4px;
}

.rating-betlogo {
  display: flex;
  gap: 4px;
}

.rating-betlogo__star {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.rating-betlogo__star--full {
  background: url(../images/icons/icon-star-betlogo-full.svg) center no-repeat;
}

.rating-betlogo__star--empty {
  background: url(../images/icons/icon-star-botlogo-empty.svg) center no-repeat;
}

.bk-bottombox__bonus-caption {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: var(--white);
}

.bk-bottombox__bonus-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: var(--white);
  margin-top: 4px;
}

.bk-bottombox__btn-wrap .bk-bottombox__bonus-title {
  display: none;
}

.bk-bottombox__btn-bonus {
  display: none;
}

.bk-bottombox__btn {
  padding: 4px 24px;
}

.bk-bottombox__image {
  background-color: white
}

.bk-bottombox__image img {
  max-height: 48px;
}

/* SWIPER */

.swiper-bk-compare .swiper-button-prev {
  left: 30px;
  transform: scale(.75);
  color: var(--blue);
}

.swiper-bk-compare .swiper-button-next {
  right: 30px;
  transform: scale(.75);
  color: var(--blue);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  color: var(--dark);
}

/* FOOTER */

.footer {
  padding: 80px 0;
  text-align: justify;
}

.footer__left-part .logo {
  display: inline-block;
  margin-bottom: 33px;
}

.footer__left-part h4 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.footer__left-part p {
  color: var(--ghost);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 28px;
  max-width: 445px;
  line-height: 160%;
}

.footer__left-part .limit {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 32px;
  background-color: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
  margin-right: 15px;
}

.footer__right-part h4 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.footer__right-part p {
  color: var(--ghost);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 0;
}

.wp-block-table td,
.wp-block-table th {
  border: none !important;
}

.wp-block-table thead {
  border: 0 !important;
  border-bottom: 1px solid var(--ghost) !important;
}

/* width */
.bk-item ::-webkit-scrollbar,
.content ::-webkit-scrollbar {
  height: 8px;
}

/* Track */
.bk-item ::-webkit-scrollbar-track,
.content ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.bk-item ::-webkit-scrollbar-thumb,
.content ::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.bk-item ::-webkit-scrollbar-thumb:hover,
.content ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.content table td ul {
  text-align: start;
  margin-bottom: 0;
  padding-left: 20px;
}

.content table td ul li {
  margin-bottom: 0;
}

@font-face {
  src: url("../fonts/Oswald-DemiBold.woff2") format("woff2");
  font-family: oswald;
  font-weight: 600;
  font-style: normal;
}

.hhero {
  position: relative;
  padding: 22px 42px 42px;
  border-radius: 20px;
  color: var(--white);
}
.hhero {
  padding-bottom: 72px;
}
.hhero__caption {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  padding: 5px 13px 8px 22px;
  border-radius: 0 0 0 20px;
  background-color: rgba(255,255,255,.4);
}
.hhero__inscription {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-weight: 500;
  padding: 8px 16px;
  text-align: center;
  background-color: rgba(255,255,255,.4);
}
.hhero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 32px;
  letter-spacing: 1.5px;
}

.hhero__logo-wrap {
  width: 210px;
  height: 76px;
}
.hhero__logo-image {
  width: 100%;
  border-radius: 12px;
}

.hhero__rating-wrap {
  margin-top: 16px;
}
.hhero__rating-caption {
  font-weight: 600;
  margin-bottom: 4px;
}
.hhero__rating-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hhero__rating-score {
  font-weight: 600;
  line-height: 21px;
}
.hhero__rating {
  display: flex;
  gap: 4px
}
.hhero__rating-star {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.hhero__rating-star--full {
  background: url(../images/icons/icon-hero-star-full.svg) center no-repeat;
}
.hhero__rating-star--empty {
  background: url(../images/icons/icon-hero-star-empty.svg) center no-repeat;
}

.hhero__payments-wrap {
  margin-top: 16px;
}
.hhero__payments-caption {
  font-weight: 600;
  margin-bottom: 4px;
}
.hhero__payments {
  display: flex;
  gap: 12px;
}
.hhero__payments {
  display: flex;
  gap: 12px;
}
.hhero-payments__img {
  border-radius: 2px;
}

.hhero__inner {
  display: flex;
  gap: 68px;
  align-items: center;
}

.hhero__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hhero__btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 32px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .3s;
  cursor: pointer;
  background: #93C738;
  color: var(--white);
  text-align: center;
}
.hhero__btn:hover {
  background: var(--white);
  color: var(--text);
}
.hhero__btn--white {
  background: var(--white);
  color: var(--text);
}
.hhero__btn--white:hover {
  background: var(--blue);
  color: var(--white);
}
.hhero__btns-wrap {
  display: flex;
  gap: 20px;
  width: auto;
}
.hhero__btns-wrap>* {
  flex-grow: 1;
}

.hhero-specs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hhero-specs__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}
.hhero-specs-item__name {
  font-weight: 600;
  line-height: 32px;
}
.hhero-specs-item__param {
  display: inline-block;
  text-align: center;
  min-width: 32px;
  height: 32px;
  font-weight: 600;
  background: var(--blue);
  border-radius: 100px;
  padding: 4px 8px;
}

.hhero-app {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hhero-app-item {
  display: flex;
  gap: 4px;
  background-color: var(--blue);
  border-radius: 8px;
  padding: 4px 10px;
  align-items: center;
  width: 220px;
  min-height: 76px;
}

.hhero-app-item__icon {
  width: 34px;
  height: 34px;
}

.hhero-app-item__caption {
  font-size: 12px;
  line-height: normal;
}

.hhero-app-item__title {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.hhero__desc {
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  line-height: normal;
}
.hhero__desc span {
  color: #ffdd30;
  text-transform: uppercase;
}

.hhero-advantages {
  display: flex;
  gap: 40px;
}
.hhero-advantages-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.hhero-check {
  display: flex;
  gap: 8px;
}
.hhero-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: normal;
}

.hhero__promocode-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.hhero__promocode-wrap>* {
  flex-grow: 1;
}
.hhero__promocode-inner {
  text-align: center;
}
.hhero__promocode__caption {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 6px;
}
.hhero-promocode {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 32px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .3s;
  cursor: pointer;
  background: var(--white);
  color: var(--blue);
  text-align: center;
  width: 100%;
}

.hhero-promocode svg:last-of-type {
  display: none;
}

.hhero-promocode.coped svg:last-of-type {
  display: inline;
}

.hhero-promocode.coped svg:first-of-type {
  display: none;
}


.hhero-vs {
  position: relative;
  display: flex;
  gap: 232px;
  width: fit-content;
}
.hhero-vs__item {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px 22px;
  flex-wrap: wrap;
  width: 400px;
}
.hhero-vs__item .hhero__btn {
  width: 210px;
}
.hhero-vs__rating-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.hhero-vs__rating-caption {
  font-weight: 500;
}
.hhevo-vs__rating__score {
  font-size: 36px;
  font-weight: 600;
  color: #FFDD30;
}
.hhero-vs__vs {
  font-family: oswald;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: .3;
  font-size: 96px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@media (max-width: 1199px) {
  .hhero__title {
    font-size: 46px;
  }
  .hhero-specs {
    gap: 15px;
  }
  .hhero__desc {
    font-size: 28px;
  }
  .hhero-vs__item {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .hhero__title {
    font-size: 38px;
  }
  .hhero__inner {
    flex-direction: column;
    gap: 20px;
  }
  .hhero-vs {
    gap: 40px;
    justify-content: space-between;
    width: 100%;
  }
  .hhero-vs .hhero__logo-wrap {
    width: 155px;
    height: 55px;
  }
  .hhero-vs__item {
    gap: 9px;
  }
  .hhero-vs__rating-wrap {
    padding-top: 0;
  }
  .hhero-vs__rating-caption {
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .hhero {
    padding: 16px 16px 26px;
  }
  .hhero--promo {
    padding-bottom: 64px;
  }
  .hhero__caption {
    position: initial;
    border-radius: 10px;
  }
  .hhero-logo-caption-wrap {
    display: flex;
    gap: 8px;
  }
  .hhero__title {
    font-size: 32px;
    margin-bottom: 24px;
	text-align: center;
  }
  .hhero__info {
    align-items: flex-start;
  }
  .hhero__logo-wrap {
    width: 155px;
    height: 55px;
	margin: 0 auto;
  }
  .hhero-advantages {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }
  .hhero-check {
    flex-direction: column;
    gap: 8px;
  }
  .hhero-app {
    flex-direction: column;
    gap: 16px;
  }
  .hhero-specs {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .hhero-specs__item {
    padding: 0;
  }
  .hhero__promocode-wrap {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .hhero__promocode-wrap>* {
    width: 100%;
  }
  .hhero__desc {
    font-size: 24px;
    text-align: start;
  }
  .hhero__btns-wrap {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .hhero-vs {
    flex-direction: column;
    gap: 56px;
  }
  .hhero-vs__vs {
    position: relative;
  }
  .hhero-vs .hhero__logo-wrap {
    width: 210px;
    height: 76px;
  }
  .hhero-vs__item {
    flex-wrap: wrap;
    gap: 8px;
    width: auto;
  }
  .hhero-vs__rating-wrap {
    padding-top: 8px;
    gap: 12px;
    width: 50px;
  }
  .hhero-vs__item .hhero__btn {
    width: 268px;
  }
  .hhero-vs__rating-caption {
    line-height: initial;
  }
  .hhero__btn {
    width: 100%;
  }
  .hhero-vs__vs {
    padding: 0 40px;
    justify-content: flex-start;
  }
}

.content-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-btn svg {
  transition: transform 0.3s ease-in-out;
  display: none;
}

.content-btn.show svg {
  transform: rotate(180deg);
}

.flex-banners {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.block-btn-articles {
  display: block;
}

.hhero-vs__wrap {
  display: flex;
  gap: 15px;
}

/* CUSTOM STYLES */
/* Footer nav only (safe override) */
.footer-nav .menu{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:10px 14px;
  margin:0;
  padding:0;
}

.footer-nav .menu > li{margin:0; padding:0}
.footer-nav .menu > li:before{content:none}

/* flags row */
.footer-nav .menu > li.lang-item{order:0}
.footer-nav .menu > li.lang-item a{padding:0; margin:0; background:transparent}
.footer-nav .menu > li.lang-item img{width:22px; height:22px; border-radius:50%; display:block}

/* break line after flags */
.footer-nav .menu:after{content:""; flex-basis:100%; order:1}

/* text row */
.footer-nav .menu > li:not(.lang-item){order:2}
.footer-nav .menu > li:not(.lang-item) a{
  padding:0;
  margin:0;
  color:var(--secondary);
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
}
.footer-nav .menu > li:not(.lang-item) a:hover{color:var(--blue)}





/* new styles */




.span_small{	
	display:contents;
}

.color_btn1{
	background-color: #7EAC2F;
}

@media (max-width: 650px) {
	
.hhero-advantages-item{
	font-size: 12px;
}
.span_small{
	font-size: 10px;
	display:contents;
}

.hhero__info{
	align-items:normal;
}

.hhero-advantages{
	gap: 25px;
}
.hhero-app{
	flex-direction: row;
}

.hhero-app-item{
	width: auto;
	min-height: 64px;
	gap: 10px;
	
}
.hhero-app-item__icon{
	width: 24px;
}

}

