html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
address,
big,
blockquote,
cite,
code,
del,
dfn,
em,
img,
ins,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
input,
fieldset,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
main,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ol,
ul,
nav,
menu {
  list-style: none;
}

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

img {
  vertical-align: bottom;
}

a,
button {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

a:hover,
button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

/* inter  variable */
@font-face {
  font-family: "Inter Variable";
  src: url("../fonts/Inter-VariableFont_slnt,wght.woff2")
      format("woff2 supports variations"),
    url("../fonts/Inter-VariableFont_slnt,wght.woff2")
      format("woff2-variations");
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 85% 100%;
}
/* =========================== all */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Inter Variable", sans-serif;
  color: #333333;
  background: #fff;
  line-height: 1.5;
}

.body_scroll {
  overflow: hidden;
}

/* heading */
.h1,
.h2,
.h3,
.h4 {
  font-weight: 700;
  color: #171616;
  margin-bottom: 20px;
}
.h1 a,
.h2 a,
.h3 a,
.h4 a {
  font-weight: 700;
  font-size: inherit;
}

.h1 {
  font-size: 34px;
  line-height: 44px;
}
@media screen and (max-width: 768px) {
  .h1 {
    font-size: 30px;
    line-height: 38px;
  }
}

.h2 {
  font-size: 26px;
  line-height: 34px;
}

.h3 {
  font-size: 24px;
  line-height: 32px;
}

.h4 {
  font-size: 22px;
  line-height: 30px;
}

.h5 {
  font-size: 20px;
  line-height: 28px;
}

.section:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .section:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* content */
a,
p,
ol:not([class]) li,
ul:not([class]) li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

p {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  p {
    margin-bottom: 20px;
  }
}

.text p:last-child {
  margin-bottom: 0;
}

a:not([class]) {
  text-decoration: underline;
}
a:not([class]):hover {
  color: #137ef4;
}

b,
strong {
  font-weight: 600;
}

i,
em {
  font-style: italic;
}

/* list */
ol:not([class]),
ul:not([class]) {
  margin-bottom: 25px;
}
ol:not([class]) li,
ul:not([class]) li {
  display: table;
  position: relative;
  padding-left: 40px;
}
ol:not([class]) li::before,
ul:not([class]) li::before {
  left: 0;
  top: -3px;
}
ol:not([class]) li:not(:last-child),
ul:not([class]) li:not(:last-child) {
  margin-bottom: 15px;
}

table ol:not([class]) li,
table ul:not([class]) li,
.table ol:not([class]) li,
.table ul:not([class]) li {
  display: block;
}

ol:not([class]) {
  counter-reset: number;
}
ol:not([class]) li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  background: #2d8bf3;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

ul:not([class]) li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--check-icon");
}

.list-block {
  border-top: 1px solid #d7dde8;
  border-bottom: 1px solid #d7dde8;
  padding: 18px 0;
  margin-bottom: 25px;
}
.list-block ul,
.list-block ol {
  margin-bottom: 0;
}
.list-block a {
  font-weight: 600;
  font-size: inherit;
}
@media screen and (max-width: 768px) {
  .list-block {
    margin-bottom: 20px;
  }
  .list-block ul li,
  .list-block ol li {
    font-size: 15px;
    line-height: 23px;
  }
}

.list-check {
  margin-bottom: 25px;
}
.list-check li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 21px;
}
.list-check li:not(:last-child) {
  margin-bottom: 12px;
}
.list-check li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 10px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--check-green");
  left: 0;
  top: calc(50% - 5px);
}
@media screen and (max-width: 768px) {
  .list-check {
    margin-bottom: 20px;
  }
}

.list-not {
  margin-bottom: 25px;
}
.list-not li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 24px;
}
.list-not li:not(:last-child) {
  margin-bottom: 12px;
}
.list-not li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--close-icon");
  left: 0;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .list-not {
    margin-bottom: 20px;
  }
}

