@font-face {
  font-family: "Noto";
  src: url("../fonts/NotoSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto";
  src: url("../fonts/NotoSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto";
  src: url("../fonts/NotoSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto";
  src: url("../fonts/NotoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

button {
  background: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

:root {
  --font-main: "Noto";
  --green: #1e4841;
  --light: #ecf4e9;
  --grey: #6b7271;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #ecf4e9;
  font-size: 14px;
  color: #6b7271;
  font-family: var(--font-main);
 font-weight: normal;
  position: relative;
  min-width: 375px;
}


body.locked {
  overflow: hidden;
}

.wrapper {
  padding: 25px 28px;
  border-radius: 16px;
  background: #fbfbfc;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto 32px;
  position: relative;
  transition: transform 0.2s ease;
  z-index: 1;
}

.wrapper-inner {
  width: 100%;
}

.section {
  margin-top: 20px;
}

.slick {
  width: 100%;
}

a {
  transition: all 0.2s ease;
}

.slick_top {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick_top a {
  display: inline-block;
  margin-right: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #1e4841;
}

.slick_top a:hover {
  color: #6b7271;
}

.slick_bottom {
  display: flex;
  align-items: center;
  min-height: 30px;
}

.slick_bottom .aside_logo {
  display: none;
}

.menu_item {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 16px;
}

.menu_item > a {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #1e4841;
  display: flex;
  align-items: center;
}

.menu_item > a svg {
  margin-left: 4px;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.menu_item > a:hover {
  color: #6b7271;
}

.menu_item > a:hover svg {
  transform: rotate(-180deg);
}

.menu_item > a:hover svg path {
  fill: #6b7271;
  stroke: #6b7271;
}

.menu_item .menu_item_drop {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 3;
  background: #fff;
  border-radius: 0 0 5px 5px;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  max-height: 0;
  opacity: 0;
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease, max-height 0.2s ease;
  overflow: hidden;
}

.menu_item .menu_item_drop a {
  color: #1e4841;
  margin: 5px 0;
}

.menu_item .menu_item_drop a:hover {
  color: #6b7271;
}

.menu_item .menu_item_drop_inner {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
}

.menu_item:hover .menu_item_drop {
  max-height: 300px;
  opacity: 1;
}

.header_right {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
}

.info_button {
  border-radius: 20px;
  width: 38px;
  height: 38px;
  background: #ecf4e9;
  border: 1px solid #ecf4e9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.info_button svg {
  transition: fill 0.2s ease;
  position: relative;
  z-index: 1;
}

.info_button:hover {
  background: var(--green);
}

.info_button:hover svg * {
  fill: #fff;
}

.info_button:active {
  border: 1px solid #e5e6e6;
  background: transparent;
}

.info_button:active svg * {
  fill: var(--green);
}

.info_button.have_message:before {
  content: "";
  display: block;
  background: #f73541;
  border-radius: 10px;
  width: 8px;
  height: 8px;
  position: absolute;
  z-index: 2;
  right: 8px;
  top: 8px;
}

.search_form {
  display: flex;
  align-items: center;
  border: 1px solid #eff0f0;
  background: #eff0f0;
  border-radius: 20px;
  padding: 10px 16px;
  width: 283px;
  height: 38px;
}

.search_form input {
  height: 100%;
  flex-grow: 1;
  margin-right: 6px;
  background: #eff0f0;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.search_form input::-moz-placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #6b7271;
}

.search_form input::placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #6b7271;
}

.search_form button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search_form button:hover svg * {
  fill: var(--grey);
}

.aside_menu_box {
  padding: 22px 0 24px 16px;
  width: 192px;
  position: absolute;
  left: -192px;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.aside_menu_box + h1,h1.pos.col-12.p-l-d-15, h1.f-16.f-d-18.col-auto{
    padding-top: 30px;
        font-weight: 700;
    font-size: 24px;
    color: #1e4841;
    margin-bottom:30px;
}

.aside_inner {
  max-height: calc(100vh - 22px);
  width: 100%;
  position: sticky;
  left: 0;
  top: 22px;
  overflow-y: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--green) #eff0f0;
  padding-right: 16px;
}

.aside_logo img {
  width: 130px;
  height: 56px;
}

.aside_menu {
  display: flex;
  flex-direction: column;
  margin: 16px 0;
}

.aside_menu_title.aside_menu_item.active {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 24px;
  background: #bbf49c;
  color: #242e2c;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  height: 40px;
  margin-bottom: 8px;
  position: relative;
}

.aside_menu_title img {
  width: 21px;
  height: 21px;
  margin-right: 12px;
  flex-shrink: 0;
}

.aside_menu_item {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #6b7271;
  height: 40px;
  margin-bottom: 8px;
  position: relative;
  border: 1px solid transparent;
}

.aside_menu_item:last-child {
  margin-bottom: 0;
}

.aside_menu_item span {
  position: relative;
  z-index: 1;
}

.aside_menu_item img {
  width: 21px;
  height: 21px;
  margin-right: 12px;
  flex-shrink: 0;
}

.aside_menu_item:hover,
.aside_menu_item.active {
  background: #1e4841;
  color: #fbfbfc;
}

.aside_menu_item:hover span,
.aside_menu_item.active span{
  color: #fbfbfc;
}

.aside_menu_item:hover img,
.aside_menu_item.active img {
  filter: brightness(0) invert(1);
}

.aside_menu_item:active {
  border: 1px solid #e5e6e6;
  background: transparent;
  color: #6b7271;
}

.aside_menu_item:active img {
  filter: unset;
}

.aside_menu_item_num {
  position: absolute;
  right: 6px;
  top: 11px;
  border-radius: 10px;
  width: 18px;
  height: 18px;
  background: #f73541;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 100%;
  text-align: center;
  color: #fbfbfc;
  font-family: "Urbanist";
  font-weight: 400;
  z-index: 3;
}

.aside_reg_box {
  background: #1e4841;
  border-radius: 16px;
  padding: 20px 16px;
  width: 100%;
}

.aside_reg_box img {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.aside_reg_box p {
  font-size: 12px;
  line-height: 130%;
  color: #ecf4e9;
  margin-bottom: 16px;
}

.aside_reg_box .pumc:active {
  color: #bbf49c;
}

.pumc {
  background: #bbf49c;
  height: 38px;
  border-radius: 8px;
  padding: 0px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #242e2c;
  border: 1px solid #bbf49c;
  white-space:nowrap;
}

.pumc:hover {
  background: #1e4841;
  color: #bbf49c;
}

.pumc:active {
  background: transparent;
  color: #242e2c;
  border: 1px solid #e5e6e6;
}

.main_section {
  min-height: 590px;
  border-radius: 16px;
  overflow: hidden;
  background: url("../img/h1.jpg") 50% 50% no-repeat;
  background-size: cover;
  padding: 42px 40px;
  position: relative;
  width: 100%;
  margin-top:0!important;
}

.main_top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main_top_text {
  border: 1px solid #fbfbfc;
  padding: 14px 21px;
  border-radius: 16px;
}

.main_top_text_line {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: #fbfbfc;
  margin: 4px 0;
}

.main_top_text_line a {
  color: #fbfbfc;
}

.main_top_text_line a:hover {
  color: var(--grey);
}

.main_top_text_line a:hover span {
  color: var(--grey);
}

.main_top_text_line img {
  width: 4px;
  height: 4px;
  display: block;
  margin: 0 9px;
}

.main_top_text_line span {
  color: #bbf49c;
  transition: color 0.2s ease;
}

.white_logo img {
  width: 130px;
  height: 56px;
}

.main_middle {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 89px;
}

.middle_something {
  border: 1.55px solid #bbf49c;
  border-radius: 25px;
  height: 34px;
  padding-left: 42px;
  margin-bottom: 21px;
}

.middle_something_text {
  background: #bbf49c;
  border-radius: 25px;
  height: 32px;
  width: 256px;
  font-size: 24px;
  color: #242e2c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.middle_title {
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: right;
  color: #bbf49c;
}

.middle_text {
  background: rgba(107, 114, 113, 0.8);
  border: 1px solid #fbfbfc;
  border-radius: 16px;
  align-self: flex-start;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 115%;
  text-align: justify;
  color: #fbfbfc;
  width: 386px;
  font-family: "Urbanist";
}

.main_bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.main_bottom_label {
  font-weight: 500;
  font-size: 28px;
  color: #fbfbfc;
  margin-bottom: 18px;
}

.main_bottom_logos {
  display: flex;
  align-items: center;
}

.main_bottom_logos a {
  margin-left: 15px;
  display: inline-block;
}

.main_bottom_logos a:first-child {
  margin-left: 0;
}

.main_bottom_logos a img {
  max-width: 100%;
}

.burger {
  border-radius: 20px;
  width: 38px;
  height: 38px;
  background: #ecf4e9;
  border: 1px solid #ecf4e9;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 7px 8px 7px 6px;
}

.burger_lines {
  position: relative;
  width: 100%;
}

.burger .burger_lines > span {
  transform: translateY(0%) rotate(0deg);
  transition: all 0.5s ease;
}

.burger.open .burger_lines span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger.open .burger_lines span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.burger .burger_lines span {
  width: 24px;
  height: 2px;
  background: var(--green);
  display: block;
  border-radius: 5px;
  position: absolute;
  left: 0;
}

.burger .burger_lines span:first-child {
  top: calc(50% - 4px);
  transform: translateY(-50%) rotate(0deg);
}

.burger .burger_lines span:last-child {
  top: calc(50% + 4px);
  transform: translateY(-50%) rotate(0deg);
}

.mobile_menu_box {
  display: none;
  height: calc(100% - 65px);
  position: fixed;
  left: -100%;
  top: 65px;
  opacity: 0;
  z-index: 100;
  background: #fbfbfc;
  box-shadow: 0px 10px 10px 1px rgba(0, 0, 0, 0.3);
  min-width: 375px;
  transition: left 0.2s ease, opacity 0.2s ease;
}

.mobile_menu_box .search_form {
  width: 100%;
}

.mobile_menu_box.open {
  left: 0;
  opacity: 1;
}

.mobile_menu_inner {
  padding: 20px;
  width: 100%;
  max-height: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--green) #eff0f0;
  display: flex;
  flex-direction: column;
}

.mobile_menu_inner .footer_soc {
  margin-top: auto;
}

.mobile_menu_list {
  display: flex;
  flex-direction: column;
  margin: 25px 0;
}

.mobile_menu_item_drop {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, max-height 0.2s ease;
}

.mobile_menu_item_drop_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 10px 0 10px 10px;
}

.mobile_menu_item_drop_inner .mobile_menu_item_link {
  margin-bottom: 10px;
}

.mobile_menu_item_drop_inner .mobile_menu_item_link:last-child {
  margin-bottom: 0;
}

.mobile_menu_item {
  font-weight: 500;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.mobile_menu_item:last-child {
  margin-bottom: 0;
}

.mobile_menu_item.open .mobile_menu_item_drop {
  max-height: 400px;
  opacity: 1;
}

.mobile_menu_item.open svg {
  transform: rotate(-180deg);
}

.mobile_menu_item_button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 60px;
  height: 20px;
}

.mobile_menu_item_link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 120%;
  color: #1e4841;
}

.mobile_menu_item_link:hover {
  color: var(--grey);
}

.mobile_menu_item_link:hover svg * {
  fill: var(--grey);
  stroke: var(--grey);
}

.stars_section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars_section img {
  width: 155px;
  height: 31px;
  margin-bottom: 8px;
}

.stars_section .section_title {
  text-align: center;
}

.section_title {
  font-weight: 700;
  font-size: 24px;
  color: #1e4841;
}

.table_section {
  border: 1px solid #6b7271;
  border-radius: 16px;
  padding: 16px;
}

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

.table_section_top h2 {
  font-weight: 700;
  font-size: 16px;
  color: #242e2c;
}

.table_section_top img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.buk_table {
  margin-top: 16px;
}

.buk_table_top {
  padding: 13px 12px;
  border-top: 1px solid #e5e6e6;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 114px 128px 136px 125px;
  gap: 50px;
}

.buk_table_item {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #1e4841;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buk_table_item svg {
  width: 13px;
  height: 13px;
}

.buk_line {
  padding: 15px 12px;
  border-top: 1px solid #e5e6e6;
  display: grid;
  grid-template-columns: auto auto 114px 128px 136px 125px;
  gap: 50px;
}

.buk_line_item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buk_line_item img {
  max-width: 156px;
  width: 100%;
}

.buk_line_item.buk_line_item_stars img {
  max-width: 120px;
}

.buk_line_item .pumc {
  height: 100%;
  width: 100%;
}

.buk_line_item .pumc:hover {
  border: solid 1px var(--grey);
}

.buk_line_bonus {
  background: #ecf4e9;
  font-weight: 700;
  font-size: 14px;
  color: #6b7271;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  line-height: 16px;
  text-align: center;  
}

.buk_line_promokod {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 7px 10px;
  background: #eff0f0;
  border-radius: 7px;
  cursor: pointer;
}

.buk_line_promokod:hover svg * {
  stroke: #bbf49c;
}

.buk_line_promokod:active {
  box-shadow: inset 2px 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.buk_line_promokod_body {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}

.buk_line_promokod_label {
  font-size: 10px;
  line-height: 130%;
  color: #6b7271;
}

.buk_line_promokod_code {
  font-weight: 700;
  font-size: 14px;
  line-height: 164%;
  color: #1e4841;
}

.buk_line_butt {
  border: 2px solid #1e4841;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #1e4841;
}

.buk_line_butt:hover {
  background: #1e4841;
  color: #fbfbfc;
}

.buk_line_butt:active {
  box-shadow: inset 2px 2px 6px 0 rgba(0, 0, 0, 0.15);
  background: #1e4841;
  color: #fbfbfc;
}

.bigtext_section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bigtext_section img {
  width: 384px;
  height: auto;
  border-radius: 16px;
  flex-shrink: 0;
  max-width: 384px;
}

.bigtext {
  width: calc(100% - 404px);
  margin-right: 20px;
}

.bigtext .section_title {
  margin-bottom: 20px;
  margin-top: 10px;
}

.editable_text p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 164%;
  color: #6b7271;
}

.editable_text h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 164%;
  color: #6b7271;
}

.analitika_section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.analitika_section .section_title {
  width: 100%;
}

.analitika_item {
  width: calc(40% - 10px);
  background: #1e4841;
  border-radius: 16px;
  margin-top: 20px;
  padding: 16px 16px 30px;
}

.analitika_item h2 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #fbfbfc;
  margin-bottom: 20px;
}

.analitika_item p {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.04em;
  color: #bcbebd;
  margin-top: auto;
  margin-bottom: 0;
  line-height: 18px;
}

.analitika_item:hover h2 {
  color: #bbf49c;
}

.analitika_item_big {
  width: calc(60% - 10px);
}

.analitika_item_img {
  border-radius: 7px;
  width: 100%;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 30px;
}

.analitika_item_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section_title_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  width: 100%;
}

.section_title_row .pumc {
  height: 32px;
  font-size: 12px;
}

.bonuses_items {
  display: grid;
  grid-template-columns: 283px 1fr 1fr 1fr 283px;
  gap: 18px;
  width: 100%;
  margin-top: 20px;
}

.bonuses_item {
  border: 1px solid #6b7271;
  background: #1e4841;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  height: 174px;
}

.bonuses_item:first-child p,
.bonuses_item:last-child p {
  color: #ecf4e9;
}

.bonuses_item_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bonuses_item_bg:before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  z-index:2;
  display: block;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.9);
}

