:root {
  --font-manrope: "Manrope", sans-serif;
}

:root {
  --color-white: #fff;
  --color-white-80: #f9f9f9;
  --color-white-35: rgba(255, 255, 255, 0.35);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-blue: #14A0FF;
  --color-orange: #FA7D11;
  --color-orange-hover: #FF9234;
  --color-deep-blue: #133C9E;
  --color-yellow: #FFE418;
  --color-banner-1: #711317;
  --color-banner-2: #112D40;
  --color-dark: #101010;
  --color-menu-bg: #404040;
  --color-grey-medium: #888888;
  --color-light-grey: #c7c7c7;
  --color-black: #000;
}

@font-face {
	font-family: Manrope;
	font-display: swap;
	src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2"), url(../fonts/Manrope-ExtraBold.woff) format("woff");
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: Manrope;
	font-display: swap;
	src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url(../fonts/Manrope-Bold.woff) format("woff");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: Manrope;
	font-display: swap;
	src: url("../fonts/Manrope-ExtraLight.woff2") format("woff2"), url(../fonts/Manrope-ExtraLight.woff) format("woff");
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: Manrope;
	font-display: swap;
	src: url("../fonts/Manrope-Light.woff2") format("woff2"), url(../fonts/Manrope-Light.woff) format("woff");
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: Manrope;
	font-display: swap;
	src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url(../fonts/Manrope-Medium.woff) format("woff");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: Manrope;
	font-display: swap;
	src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url(../fonts/Manrope-SemiBold.woff) format("woff");
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: Manrope;
	font-display: swap;
	src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url(../fonts/Manrope-Regular.woff) format("woff");
	font-weight: 400;
	font-style: normal;
}


html {
  height: 100%;
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-width: 320px;
  height: 100%;
  font-family: var(--font-manrope);
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-white);
  background-color: var(--color-dark);
}

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