summary {
  list-style: none;
}
summary::marker {
  display: none;
}
summary::-webkit-details-marker {
  display: none;
  color: transparent;
}

/* block */
.overly {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 19, 40, 0.3);
}

/* img */
img {
  display: block;
  margin: 0 auto;
}

.figure {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .figure {
    margin-bottom: 20px;
  }
}

/* transition */
* {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* btn */
.btn {
  display: block;
  width: 250px;
  height: 44px;
  line-height: 44px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  background: #2d8bf3;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
}
.btn-span {
  position: relative;
  padding-right: 18px;
}
.btn-span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arrow-icon-white");
  right: 0;
  top: calc(50% - 7px);
}
.btn:hover {
  background: #0064d1;
}

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

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

.breadcrumbs {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.breadcrumbs__item,
.breadcrumbs-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.breadcrumbs__item {
  color: #333333;
  position: relative;
}

.breadcrumbs__item:not(:last-child) {
  margin-right: 17px;
}

.breadcrumbs-link {
  text-decoration: none;
  color: rgba(51, 51, 51, 0.5);
}

.breadcrumbs-link:hover {
  color: #333333;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  background: center/cover no-repeat
    url("../img/sprite.svg#sprite--breadcrumbs");
  /* центрируем по вертикали: */
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 35px;
  }
}

/* soc */
.soc {
  gap: 8px;
}
.soc-link {
  width: 32px;
  height: 32px;
  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;
  border-radius: 4px;
  border: 1px solid #d7dde8;
}
.soc-link svg {
  fill: #100e0e;
}
.soc-link:hover {
  background: #2d8bf3;
  border-color: #2d8bf3;
}
.soc-link:hover svg {
  fill: #fff;
}

/* side */
.side {
  gap: 15px;
  margin-bottom: 25px;
}
.side + .btn {
  width: 420px;
  margin-bottom: 25px;
}
.side__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 280px;
  border-radius: 5px;
  background: #f6f9ff;
  padding: 20px;
}
.side__item ul li {
  font-weight: 500;
}
.side-header {
  border-bottom: 1px solid #d7dde8;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.side-header p {
  margin-bottom: 0;
}
.side-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .side {
    margin-bottom: 20px;
  }
  .side + .btn {
    width: 100%;
    margin-bottom: 20px;
  }
  .side__item {
    min-width: 100%;
  }
}

/* blockquote */
.blockquote {
  position: relative;
  border-radius: 10px;
  background: #fff4e9;
  padding: 76px 35px 30px;
  margin-bottom: 25px;
}
.blockquote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #171616;
  margin-bottom: 0;
}
.blockquote::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--quote-icon");
  top: 26px;
  left: 31px;
}
@media screen and (max-width: 768px) {
  .blockquote {
    padding: 76px 30px 30px;
    margin-bottom: 20px;
  }
}

/* scroll */
.scroll {
  overflow: auto;
  -ms-scroll-chaining: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: #dcdfe9 transparent;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 50%;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #dcdfe9;
  border-radius: 5px;
  min-height: 50%;
  min-width: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background-color: #dcdfe9;
}

.scroll::-webkit-scrollbar-thumb:active {
  background-color: #dcdfe9;
}

/* container */
.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 15px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main {
    margin-bottom: 40px;
  }
}

/* header */
.header {
  position: relative;
  z-index: 101;
  background: #e6eefd;
}
.header .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 67px;
}