.bonuses_item_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.bonuses_item_body {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
}

.bonuses_item_body .pumc {
  width: 110px;
  max-width: 100%;
}

.bonuses_item_body .pumc:active {
  color: var(--grey);
  border-color: var(--grey);
}

.bonuses_item_body p {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: #242e2c;
  margin-bottom: 16px;
}

.news_items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.news_item {
  border-radius: 21px;
  padding: 16px;
  display: flex;
  background: #ecf4e9;
  overflow: hidden;
  box-sizing: border-box;
  width: calc(50% - 10px);
}

.news_item_top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.news_item_top a {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #1e4841;
}

.news_item_top svg {
  margin: 0 8px;
}

.news_item_bg {
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  width: 144px;
  height: 144px;
  flex-shrink: 0;
  border-radius: 21px;
}

.news_item_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.news_item_body {
  width: calc(100% - 160px);
}

.news_item_body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 164%;
  color: #6b7271;
}

.news_item_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #242e2c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 5px;
  display: inline-block;
}

.news_item_title:hover {
  color: var(--grey);
}

.section_text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 164%;
  color: #6b7271;
}

.prognoz_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.prognoz_item_image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 124px;
  margin-bottom: 14px;
}

.prognoz_item_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.prognoz_item_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #242e2c;
}

