@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Убираем внутренние отступы */
ul[class],
ol[class],
ul,
ol,
li {
  padding: 0;
  margin: 0;
}
/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class],
li {
  list-style: none;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
}
button,
[role=button] {
  cursor: pointer;
}
/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}
.body--inner {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  min-height: 100vh;
}
body {
  background: #F9F9F9;
  font-family: "Roboto", sans-serif;
  color: #474747;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 100%;
}
.button--blue, .button--border {
  background: #3C49FF;
  box-shadow: 0px 1px 24px rgba(112, 78, 244, 0.4);
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  line-height: 1.15;
  font-size: 16px;
  padding: 12px 18px;
  border: 1px solid #3C49FF;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.button--border {
  background: transparent;
  box-shadow: none;
}
.header {
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  background: #0A081B;
  border-radius: 12px;
  padding: 20px 60px;
}
.header--links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header--logo {
  max-width: 105px;
}
.header--menu-btn {
  display: none;
}
.header--menu-wrap .header--links {
  display: none;
}
.header--menu .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header--menu .menu > li:nth-child(-n+5) > a {
  padding-left: 23px;
}
.header--menu .menu > li:nth-child(-n+5) > a:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.header--menu .menu > li:nth-child(1) > a:before {
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/menu-icons/1.svg);
}
.header--menu .menu > li:nth-child(2) > a:before {
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/menu-icons/2.svg);
}
.header--menu .menu > li:nth-child(3) > a:before {
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/menu-icons/3.svg);
}
.header--menu .menu > li:nth-child(4) > a:before {
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/menu-icons/4.svg);
}
.header--menu .menu > li:nth-child(5) > a:before {
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/menu-icons/5.svg);
}
.header--menu a {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  position: relative;
}
.header--menu a:hover {
  color: #FF9500;
}
.header--menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 15px 25px;
  border-radius: 5px;
  background: #070045;
}
.header--menu .sub-menu a {
  white-space: nowrap;
}
.header--menu .menu-item-has-children {
  position: relative;
}
.header--menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}
.header--menu .menu-item-has-children > a {
  padding-right: 26px;
}
.header--menu .menu-item-has-children > a:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 16px;
  width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.66666 6.66667L8 10L11.3333 6.66667' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .header {
    top: 20px;
    left: 5px;
    right: 5px;
    padding: 15px;
  }
}
@media (max-width: 1024px) {
  .header--right {
    display: none;
  }
  .header--menu-wrap {
    display: none;
    position: absolute;
    width: 100%;
    top: calc(100% - 10px);
    left: 0;
    background: #0A081B;
    padding: 20px 15px 15px;
    border-radius: 0 0 12px 12px;
  }
  .header--menu-wrap .header--links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    align-items: center;
    margin-bottom: 15px;
  }
  .header--menu-wrap.-toggle {
    display: block;
  }
  .header--menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 22px rgba(0, 96, 241, 0.25));
    background: #000B1D;
  }
  .header--menu-btn span {
    width: 24px;
    height: 24px;
  }
  .header--menu-btn span:last-child {
    display: none;
  }
  .header--menu-btn.-toggle span:first-child {
    display: none;
  }
  .header--menu-btn.-toggle span:last-child {
    display: block;
  }
  .header--menu .menu-item-has-children {
    position: relative;
  }
  .header--menu .menu-item-has-children:hover > a {
    background: #3B49FF;
  }
  .header--menu .sub-menu {
    position: relative;
    padding: 0 15px;
  }
  .header--menu .sub-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #3B49FF;
  }
  .header--menu .sub-menu li:last-child {
    border-bottom: none;
  }
  .header--menu a {
    display: block;
  }
  .header--menu .menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header--menu .menu > li > a {
    background: #00010C;
    border-radius: 30px;
    padding: 12px 20px 12px 38px !important;
  }
  .header--menu .menu > li > a:before {
    left: 15px !important;
  }
  .header--menu .menu > li > a:after {
    right: 15px !important;
  }
  .header--menu li {
    width: 100%;
  }
}
.page--content {
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/main-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.page--banner {
  padding: 160px 0 40px;
  background-size: cover;
  background-position: center;
}
.page--banner-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  color: #fff;
}
.page--banner-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.17;
  margin-bottom: 20px;
}
.page--banner-title span {
  color: #FF9500;
}
.page--banner-text {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page--banner-text p {
  margin-bottom: 16px;
}
.page--banner-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.page--content {
  padding: 60px 0;
}
.page--content h2 {
  margin-bottom: 30px;
  margin-top: 60px;
  color: #0A081B;
}
.page--content h2 span {
  color: #FF9500;
}
.page--content h2:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .page--banner {
    padding: 118px 0 25px;
  }
  .page--banner-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .page--banner-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page--banner-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page--banner-right {
    display: flex;
    justify-content: center;
  }
  .page--content {
    padding: 50px 0;
  }
}
.block-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
}
.block-cards--card {
  background: #fff;
  box-shadow: 0px 0px 15px rgba(112, 78, 244, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
.block-cards--top {
  padding: 10px;
}
.block-cards--logo {
  height: 104px;
  padding: 12px;
  background: #0B0035;
  border-radius: 10px;
  margin-bottom: 10px;
}
.block-cards--logo div {
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.block-cards--title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
  color: #0A081B;
  text-align: center;
  margin-bottom: 10px;
}
.block-cards--row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  background: #F1EDFE;
  border-radius: 6px;
  margin-bottom: 10px;
}
.block-cards--row p {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 5px;
}
.block-cards--row p svg {
  width: 15px;
  height: 15px;
}
.block-cards--row span {
  font-size: 18px;
  color: #0A081B;
  font-weight: 600;
  line-height: 1.5;
}
.block-cards--links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block-cards--links a {
  width: 100%;
}
.block-cards--links .button--border {
  color: #0A081B;
}
.block-cards--bottom {
  background: #F1EDFE;
  padding: 5px 15px;
  text-align: center;
  color: #3C49FF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.block-cards--bottom a {
  color: #3C49FF;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .block-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.provider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  background: #fff;
  box-shadow: 0px 0px 15px rgba(112, 78, 244, 0.15);
  border-radius: 10px;
  padding: 10px;
}
.provider--logo {
  min-width: 24%;
  min-height: 104px;
  padding: 16px;
  background: #0B0035;
  border-radius: 10px;
  position: relative;
}
.provider--logo div {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.provider--name {
  min-width: 15.3%;
  color: #0A081B;
  font-size: 28px;
  font-weight: 700;
}
.provider--bonus {
  min-width: 18%;
  background-color: #F1EDFE;
  border-radius: 10px;
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/bonus-bg.svg);
  background-size: 42%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 104px;
  font-weight: 600;
  font-size: 20px;
  color: #0A081B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.provider--bonus span {
  color: #FF9500;
}
.provider--advantages {
  min-width: 18.5%;
}
.provider--links {
  min-width: 16%;
}
.provider--advantages-item {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 5px;
  color: #474747;
  position: relative;
  padding-left: 18px;
}
.provider--advantages-item:before {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 10px;
  width: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='11' viewBox='0 0 12 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 5.5L5.25 7L8.25 4M11 5.5C11 8.26142 8.76142 10.5 6 10.5C3.23858 10.5 1 8.26142 1 5.5C1 2.73858 3.23858 0.5 6 0.5C8.76142 0.5 11 2.73858 11 5.5Z' stroke='%233ACD6C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.provider--advantages-item:last-child {
  margin-bottom: 0;
}
.provider--links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.provider--links .button--border {
  color: #0A081B !important;
}
.provider--links a {
  width: 100%;
}
@media (max-width: 1024px) {
  .provider {
    flex-direction: column;
  }
  .provider > * {
    width: 100%;
  }
  .provider--name {
    text-align: center;
  }
  .provider--bonus {
    background-size: contain;
  }
  .provider--links {
    gap: 10px;
  }
}
.footer {
  padding: 60px 60px 50px;
  background-color: #0A081B;
  background-image: url(//casino-chicken-road.com/wp-content/themes/theme/dist/styles/../../images/footer-bg.png);
  background-size: cover;
  background-position: center;
}
.footer--logo {
  max-width: 180px;
}
.footer--row {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}
.footer--menu {
  width: 100%;
  padding: 33px 60px;
  border-radius: 12px;
  background: #0A081B;
}
.footer--menu .menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer--menu a {
  font-size: 22px;
  line-height: 25px;
  color: #fff;
  font-weight: 600;
}
.footer--menu a:hover {
  color: #FF9500;
}
@media (max-width: 1024px) {
  .footer {
    padding: 30px 5px 5px;
  }
  .footer--logo {
    max-width: 106px;
  }
  .footer--menu {
    padding: 30px;
  }
  .footer--menu .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .footer--menu a {
    font-size: 16px;
    line-height: 18px;
  }
}