/* menu */
@media screen and (min-width: 992px) {
  .navigation {
    overflow: visible;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media screen and (max-width: 992px) {
  .navigation {
    position: fixed;
    z-index: 101;
    top: 67px;
    bottom: 0;
    right: 0;
    background: #fff;
    width: 0;
  }
  .navigation.open {
    width: 300px;
  }
}

.menu-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #171616;
  text-transform: capitalize;
}
@media screen and (min-width: 992px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
  }
  .menu-btn {
    display: none;
  }
  .menu__item {
    padding: 22px 0;
  }
  .menu__item:last-child .downmenu {
    left: auto;
    right: 0;
  }
  .menu-arr {
    position: relative;
  }
  .menu-arr .menu-link {
    padding-right: 20px;
  }
  .menu-arr .menu-link::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 8px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--arrow-icon-black");
    right: 0;
    top: calc(50% - 4px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu-arr:hover .menu-link::before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .menu-arr:hover .downmenu {
    grid-template-rows: 1fr;
  }
  .menu-arr:hover .submenu {
    padding: 10px;
  }
}
@media screen and (max-width: 992px) {
  .menu {
    display: block;
    padding: 20px;
  }
  .menu-btn {
    position: relative;
    margin-left: auto;
  }
  .menu-btn::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 8px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--arrow-icon-black");
    top: calc(50% - 4px);
    left: calc(50% - 6px);
  }
  .menu-arr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu-arr.open .downmenu {
    grid-template-rows: 1fr;
    padding-top: 20px;
  }
  .menu-arr.open .menu-btn::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .menu-link {
    color: #121111;
  }
  .menu__item:not(:last-child) {
    border-bottom: 1px solid #d7dde8;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.downmenu {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .downmenu {
    position: absolute;
    left: calc(50% - 111px);
    z-index: 1;
    top: 70px;
  }
}
@media screen and (max-width: 992px) {
  .downmenu {
    min-width: 100%;
    padding-top: 0;
  }
}

.submenu {
  overflow: hidden;
}
.submenu__item:not(:last-child) {
  margin-bottom: 0;
}
.submenu-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (min-width: 992px) {
  .submenu {
    width: 222px;
    background: #e6eefd;
    border-radius: 5px;
    padding: 0 10px;
  }
  .submenu-link {
    position: relative;
    border-radius: 4px;
    color: #171616;
    padding: 8px 12px;
  }
  .submenu-link:hover {
    background: #2d8bf3;
    color: #fff;
  }
}
@media screen and (max-width: 992px) {
  .submenu__item:not(:last-child) {
    margin-bottom: 15px;
  }
  .submenu-link {
    color: #333333;
  }
}