.prognoz_item_title:hover {
  color: var(--grey);
}

.blog_tab_inner {
  display: flex;
}

.blog_left {
  width: calc(100% - 404px);
}

.blog_right {
  width: 384px;
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  margin-bottom: 25px;
}

.blog_right_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #242e2c;
  margin-bottom: 25px;
}

.blog_tab_box {
  margin-top: 15px;
}

.blog_tab {
  width: 100%;
  display: none;
}

.blog_tab.active {
  display: block;
}

.blog_tab_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.blog_right_list {
  display: flex;
  flex-direction: column;
}

.blog_right_list_item {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.blog_right_list_item:last-of-type {
  margin-bottom: 0;
}

.blog_right_list_item_image {
  border-radius: 20px;
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 18px;
}

.blog_right_list_item_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.blog_right_list_item_author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.blog_right_list_item_author svg {
  margin-right: 7px;
}

.blog_right_list_item_author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #242e2c;
}

.blog_right_list_item_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #242e2c;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_right_list_item_title:hover {
  color: var(--grey);
}

.double_col{
    width: 100%;
  display: grid;
  grid-template-columns: 1fr 335px;
  gap: 20px;
  align-items: flex-start;
}

.blog_left_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.blog_left_item .blog_right_list_item_author span {
  font-size: 15px;
}