a {
  color: var(--color-orange);
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
textarea {
  padding: 0.7rem 1.5rem;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.4rem;
  color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: 3px;
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.btn {
  display: inline-block;
  padding: 1.4rem 3.4rem;
  font-family: var(--font-manrope);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.3rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  background-color: var(--color-white-20);
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover,
.btn:focus {
  background-color: var(--color-white-35);
}

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

.btn--blue:hover,
.btn--blue:focus {
  color: var(--color-dark);
  background-color: var(--color-white);
}

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

.btn--orange:hover,
.btn--orange:focus {
  background-color: var(--color-orange-hover);
}

.btn--white {
  color: #201F54;
  background-color: var(--color-white);
}

.btn--white:hover,
.btn--white:focus {
  color: var(--color-white);
  background-color: var(--color-blue);
}


.entry-btn {
  display: block;
  max-width: max-content;
  margin: 2rem auto 5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  position: relative;
  margin-bottom: 2rem;
  font-family: var(--font-manrope);
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  clear: both;
}

h1,
.h1 {
  font-size: 3.2rem;
}

h2,
.h2 {
  font-size: 3.2rem;
}

h3,
.h3 {
  font-size: 3.2rem;
}

h4,
.h4 {
  font-size: 2.6rem;
  line-height: 140%;
}

h5,
.h5 {
  font-size: 2rem;
  line-height: 140%;
}

p {
  margin: 2rem 0;
}

.entry-content h1 span,
.entry-content h2 span,
.entry-content h3 span,
.entry-content h4 span {
  position: absolute;
  top: -7.4rem;
}

.entry-content table {  
  table-layout: fixed;
  width: 100%;
  margin: 3rem auto;
  border-collapse: collapse;
}

.entry-content td {
  min-width: 99px;
  padding: 1.6rem;
  font-size: 1.6rem;
  color: var(--color-dark);
  background: var(--color-white);
}

.entry-content ul {
  list-style-type: disc;
}

.entry-content ul,
.entry-content ol {
  margin: 2rem 0;
  padding-left: 1rem;
  list-style-position: inside;
}

.entry-content li {
  margin-bottom: 1rem;
}

.promo-block {
  margin: 3rem auto;
  padding: 5rem 3.95rem;
  background: #201F54;
  border-radius: 2rem;
  text-align: center;
}

.promo-block p {
  margin: 0;
}

.promo-block__heading {
  max-width: 460px;
  margin: 0 auto 2rem;
  font-size: 2.6rem;
  line-height: 3.9rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
}

.promo-block__text {
  margin-bottom: 3rem;
}

.promo-block__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.promo-block__code {
  padding: 1rem 4rem;
  font-size: 2rem;
  line-height: 2.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 3px dashed var(--color-blue);
}

.promo-block__btn {
  padding: 1.6rem 2.8rem;
  border-radius: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2.5rem);
          backdrop-filter: blur(2.5rem);
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.header__nav {
  position: relative;
}

.header__toggle {
  display: none;
  font-size: 16px;
  line-height: 2.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  background: transparent;
  border: none;
  outline: none;
}

.header__toggle .open {
  padding: 0.5rem;
}

.close {
  position: absolute;
  top: -100%;
  right: 4rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

.header__menu li:not(:last-child) {
  margin-right: 1rem;
}

.header__menu a {
  display: block;
  padding: 2.5rem 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header__menu a:hover {
  color: var(--color-orange-hover);
}

.header__mobile-menu {
  position: absolute;
  right: 50%;
  top: 60px;
  z-index: 999;
  display: none;
  width: 264px;
  padding: 1rem 4.5rem 3rem;
  background-color: var(--color-menu-bg);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header__mobile-menu--active {
  top: 52px;
  opacity: 1;
  visibility: visible;
}

.header__mobile-menu li:not(:last-child) {
  margin-bottom: 2rem;
}

.header__mobile-menu a {
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header__mobile-menu a:hover {
  color: var(--color-orange-hover);
}

.header__cta-btn {
  width: 207px;
}

.menu-item-has-children {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-item-has-children::after {
  content: "";
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons/more.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.menu-item-has-children:hover .sub-menu {
  top: 74px;
  opacity: 1;
  visibility: visible;
}

.sub-menu {
  position: absolute;
  right: 50%;
  top: 80px;
  z-index: 999;
  width: 264px;
  padding: 1rem 4.5rem 3rem;
  background-color: var(--color-menu-bg);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sub-menu li:not(:last-child) {
  margin-bottom: 2rem;
}

.sub-menu a {
  padding: 0;
}

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

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

.logo__img {
  max-width: 91px;
  height: 20px;
}

.slider {
  /* margin: 5rem 0; */
  /* padding: 5rem 0; */
  max-height: 600px;
  background-image: url(../img/bg/slider-bg.jpg);
  background-repeat: no-repeat;
  background-position: center -30px;
  background-size: contain;
}

.slider__container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.swiper {
  position: relative;
  z-index: 100;
}

.swiper-slide {
  opacity: 0!important;
}

.swiper-slide-active {
  opacity: 1!important;
}

.slider__content {
  max-width: 486px;
  padding: 136px 65px 135px 105px;
}

.slider__heading {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.slider__text {
  margin-bottom: 30px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-white);
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid var(--color-white);
  opacity: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
  margin-right: 4rem;
}

.swiper-pagination-bullet-active {
  background: var(--color-white);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  color: var(--color-white)!important;
}


.swiper-button-prev, .swiper-button-next {
  transform: translateY(-50%);
  height: 50px;
  margin-top: -2.5rem;
}

.vertical-images {
  position: relative;
  z-index: 1;
  margin: 9rem 0 8rem;
}

.vertical-img {
  position: absolute;
  right: 7rem;
  top: 0;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.vertical-img img {
  max-width: 450px;
  max-height: 297px;
  object-fit: cover;
  filter: brightness(0.5);
}

.vertical-img.active {
  transform: rotate(-3deg) translate(30px, 0);
  z-index: 1;
}

.vertical-img.active img {
  max-width: 588px;
  max-height: 406px;
  width: 570px;
  height: 377px;
  filter: brightness(1);
  opacity: 1;
  visibility: visible;
}

/* 
.vertical-img:nth-child(1) {
  transform: rotate(-3deg) translate(30px, 0);
}

.vertical-img:nth-child(2) {
  transform: rotate(-7deg) translate(0, -43%);
}

.vertical-img:nth-child(3) {
  transform: rotate(5deg) translate(0, 80%);
} */

/* .vertical-img.active {
  transform: rotate(-3deg) translate(30px, 0);
  z-index: 1;
} */


.vertical-img[data-sld="1"] {
  transform: rotate(-7deg) translate(0, -43%);
}

.vertical-img[data-sld="2"] {
  transform: rotate(-3deg) translate(30px, 0);
}

.vertical-img[data-sld="3"] {
  transform: rotate(5deg) translate(0, 80%);
}

.vertical-img[data-sld="4"] {
  transform: rotate(-3deg) translate(30px, 0);
  opacity: 0;
  visibility: hidden;
}


.main-content {
  max-width: 1041px;
  margin: 3rem auto 7rem;
  padding: 0 3rem;
}

.home .main-content {
  margin-top: 7rem;
}

.main-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.1rem;
}

.main {
  max-width: 690px;
}

.sidebar {
  width: 230px;
  transition: all 0.3s ease-out;
}

.sidebar-home {
  opacity: 0;
  visibility: hidden;
}

.sidebar--active {
  opacity: 1;
  visibility: visible;
}

.sidebar__inner {
  position: sticky;
  top: 13.1rem;
}

.sidebar__item {
  margin-bottom: 1.5rem;
}

.card-cta {
  width: 230px;
  text-align: center;
  border-radius: 2rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(2.5rem);
          backdrop-filter: blur(2.5rem);
}

.card-cta--red {
  background-color: var(--color-banner-1);
}

.card-cta--red:hover {
  background-color: #a02b30;
}

.card-cta--dark {
  background-color: var(--color-banner-2);
}

.card-cta--dark:hover {
  background-color: #23506f;
}

.card-cta--blue {
  background-color: #201F54;
}

.card-cta--blue:hover {
  background-color: #3C3A96;
}

.card-cta--grey {
  background-color: #404040;
}

.card-cta--grey:hover {
  background-color: #646464;
}

.card-cta__link {
  display: block;
  padding: 3.2rem;
  text-decoration: none;
}

.card-cta__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 2rem;
}

.card-cta__text {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.card-cta__text--yellow {
  color: var(--color-yellow);
}

.comments-area {
  margin-top: 5rem;
}

.comment-list .comment-form {
  margin-bottom: 3rem;
}

#cancel-comment-reply-link {
  display: inline-block;
  margin-left: 1rem;
}

.comments-title {
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.comment {
  margin-bottom: 3rem;
}

.comment-meta {
  margin-bottom: 1.5rem;
}

.comment-author {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
}

.vcard .avatar {
  float: left;
  width: 47px;
  height: 47px;
  margin-right: 1.5rem;
  border-radius: 50px;
}

.comment-author b.fn {
  font-weight: 600;
}

.comment-metadata,
.comment-metadata a {
  font-size: 12px;
  line-height: 17px;
  color: var(--color-grey);
}

.comment-content p {
  margin: 1.5rem 0;
}

.comment-reply-link {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

.comment-reply-link::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -2px;
  background-image: url(../img/icons/reply.svg);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  margin-right: 1rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.comment-reply-link:hover {
  color: var(--color-orange);
}

.comment-reply-link:hover::before {
  background-image: url(../img/icons/reply-hover.svg);
}

.load-more {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 3rem auto 0;
  padding: 1.05rem 3.4rem;
}

.comments-wrapp {
  margin-top: 5rem;
  padding: 4.5rem 6.5rem 4.5rem 4.5rem;
}

.comment-reply-title {
  margin-bottom: 1.5rem;
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.comment-notes {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-white);
}

.comment-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.comment-form textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
  background-color: transparent;
}

.comment-form input[name=author],
.comment-form input[name=email] {
  width: 320px;
  max-width: 100%;
  margin-bottom: 2rem;
  background-color: transparent;
}

.comment-form textarea:placeholder,
.comment-form input[name=author]:placeholder,
.comment-form input[name=email]:placeholder {
  color: var(--color-medium-grey);
}

.form-submit {
  margin: 3.5rem 0 0;
}

.btn-submit {
  border: none;
  cursor: pointer;
}

.sended-box {
  display: none;
  padding: 2rem;
  background-color: var(--color-white-35);
  -webkit-backdrop-filter: blur(2.5rem);
          backdrop-filter: blur(2.5rem);
}

.kk-star-ratings .kksr-legend {
  font-size: 1.2rem;
  line-height: 1;
}

.breadcrumbs {
  max-width: 981px;
  margin: 3rem auto 0;
}

#breadcrumbs {
  padding: 1.4rem 2.5rem;
  background: linear-gradient(90.01deg, rgba(255, 255, 255, 0.1) 3.58%, rgba(255, 255, 255, 0) 101.42%);
}

#breadcrumbs a {
  color: var(--color-white);
  text-decoration: none;
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

#breadcrumbs span  {
  color: var(--color-orange);
}

.footer {
  position: relative;
  z-index: 2;
  padding: 5.8rem 0;
  background-image: url(../img/bg/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

.footer__container {
  max-width: 700px;
  margin: 0 auto;
}

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

body.home .footer__top {
  justify-content: space-between;
}

.footer__copyright {
  margin-top: 2.4rem;
  text-align: center;
}

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

.footer a {
  color: var(--color-white);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.premier-link {
  display: block;
  margin-top: 2rem;
}

body.home .premier-link {
  margin-top: 4rem;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: auto;
}

.mobile-cta-home {
  bottom: -100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
} 

.mobile-cta--active {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  /* -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; */
  gap: 1.4rem;
  padding: 0 3.5rem;
}

.mobile-cta__item {
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 360px;
  padding: 1.6rem 3.6rem 1.7rem;
  text-decoration: none;
  color: var(--color-white);
}

.mobile-cta__item--bet365 {
  padding: 1.6rem 4.3rem 1.7rem;
  background-image: url(../img/bg/mob-cta-bet365.jpg);
}

.mobile-cta__item--bet365 .mobile-cta__logo {
  max-width: 91px;
  margin-right: 4.7rem;
}

.mobile-cta__item--bet365 .mobile-cta__text {
  color: var(--color-yellow);
}

.mobile-cta__item--betwinner {
  padding: 1.6rem 3.8rem 1.7rem;
  background-image: url(../img/bg/mob-cta-betwinner.jpg);
}

.mobile-cta__item--betwinner .mobile-cta__logo {
  max-width: 118px;
  margin-right: 3.9rem;
}

.mobile-cta__item--1x {
  padding: 1.6rem 5.2rem 1.7rem;
  background-image: url(../img/bg/mob-cta-1x.jpg);
}

.mobile-cta__item--1x .mobile-cta__logo {
  max-width: 120px;
  margin-right: 3.4rem;
}

.mobile-cta__item__text {
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: 600;
}

.mobile-cta__item--wh {
  padding: 1.6rem 3.8rem 1.7rem;
  background-image: url(../img/bg/mob-cta-wh.jpg);
}

.mobile-cta__item--wh .mobile-cta__logo {
  max-width: 131px;
  margin-right: 1rem;
}

body.page-id-2209 .mobile-cta__item--1x {
 order: 2;
}

body.page-id-2209 .mobile-cta__item--bet365 {
  order: 4;
}

body.page-id-2209 .mobile-cta__item--betwinner {
  order: 3;
}

body.page-id-2209 .mobile-cta__item--wh {
  order: 1;
}

body.page-id-1594 .mobile-cta__item--1x {
  order: 4;
 }
 
 body.page-id-1594 .mobile-cta__item--bet365 {
   order: 2;
 }
 
 body.page-id-1594 .mobile-cta__item--betwinner {
   order: 1;
 }
 
 body.page-id-1594 .mobile-cta__item--wh {
   order: 3;
 }

 .mobile-cta__inner::-webkit-scrollbar {
    display: none;
}

.go-to-top {
  position: absolute;
  left: calc(100% - 30rem);
  top: 2.2rem;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  padding: 1.646rem;
  background: var(--color-white-20);
  border-radius: 0.5rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.go-to-top:hover {
  background: var(--color-white-35);
}

.go-to-top img {
  width: 27px;
  height: 27px;
}


.error404 .app {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

}

.main-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


@media (max-width: 1440px) {
  .main-content__inner {
    gap: 10rem;
  }
  .footer {
    background-image: url(../img/bg/footer-2-bg.png);
  }
}


@media (max-width: 1365px) {
  .go-to-top {
    left: calc(100% - 15rem);
  }

  .go-to-top {
    display: none;
  }
}

@media (max-width: 1300px) {
  .header {
    padding: 1rem 0;
  }

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

  .header__toggle::after {
    content: "";
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24px;
    height: 24px;
    background-image: url(../img/icons/more.svg);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }

  .header__menu {
    display: none;
  }

  .header__mobile-menu {
    display: block;
    min-height: 55vh;
    height: 100%;
    overflow: auto;
  }

  .header__mobile-menu::-webkit-scrollbar {
    display: none;
  }

  .logo {
    width: 207px;
  }
  .swiper {
    height: 490px;
  }
  .slider__container {
    padding: 0 3rem;
  }
  
  .slider__content {
    max-width: 350px;
    padding: 15.5rem 4.5rem 12.5rem 5rem;
  }

  .slider__text {
    display: none;
  }

  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0;
  }
  
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 2rem;
}

.vertical-images {
  margin: 7rem 0 7rem;
}
.vertical-img {
  
  right: 10rem;
}
  .vertical-img img {
    max-width: 337px;
    max-height: 222px;
  }

  .vertical-img.active img {
    max-width: 441px;
    max-height: 304px;
    width: 427px;
    height: 282px;
  }

  .home .main-content {
    margin-top: 4rem;
  }


}

@media (max-width: 1024px) {

  .breadcrumbs {
    max-width: 690px;
  }

  .main-content__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header__container {
    padding: 0 2rem;
  }

  .slider {
    background-image: url(../img/bg/slider-tablet.bg.png);
    background-position: 0 0;
  }

  .swiper {
    height: 316px;
  }

  .slider__content {
    max-width: 300px;
    padding: 7.5rem 1rem 3rem 4.2rem;
  }

  .slider__heading {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  /* .slider__more span {
    display: none;
  } */

  .swiper-button-prev, .swiper-button-next {
    height: 31px;
  }

  .home .main-content {
    margin-top: 3.5rem;
  }

  .footer {
    padding: 5.8rem 0 12rem;
  }

  .mobile-cta {
    display: block;
    width: 100%;
  }
  .footer {
    background-image: url(../img/bg/footer-tablet-bg.png);
    background-position: -470px 0;
  }
  .footer__top {
    -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;
  }

  .premier-link {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .breadcrumbs { 
    margin-top: 2rem;
  }
  .btn {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .entry-btn {
    margin: 2rem auto 3.5rem;
  }

  .hidden-y {
    overflow-y: hidden;
  }

  h1,
  .h1 {
    font-size: 2.6rem;
  }

  h2,
  .h2 {
    font-size: 2.6rem;
  }

  h3,
  .h3 {
    font-size: 2.6rem;
  }

  .entry-content td {
    padding: 5px;
  }

  .promo-block {
    padding: 3rem 3.35rem;
  }

  .promo-block__row {
    flex-direction: column;
  }

  .promo-block__code,
  .promo-block__btn {
    width: 233px;
  }

  .header__container {
    padding: 0 3rem;
  }

  .header__nav {
    position: initial;
  }

  .header__toggle::after {
    content: none;
  }

  .hidden-y .close {
    top: 2rem;
    opacity: 1;
    visibility: visible;
  }

  .header__mobile-menu {
    top: -100vh;
    right: 0;
    width: 100%;
    padding: 5.7rem 4rem 3rem;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .header__mobile-menu--active {
    top: 0;
    height: 100vh;
    overflow: auto;
  }

  .header__cta-btn {
    display: none;
  }

  .logo {
    width: auto;
  }
  .slider {
    /* max-height: 405px; */
    background-image: url(../img/bg/slider-mob-bg.png);
    background-position: 0 0;
  }
  
  .swiper {
    width: 100%;
    height: auto;
  }

  .slider__content {
    max-width: 100%;
    padding: 2.5rem 3rem 3rem; 
  }

  .slider__container {
    flex-direction: column-reverse;
    padding: 0;
  }

  .slider__more {
    display: block;
    max-width: max-content;
    margin: 0 auto;
  }

  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
  
  .swiper-pagination {
    position: relative;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
    margin-right: 2.5rem;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    /* bottom: 2.5rem; */
    bottom: 0;
  }

  .vertical-images {
    /* display: none; */
    top: 2rem;
    display: block;
    margin: 4.2rem auto 0;
    height: 185px;
  }

  .vertical-img {
    position: absolute;
    right: 0;
  }

  .vertical-img img {
    max-width: 200px;
    max-height: 132px;
  }

  .vertical-img.active img {
    max-width: 250px;
    max-height: 165px;
    width: 250px;
    height: 165px;
  }

  .vertical-img[data-sld="1"] {
    transform: rotate(-7deg) translate(-20%, 0);
  }

  .vertical-img[data-sld="2"] {
    transform: rotate(-3deg) translate(50%, -10px);
  }

  .vertical-img[data-sld="3"] {
    transform: rotate(5deg) translate(145%, -25px);
  }

  .vertical-img[data-sld="4"] {
    transform: rotate(-3deg) translate(50%, -10px);
  }


  .main-content {
    margin: 1.2rem auto 6rem;
    padding: 0 2rem;
  }

  .home .main-content {
    margin-top: 3rem;
  }

  .main-content__inner {
    display: block;
  }

  .comments-wrapp {
    margin-top: 2rem;
    padding: 3rem 0;
  }

  .footer {
    background-image: url(../img/bg/footer-mobile-bg.png);
    background-position: -75px 0;
  }

  .footer__container {
    max-width: 325px;
    padding: 0 2rem;
  }

  body:not(.home) .footer__copyright {
    margin-top: 0;
  }

  .go-to-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: -6rem;
    right: 3rem;
    left: unset;
    width: 35px;
    height: 35px;
    padding: 1.1rem;
  }

  .go-to-top img {
    width: 12px;
    height: 12px;
  }

  .mobile-cta__inner {
    display: block;
    padding: 0;
  }

  .mobile-cta__item {
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .mobile-cta__text {
    max-width: 150px;
  }

  .mobile-cta__item--1x {
    display: flex;
  }

  .mobile-cta__item--bet365,
  .mobile-cta__item--betwinner,
  .mobile-cta__item--wh
  {
    display: none;
  }
  
  body.page-id-1600 .mobile-cta__item--bet365 {
    display: flex;
  }

  body.page-id-2209 .mobile-cta__item--betwinner {
    display: flex;
  }

  body.page-id-1594 .mobile-cta__item--wh {
    display: flex;
  }

  body.page-id-2209 .mobile-cta__item--1x {
    display: none;
  }

  body.page-id-1600 .mobile-cta__item--1x {
    display: none;
  }

  body.page-id-1594 .mobile-cta__item--1x {
    display: none;
  }
}

@media (max-width: 359px) {
  .mobile-cta__item {
    padding: 1.6rem 2.2rem 1.7rem;
  }

  .mobile-cta__item--betwinner .mobile-cta__logo {
    margin-right: 2.9rem;
  }

}


@media (min-width: 768px) and (max-width: 1023px) {
  .vertical-images {
    margin: 3.5rem 0;
  }

  .vertical-img {
    right: 4.5rem;
    transition: all 0.3s ease-out;
  }

  .vertical-img[data-sld="1"],
  .vertical-img[data-sld="2"],
  .vertical-img[data-sld="3"],
  .vertical-img[data-sld="4"] {
    transform: rotate(-3deg) translate(0, 0);
    /* opacity: 0; */
  }

  .vertical-img img {
    max-width: 300px;
    max-height: 198px;
  }

  .vertical-img.active {
    /* opacity: 1; */
  }

  .vertical-img.active img {
    max-width: 300px;
    max-height: 198px;
    width: 300px;
    height: 198px;
 
  }
}