/* hamburger */
.hamburger {
  position: relative;
  width: 24px;
  height: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1.5px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  background: #333333;
}
.hamburger-inner {
  background: #333333;
  display: block;
  top: calc(50% - 1px);
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  background: #333333;
  right: 0;
}
.hamburger-inner::before {
  width: 24px;
  top: 6px;
}
.hamburger-inner::after {
  width: 24px;
  bottom: 6px;
}
.hamburger.is_active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.is_active .hamburger-inner::before {
  opacity: 0;
}
.hamburger.is_active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger:hover {
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

/* faq */
.faq {
  counter-reset: number;
}
.faq__item {
  overflow: hidden;
}
.faq__item:not(:last-child) {
  border-bottom: 1px solid #d7dde8;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.faq__item .heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #171616;
}
.faq__item .heading::before {
  counter-increment: number;
  content: counter(number) ". ";
}
.faq__item .heading:hover {
  color: #137ef4;
}
.faq__item .text p:first-child {
  padding-top: 10px;
}
.faq__item[open] .faq-heading .heading {
  color: #137ef4;
}
.faq__item[open] .faq-heading svg {
  fill: #137ef4;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.faq-heading {
  width: 100%;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  cursor: pointer;
  gap: 15px;
}
.faq-heading svg {
  width: 14px;
  min-width: 14px;
  fill: #171616;
  margin-left: auto;
}

/* table */
.table_scroll {
  margin-bottom: 20px;
}
.table_scroll .table {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .table_scroll {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
  .table_scroll .table td:not(:first-child),
  .table_scroll .table th:not(:first-child) {
    min-width: 150px;
  }
}

.table {
  border-radius: 5px;
  border-collapse: separate;
  background: #f6f9ff;
  overflow: hidden;
  margin-bottom: 25px;
}
.table th,
.table td {
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  line-height: 23px;
  font-size: 15px;
  padding: 15px;
}
.table th {
  background: #e6eefd;
  font-weight: 600;
  color: #171616;
}
.table tr:not(:last-child) td {
  border-bottom: 1px solid #d7dde8;
}
.table td {
  font-weight: 400;
}
.table a {
  font-size: 15px;
  font-weight: 600;
}
.table b {
  font-size: 15px;
}
.table .btn {
  width: 205px;
}
.table .img {
  width: 155px;
  min-width: 155px;
  height: 54px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  margin: 0;
}

/* rating */
.rating {
  position: relative;
  display: inline-block;
}
.rating-total {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #171616;
}
.rating-total-span {
  font-size: 18px;
  font-weight: 600;
}
.rating-star {
  position: relative;
  display: inline-block;
  height: 16.6px;
  width: 83px;
}
.rating-star::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6.95448L11.4596 6.52449L8.99641 0.336426L6.53326 6.52449L0 6.95448L5.01096 11.2093L3.36663 17.6636L8.99641 14.1051L14.6262 17.6636L12.9819 11.2093L18 6.95448Z' fill='%23CFCFCF'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16.6px;
  bottom: 0;
  display: block;
  height: 16.6px;
  left: 0;
  right: 0;
  top: 0;
  width: 83px;
}
.rating-span {
  display: block;
  text-indent: -10000px;
  width: 83px;
  height: 16.6px;
  position: absolute;
  overflow: hidden;
}
.rating-span:before {
  display: block;
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 7.45445L11.4596 7.02446L8.99641 0.836395L6.53326 7.02446L0 7.45445L5.01096 11.7093L3.36663 18.1636L8.99641 14.605L14.6262 18.1636L12.9819 11.7093L18 7.45445Z' fill='%23F17E0E'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16.6px;
  bottom: 0;
  height: 16.6px;
  left: 0;
  right: 0;
  text-indent: 10000px;
  top: 0;
}

/* update */
.hero {
  margin-bottom: 50px;
}
.hero-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.hero-header .update {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .hero {
    margin-bottom: 40px;
  }
  .hero-header {
    margin-bottom: 20px;
  }
}

.update {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px 20px;
  margin-bottom: 15px;
}
.update-img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
  margin-right: 6px;
}
.update__item {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 4px;
}
.update-title,
.update-descr {
  font-size: 15px;
  line-height: 23px;
}
.update-title {
  color: #333333;
  font-weight: 400;
}
.update-descr {
  font-weight: 600;
  color: #100e0e;
}
.update a:hover {
  color: #137ef4;
}
@media screen and (max-width: 700px) {
  .update__item {
    min-width: 100%;
  }
}