.blog_left_item_image {
  border-radius: 20px;
  width: 100%;
  height: 206px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 18px;
}

.blog_left_item_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.blog_right_list_item_text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 164%;
  color: #6b7271;
  margin-bottom: 15px;
}

.tabs_lines {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tabs_line_item {
  border-radius: 20px;
  padding: 8px 20px;
  height: 35px;
  margin-top: 10px;
  white-space: nowrap;
  background: #ecf4e9;
  margin-right: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 100%;
  color: #242e2c;
}

.tabs_line_item:last-child {
  margin-right: 0px;
}

.tabs_line_item:hover,
.tabs_line_item.active {
  background: #1e4841;
  color: #fbfbfc;
}

.footer_col {
  display: flex;
  flex-direction: column;
  margin-right: 32px;
}

.footer_col_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #1e4841;
  display: inline-block;
  margin-bottom: 16px;
}

.footer_col_title:hover {
  color: var(--grey);
}

.footer_col_link {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #1e4841;
  display: inline-block;
  margin-bottom: 16px;
}

.footer_col_link:hover {
  color: var(--grey);
}

.footer_top {
  display: flex;
  align-items: flex-start;
}

.footer_text {
  max-width: 439px;
  border-radius: 16px;
  padding: 20px 16px;
  background: #bbf49c;
  display: flex;
  flex-direction: column;
}