/* payment */
.payment {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.payment__item {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #d7dde8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.payment__item img {
  margin: 0;
}

/* offer */
.offer-list,
.offer-head,
.offer-body {
  display: block;
}
.offer-list {
  counter-reset: number;
  margin-bottom: 25px;
}
.offer-tr,
.offer-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.offer-tr {
  border-radius: 5px;
  background: #f6f9ff;
  gap: 0 25px;
  padding: 0 20px;
  margin-bottom: 15px;
}
.offer-card {
  position: relative;
  gap: 15px 25px;
  background: #f6f9ff;
  border-radius: 10px;
  padding: 20px 20px 15px;
}
.offer-casino {
  position: relative;
}

.offer-casino::after {
  content: none;
}

.offer-casino::after {
  content: var(--offer-label);
  position: absolute;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  border-radius: 4px;
  background: var(--offer-label-bg);
  top: -10px;
  right: -14px;
  padding: 7px 6px;
}
.offer-th {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  padding: 12px 0;
}
.offer-td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}
.offer-logo {
  width: 200px;
  min-width: 200px;
  text-align: center;
}
.offer-logo .img {
  width: 200px;
  height: 90px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 8px;
}
.offer-casino {
  position: relative;
}
.offer-casino::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  width: 30px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  background: #e6eefd;
  font-size: 14px;
  font-weight: 600;
  top: -10px;
  left: -10px;
}
.offer-casino-name {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  color: #100e0e;
  margin-bottom: 0;
}
.offer-casino-name:hover {
  color: #137ef4;
}
.offer-bonus,
.offer-feature {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.offer-bonus {
  max-width: 263px;
}
.offer-bonus-text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #171616;
  padding-left: 30px;
  margin-bottom: 0;
}
.offer-bonus-text::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--diamnod-icon");
  top: 4px;
  left: 0;
}
.offer-feature {
  max-width: 264px;
}
.offer-feature .list-check {
  margin-bottom: 0;
}
.offer-feature .list-check li {
  font-size: 14px;
  line-height: 20px;
  color: #100e0e;
}
.offer-feature .list-check li:not(:last-child) {
  margin-bottom: 8px;
}
.offer-rating {
  text-align: center;
  width: 86px;
  min-width: 86px;
}
.offer-play {
  width: 250px;
  min-width: 250px;
}
.offer-play .btn {
  width: 100%;
}
.offer-play .payment {
  margin-top: 12px;
}
.offer-update {
  min-width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px 15px;
}
.offer-update__item {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.offer-update-time {
  font-weight: 600;
  display: inline-block;
}
.offer-update time {
  position: relative;
  padding-left: 20px;
}
.offer-update time::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--time-icon");
  left: 0;
  top: calc(50% - 6.5px);
}
@media screen and (max-width: 992px) {
  .offer-head {
    display: none;
  }
  .offer-card {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .offer-feature {
    max-width: 100%;
    min-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .offer {
    margin-bottom: 40px;
  }
  .offer-card {
    gap: 25px;
  }
}
@media screen and (max-width: 600px) {
  .offer-bonus {
    min-width: 100%;
  }
  .offer-update {
    min-width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 450px) {
  .offer-rating,
  .offer-logo {
    width: 100%;
    min-width: 100%;
  }
  .offer-rating .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  .offer-rating .rating-total {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .offer-rating .rating-star {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .offer-play {
    width: 100%;
    min-width: 100%;
  }
}

/* footer */
.footer_top {
  background: #e6eefd;
  padding: 40px 0;
}
.footer_top .container {
  gap: 30px;
}
.footer-address:not(:last-child) {
  margin-bottom: 20px;
}
.footer-address:last-child {
  margin-bottom: 30px;
}
.footer-address-span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: block;
}
.footer-navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 462px;
}
.footer-list {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  gap: 30px;
}
.footer-list__item {
  line-height: 23px;
}
.footer-list__item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-list-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #171616;
}
.footer-list-link:hover {
  text-decoration: underline;
}
.footer-info {
  max-width: 708px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer_bottom {
  background: #f6f9ff;
  padding: 30px 0 20px;
}
.footer_bottom .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer-info {
    width: 100%;
  }
  .footer-navigation {
    min-width: 100%;
  }
}

.reliable {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .reliable {
    gap: 20px;
  }
  .reliable img {
    max-width: 86px;
    height: auto;
  }
}

.reliable__item img {
  max-width: 120px;
}

.copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 30px;
}
.copyright a {
  font-size: inherit;
  line-height: inherit;
}
.copyright:not(:last-of-type) {
  margin-bottom: 9px;
}
@media screen and (max-width: 768px) {
  .copyright {
    margin-bottom: 35px;
  }
}

.contact__item {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #171616;
  width: 100%;
}
.contact__item::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.contact__item:not(:last-child) {
  margin-bottom: 10px;
}
.contact-address::before {
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--map-icon");
}
.contact-tel::before {
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--phone-icon");
}
.contact-email::before {
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--mail-icon");
}
@media screen and (max-width: 768px) {
  .contact__item {
    display: inline-block;
  }
}
/*# sourceMappingURL=../sourcemaps/style.css.map */