.footer_text_inner {
  display: flex;
  margin-bottom: 20px;
}

.footer_text_age {
  border: 1px solid #1e4841;
  border-radius: 4px;
  padding: 5px 8px;
  width: 41px;
  height: 25px;
  font-weight: 600;
  font-size: 14px;
  line-height: 93%;
  color: #1e4841;
  margin-right: 30px;
}

.white_btn {
  margin-left: auto;
  margin-right: 0;
  background: #fbfbfc;
  border-radius: 8px;
  padding: 0px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 38px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #242e2c;
}

.white_btn:hover {
  background: var(--green);
  color: #fff;
}

.footer_text_box {
  font-size: 12px;
  line-height: 130%;
  color: #1e4841;
}

.footer_logo_lise {
  margin: 10px 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer_logo_lise a {
  filter: grayscale(1);
}

.footer_logo_lise a:hover {
  filter: grayscale(0);
}

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

.footer_bottom_left {
  display: flex;
  align-items: center;
}

.footer_bottom_left span {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: #242e2c;
  padding-right: 20px;
}

.footer_bottom_left a {
  display: inline-block;
  font-size: 12px;
  line-height: 130%;
  color: #bcbebd;
  margin-right: 15px;
}

.footer_bottom_left a:hover {
  color: var(--green);
}

.footer_soc {
  display: flex;
}

.footer_soc a {
  margin: 0 6px;
}

.footer_soc a svg {
  width: 24px;
  height: 24px;
}

.footer_soc a:hover svg * {
  fill: var(--green);
}

.double_col_right  {
       padding: 16px;
    border: 1px solid #6b7271;
    border-radius: 16px;       
}

.double_col_right h2 {
    font-weight: 700;
    font-size: 16px;
    color: #242e2c;
    margin-bottom:20px;
}

.double_col_right .buk_line {
        padding: 13px 0px;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        gap: 10px;
}

   .double_col_right .buk_line .buk_line_item:nth-child(odd) {
        grid-row: 1;
    }

    .double_col_right .buk_line .buk_line_item:nth-child(even) {
        grid-row: 2;
    }
 .double_ctrl{
  display: flex;
  justify-content: center;
  width:100%;
  margin-top:20px;
 }

 .bonuses_items_double{
  display: grid;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
 }

.bonus_double{
  margin-top:50px;
  margin-bottom:30px;
}

.bonus_double .bonuses_item_body p{
      color: #242e2c!important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;  
      font-size: 14px;    
}

.page_text,.doscroll{
  width:100%;
  margin:100px 0 50px;
      font-size: 16px;
      line-height: 20px;
}
.doscroll{
  margin:50px 0 30px;
          padding-right: 0px!important;
        padding-left: 0px!important;
}

.page_text p,.doscroll p{
  margin-bottom:10px;
}

.fucking-block >div > img{
  margin:0 auto 30px;
  display:block;
}

.pagination{
  font-size:14px;
  margin-top:30px;
}
.pagination *{
    margin:0 3px;
}
.pagination a{
  color:#1e4841;
  font-size:14px;
  display:inline-block;

}
.pagination a:hover{
  color:#000;
}

@media all and (max-width: 1631px) {
  .wrapper {
    transform: translateX(96px);
  }
}

@media all and (max-width: 1440px) {
  .wrapper {
    width: calc(100% - 192px);
  }
}

@media all and (max-width: 1400px) {
  .buk_table_top {
    gap: 40px;
  }

  .buk_line {
    gap: 40px;
  }

  .bonuses_items {
    grid-template-columns: 230px 1fr 1fr 1fr 230px;
  }
}

@media all and (max-width: 1200px) {
  .wrapper {
    transform: translateX(0);
    width: 100%;
    padding: 25px 20px;
  }

  .slick_top {
    display: none;
  }

  .slick_bottom .menu_item,
  .slick_bottom .search_form {
    display: none;
  }

  .slick_bottom .aside_logo {
    display: inline-block;
  }

  .slick_bottom .aside_logo img {
    width: auto;
    height: 37px;
  }

  .main_section {
    background: url("../img/h1.png") 70% 50% no-repeat;
    background-size: cover;
    padding: 30px;
  }

  .main_top {
    flex-direction: column;
    align-items: flex-start;
  }

  .main_top_text {
    order: 2;
    padding: 10px 15px;
  }

  .white_logo {
    order: 1;
    margin-bottom: 20px;
  }

  .main_middle {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .middle_title {
    margin-bottom: 20px;
    font-size: 80px;
  }

  .burger {
    display: flex;
  }

  .mobile_menu_box {
    display: block;
  }

  .buk_table_top {
    gap: 20px;
    grid-template-columns: auto auto 100px 120px 90px 90px;
  }

  .buk_line {
    gap: 20px;
    grid-template-columns: auto auto 100px 120px 90px 90px;
  }

  .buk_line_bonus {
    font-size: 14px;
  }

  .news_items {
    flex-wrap: wrap;
  }

  .news_item {
    width: 100%;
  }

  .news_item:first-child {
    margin-bottom: 20px;
  }
}

@media all and (max-width: 960px) {
  .double_col {
      grid-template-columns: 1fr;
  }  

  .bigtext_section img {
    width: 250px;
  }

  .bigtext {
    width: calc(100% - 270px);
  }

  .analitika_item {
    width: calc(50% - 10px);
  }

  .analitika_item_big {
    width: calc(50% - 10px);
  }

  .bonuses_items {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .prognoz_items {
    grid-template-columns: 1fr 1fr;
  }

  .blog_tab_inner {
    flex-wrap: wrap;
  }

  .blog_left {
    width: 100%;
  }

  .blog_right {
    width: 100%;
  }

  .blog_right_list {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .blog_right_list_item {
    flex-direction: column;
    width: 32%;
  }

  .blog_right_list_item_image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .blog_right_list_item_body {
    display: flex;
    flex-direction: column;
  }

  .blog_right_list_item_body .blog_right_list_item_author {
    order: 3;
    margin-bottom: 0;
    margin-top: 10px;
  }

  .blog_right_list_item_body .blog_right_list_item_title {
    order: 2;
  }

  .blog_right_list_item_body .news_item_top {
    order: 1;
  }

  .footer_col.footer_col_big {
    margin-right: 0;
  }

  .footer_top {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer_text {
    width: 100%;
    max-width: unset;
    margin: 20px 0;
    padding: 25px 13px;
  }
}

@media all and (max-width: 767px) {
.page_text,.doscroll {
    margin: 60px 0 30px;
    font-size: 14px;
    line-height: 18px;
}    
  .main_section {
    background: url("../img/h1.png") 30% 50% no-repeat;
    background-size: cover;
    padding: 20px;
    min-height: auto;
  }

  .main_top_text_line {
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 140%;
  }

  .white_logo img {
    width: auto;
    height: 25px;
  }

  .main_middle {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .middle_something {
    max-width: 100%;
    height: 27px;
  }

  .middle_something_text {
    font-size: 18px;
    height: 25px;
  }

  .middle_title {
    font-size: 46px;
  }

  .middle_text {
    width: 100%;
    padding: 12px;
  }

  .main_bottom_label {
    font-size: 20px;
  }

  .stars_section img {
    width: 130px;
    height: 25px;
  }

  .section_title {
    font-size: 20px;
  }

  .buk_table_top {
    display: none;
  }

  .buk_line {
    padding: 13px 0px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
  }

  .buk_line .buk_line_item:nth-child(odd) {
    grid-row: 1;
  }

  .buk_line .buk_line_item:nth-child(even) {
    grid-row: 2;
  }

  .buk_line_item .pumc {
    height: 35px;
    font-size: 14px;
  }

  .buk_line_bonus {
    height: 35px;
    font-size: 12px;
  }

  .buk_line_promokod {
    height: 35px;
  }

  .buk_line_promokod_label {
    font-size: 8px;
  }

  .buk_line_promokod_code {
    font-size: 10px;
    line-height: 120%;
  }

  .buk_line_butt {
    height: 35px;
    font-size: 14px;
  }

  .bigtext_section img {
    width: 100%;
    margin: 0 auto;
  }

  .bigtext_section {
    flex-direction: column;
  }

  .bigtext {
    width: 100%;
  }

  .analitika_item {
    width: 100%;
  }

  .analitika_item h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .analitika_item_big {
    width: 100%;
  }

  .analitika_item_img {
    margin-bottom: 20px;
  }

  .bonuses_items {
    grid-template-columns: 1fr;
  }

  .bonuses_item {
    height: 135px;
  }

  .news_item {
    flex-direction: column;
  }

  .news_item_bg {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 13px;
  }

  .news_item_body {
    width: 100%;
  }

  .news_item_title {
    font-size: 18px;
  }

  .prognoz_items {
    grid-template-columns: 1fr;
  }

  .blog_right_list {
    flex-wrap: wrap;
  }

  .blog_right_list_item {
    width: 100%;
    margin-bottom: 25px;
  }

  .blog_right_list_item_image {
    border-radius: 12px;
  }

  .blog_left_box {
    grid-template-columns: 1fr;
  }

  .blog_left_item_image {
    height: 150px;
    border-radius: 12px;
  }

  .footer_col {
    margin-bottom: 20px;
  }

  .footer_text {
    margin: 0px 0 20px;
  }

  .footer_text_inner {
    flex-wrap: wrap;
  }

  .footer_text_age {
    margin-bottom: 15px;
  }

  .footer_logo_lise a {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .footer_logo_lise {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer_bottom {
    flex-direction: column;
  }

  .footer_bottom_left {
    order: 2;
    flex-wrap: wrap;
  }

  .footer_bottom_left span {
    order: 4;
    display: inline-block;
    width: 100%;
    padding-top: 15px;
  }

  .footer_bottom_left a {
    order: 1;
  }

  .footer_soc {
    order: 1;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: auto;
  }
}