@import "libs/reset.css";
@import "libs/slick.css";
@import "libs/slick-theme.css";
:root {
  --colorWhite: #ffffff;
  --colorBlack: #333333;
  --colorGreen: #33cc33;
  --colorLightGreen: #e5f7e5;
  --colorGray: #cfd3cf;
  --colorDarkGray: #999999;
  --argoColor: #cc6633;
  --iviColor: #cc66cc;
  --zig7Color: #3399ff;
  --zigSColor: #33cc33;
  --egoColor: #663399;
  --expColor: #ffcc00;
  --bgColor: #f7fcf7;
  --fontColor: var(--colorBlack);
  --mainColor: var(--colorGreen);
}

@media (prefers-color-scheme: dark) {
  :root {
    --colorWhite: #ffffff;
    --colorBlack: #333333;
    --colorGreen: #33cc33;
    --colorLightGreen: #e5f7e5;
    --colorGray: #cfd3cf;
    --colorDarkGray: #999999;
    --argoColor: #cc6633;
    --iviColor: #cc66cc;
    --zig7Color: #3399ff;
    --zigSColor: #33cc33;
    --egoColor: #663399;
    --expColor: #ffcc00;
    --bgColor: #f7fcf7;
    --fontColor: var(--colorBlack);
    --mainColor: var(--colorGreen);
  }
}
.dn {
  display: none !important;
  visibility: hidden !important;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--mainColor);
  text-decoration: underline;
  transition: text-decoration 0.2s ease-in-out;
}
a:hover {
  text-decoration: none;
}

b, strong, .bold {
  font-weight: 700;
}
b a, strong a, .bold a {
  text-decoration: none;
  color: var(--fontColor);
}
b a:hover, strong a:hover, .bold a:hover {
  color: var(--mainColor);
}

small {
  font-size: 0.8em;
}

.big {
  font-size: 1.6em;
  font-weight: 800;
}

.ttu {
  text-transform: uppercase;
}

.font_decor {
  color: var(--mainColor);
}

h2, .h2 {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  text-transform: lowercase;
}
h2:first-letter, .h2:first-letter {
  text-transform: uppercase;
}
h2:after, .h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: var(--mainColor);
  transform: translateY(0.4em);
}
h2 a, .h2 a {
  text-decoration: none;
  color: inherit;
}
h2 a:hover, .h2 a:hover {
  color: var(--mainColor);
}

h3, .h3 {
  font-size: 18px;
  font-weight: 700;
}

h4, .h4 {
  font-size: 14px;
  font-weight: 700;
}

h5, .h5 {
  font-size: 12px;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  h2, .h2 {
    font-size: 50px;
  }
  h2:after, .h2:after {
    width: 150px;
    height: 10px;
  }
}
@media screen and (min-width: 1200px) {
  h2, .h2 {
    font-size: 70px;
  }
  h2:after, .h2:after {
    width: 215px;
    height: 15px;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  visibility: hidden;
  z-index: 5;
}
.overlay.active {
  display: block;
  visibility: visible;
}

@keyframes element_scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 100vh;
  height: 100%;
  z-index: 6;
}
.popup.active {
  display: flex;
  visibility: visible;
  animation: element_scale 0.3s ease-in-out forwards;
}
.popup__box {
  position: relative;
}
.popup__close_btn {
  position: fixed;
  top: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--colorBlack);
  border-radius: 50%;
  z-index: 6;
}
.popup__close_btn:hover {
  background: var(--mainColor);
}
.popup__close_line {
  position: relative;
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: transparent;
  transform: translateX(4px);
  transition: transform 0.2s ease-in-out;
}
.popup__close_line:before, .popup__close_line:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--colorWhite);
  transform-origin: left center;
}
.popup__close_line:before {
  margin-top: -10px;
  transform: rotate(43deg);
}
.popup__close_line:after {
  margin-top: 10px;
  transform: rotate(-43deg);
}
.popup__content {
  max-width: 570px;
  width: 100vw;
  max-height: 100vh;
}
.popup__content .news__item {
  padding: 0;
}
.popup__content .news__item_content {
  padding: 0 20px 20px;
  max-height: 100vh;
  overflow-y: auto;
}
.popup__content .news__item_content h4 {
  position: relative;
}
.popup__content .news__item_content h4:after {
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  background: var(--mainColor);
  transform: translateY(0.4em);
}
.popup__content .news__img {
  margin: 0 -20px;
  width: calc(100% + 40px);
}
.popup__content .news__published {
  display: inline-block;
  margin-bottom: 8px;
  padding: 0 15px;
  color: var(--colorWhite);
  font-weight: 700;
  background: var(--mainColor);
  transform: translateY(-2px);
}
.popup__content .news__info {
  visibility: visible;
  display: block;
}

.slick-prev,
.slick-next {
  top: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  background: var(--colorBlack);
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.6);
}
.slick-prev:before,
.slick-next:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: var(--mainColor);
}

.slick-prev {
  left: unset;
  right: 80px;
}
.slick-prev:before {
  border-width: 5px 5px 5px 0;
  border-color: transparent var(--colorWhite) transparent transparent;
}

.slick-next {
  right: 10px;
}
.slick-next:before {
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent var(--colorWhite);
}

@media screen and (min-width: 600px) {
  .slick-prev {
    left: 180px;
    right: unset;
  }

  .slick-next {
    right: unset;
    left: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .slick-prev, .slick-next {
    top: -35px;
  }

  .slick-prev {
    left: calc(50vw - 350px);
    right: unset;
  }

  .slick-next {
    right: unset;
    left: calc(50vw - 280px);
  }
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  max-width: 160px;
  width: auto;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--colorWhite);
  background: var(--mainColor);
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.6);
  cursor: pointer;
  white-space: nowrap;
}
.btn__black {
  background: var(--colorBlack);
}
.btn__big {
  padding: 10px 45px;
  max-width: 160px;
  height: 50px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 45px;
}

@media screen and (min-width: 500px) {
  .btn__big {
    padding: 10px 25px;
    max-width: 360px;
    height: 60px;
    font-size: 24px;
    font-weight: 800;
  }
}
@media screen and (min-width: 990px) {
  .btn__big {
    padding: 10px 45px;
    height: 90px;
    font-size: 30px;
    font-weight: 800;
  }
}
@media screen and (min-width: 1200px) {
  @keyframes gelatine_animation {
    from, to {
      transform: scale(1, 1);
    }
    25% {
      transform: scale(0.95, 1.05);
    }
    50% {
      transform: scale(1.05, 0.95);
    }
    75% {
      transform: scale(0.975, 1.075);
    }
  }
  .btn:hover {
    animation: gelatine_animation 0.5s 1 cubic-bezier(0.6, 4, 0.3, 0.8);
  }
}
.wrapper {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0 5px;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 500px) {
  .wrapper {
    padding: 0 15px;
  }
}
section, .section {
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  section, .section {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  section, .section {
    margin-bottom: 70px;
  }
}
body {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: var(--fontColor);
  background: var(--bgColor);
  overflow: hidden;
}
body.on_line .mobile_reg,
body.on_line .enter_box {
  display: none;
  visibility: hidden;
}
body.on_line .mobile_nav .user__login {
  display: inline-flex;
  visibility: visible;
}

@media screen and (min-width: 500px) {
  body.on_line .user__login {
    display: inline-flex;
    visibility: visible;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 4;
  transform: translateY(0);
  transition: transform 0.2s ease-in-out;
}
.header.hide {
  transform: translateY(-150%);
}

.hamburger {
  position: relative;
  align-self: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 50px;
  cursor: pointer;
  z-index: 1;
}
.hamburger:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  right: -5px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--mainColor);
  transform: translate(0);
  transition: transform 0.2s ease-in-out;
}
.hamburger.active {
  transform: translateY(5px);
}
.hamburger.active:before {
  transform: translate(-50%, -50%);
}
.hamburger.active .hamburger__line {
  background: transparent;
}
.hamburger.active .hamburger__line:before {
  transform: rotate(43deg);
}
.hamburger.active .hamburger__line:after {
  transform: rotate(-43deg);
}
.hamburger__line {
  position: relative;
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--colorBlack);
  transition: transform 0.2s ease-in-out;
}
.hamburger__line:before, .hamburger__line:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--colorBlack);
  transform-origin: left center;
}
.hamburger__line:before {
  margin-top: -10px;
}
.hamburger__line:after {
  margin-top: 10px;
}

@media screen and (min-width: 500px) {
  .hamburger {
    width: 70px;
    min-width: 70px;
    height: 60px;
  }
  .hamburger:before {
    bottom: -5px;
    right: -5px;
  }
  .hamburger.active {
    transform: translateY(0);
  }
}
@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
    visibility: hidden;
  }
  .hamburger:hover:before {
    transform: translate(-5px, -5px);
  }
  .hamburger:hover .hamburger__line {
    background: linear-gradient(to right, var(--colorBlack) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .hamburger:hover .hamburger__line:before {
    transform: rotate(3deg);
  }
  .hamburger:hover .hamburger__line:after {
    transform: rotate(-3deg);
  }
  .hamburger.active:hover:before {
    transform: translate(-50%, -50%);
  }
  .hamburger.active:hover .hamburger__line {
    background: transparent;
  }
  .hamburger.active:hover .hamburger__line:before {
    transform: rotate(43deg);
  }
  .hamburger.active:hover .hamburger__line:after {
    transform: rotate(-43deg);
  }
}
.mobile_nav {
  position: fixed;
  top: 0;
  left: -320px;
  display: block;
  width: 320px;
  height: 100vh;
  background: var(--colorWhite);
  transform: translateX(0);
  clip-path: polygon(0 0, 85% 0, 33% 85%, 0% 100%);
  transition-delay: 0s, 0.3s;
  transition: transform 0.4s ease-in-out, clip-path 0.4s ease-in-out;
  overflow-y: auto;
  z-index: 1;
}
.mobile_nav.active {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  transform: translateX(100%);
  transition-delay: 0.3s, 0s;
  transition: transform 0.4s ease-in-out, clip-path 0.4s ease-in-out;
}
.mobile_nav .btn {
  margin-right: 5px;
  box-shadow: none;
}
.mobile_nav .enter_box {
  display: inline-flex;
  visibility: visible;
  padding-left: 60px;
  width: 255px;
}
.mobile_nav .enter_box > *:not(:first-child) {
  visibility: visible;
  display: initial;
}
.mobile_nav .lang {
  display: inline-flex;
  visibility: visible;
  margin-right: 20px;
}
.mobile_nav > ul {
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--colorBlack);
}
.mobile_nav > ul > li {
  padding-bottom: 1px;
}
.mobile_nav > ul > li.active {
  color: var(--mainColor);
}
.mobile_nav > ul > li.active > a {
  color: var(--mainColor);
}
.mobile_nav > ul > li + li {
  border-top: 1px solid var(--colorBlack);
}
.mobile_nav > ul a {
  display: inline-block;
  width: 100%;
  color: var(--colorBlack);
  line-height: 48px;
  text-decoration: none;
  text-transform: lowercase;
}
.mobile_nav > ul a:first-letter {
  text-transform: uppercase;
}
.mobile_nav > ul a.active {
  color: var(--mainColor);
}
.mobile_nav .menu-item-has-children.active ul {
  display: block;
  visibility: visible;
}
.mobile_nav .menu-item-has-children ul {
  display: none;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.mobile_nav .menu-item-has-children li {
  display: flex;
  align-items: center;
}
.mobile_nav .menu-item-has-children li:before {
  content: "";
  display: block;
  margin-right: 15px;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background: var(--mainColor);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

@media screen and (min-width: 1200px) {
  .mobile_nav ul a:hover {
    color: var(--mainColor);
  }
}
.logo {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 60px;
}
.logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
}
.logo img {
  display: block;
  width: 100px;
  height: 40px;
}

@media screen and (min-width: 500px) {
  .logo {
    padding-right: 0;
  }
  .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 80px;
  }
  .logo img {
    display: block;
    width: 160px;
    height: 60px;
  }
}
@media screen and (min-width: 990px) {
  .logo {
    flex: unset;
  }
}
@media screen and (min-width: 1200px) {
  .logo {
    flex: unset;
    margin-left: 30px;
  }
}
.main_nav {
  flex: 1 1 100%;
  display: none;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
.main_nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_nav > ul > li + li:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 20px;
  background: #d0d6d0;
}
.main_nav li {
  position: relative;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fontColor);
  text-transform: capitalize;
  white-space: nowrap;
}
.main_nav li.menu-item-has-children.active ul {
  box-shadow: 0 0 20px 0 rgba(0, 0, 60, 0.2);
  visibility: visible;
  transform: translateY(0);
}
.main_nav li.menu-item-has-children ul {
  position: absolute;
  top: 90%;
  left: 20px;
  padding: 0 20px;
  background: var(--colorWhite);
  border-top: 2px solid var(--mainColor);
  box-shadow: 0 0 20px 0 rgba(0, 0, 60, 0);
  z-index: 1;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}
.main_nav li.menu-item-has-children ul:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent var(--mainColor) transparent;
}
.main_nav li.menu-item-has-children li {
  padding: 17px 0;
}
.main_nav li.menu-item-has-children li.active {
  color: var(--mainColor);
}
.main_nav li.menu-item-has-children li.active a {
  color: var(--mainColor);
}
.main_nav li.menu-item-has-children li.active:after {
  content: none;
  display: none;
}
.main_nav li.menu-item-has-children li:after {
  content: none;
  display: none;
}
.main_nav li.menu-item-has-children li + li {
  border-top: 1px solid var(--colorBlack);
}
.main_nav li.active:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 28px;
  height: 2px;
  background: var(--mainColor);
  opacity: 1;
}
.main_nav li a {
  color: var(--fontColor);
  text-decoration: none;
  white-space: nowrap;
}

@media screen and (min-width: 990px) {
  .main_nav {
    display: flex;
    visibility: visible;
  }
}
@media screen and (min-width: 1200px) {
  @keyframes line_up {
    0% {
      opacity: 0;
      transform: translate(-50%, 8px) rotate(40deg) scale(0.4, 1);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, 0) rotate(0) scale(1, 1);
    }
  }
  .main_nav li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform-origin: left center;
    transform: translate(-50%, 8px) rotate(40deg);
    width: 28px;
    height: 2px;
    background: var(--mainColor);
    opacity: 0;
  }
  .main_nav li:hover:after {
    animation: line_up 0.2s linear forwards;
  }
  .main_nav li.active:hover:after {
    animation: none;
  }
  .main_nav li.menu-item-has-children:hover ul {
    box-shadow: 0 0 20px 0 rgba(0, 0, 60, 0.2);
    visibility: visible;
    transform: translateY(0);
  }
  .main_nav li.menu-item-has-children:hover ul a:hover {
    color: var(--mainColor);
  }
  .main_nav li.menu-item-has-children:hover:after {
    content: none;
    display: none;
  }
}
.enter_box {
  display: none;
  justify-content: flex-end;
  align-items: center;
  height: 60px;
  visibility: hidden;
}
.enter_box > * {
  margin-right: 12px;
}
.enter_box > *:not(:first-child) {
  visibility: hidden;
  display: none;
}

@media screen and (min-width: 500px) {
  .enter_box {
    display: flex;
    visibility: visible;
  }
}
@media screen and (min-width: 1200px) {
  .enter_box > *:not(:first-child) {
    visibility: visible;
    display: initial;
  }
}
.lang {
  display: none;
  visibility: hidden;
  position: relative;
  color: var(--colorBlack);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
  margin-right: 20px;
}
.lang.active .lang__current {
  background: var(--colorGray);
}
.lang.active .lang__list {
  transform: translate(-50%, 0);
  visibility: visible;
  box-shadow: 0 0 20px 0 rgba(0, 0, 60, 0.2);
}
.lang__current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--colorWhite);
  border: 2px solid var(--colorGray);
  cursor: pointer;
}
.lang__list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  padding: 0 20px;
  background: var(--colorWhite);
  border-top: 2px solid var(--mainColor);
  visibility: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 60, 0);
  transition: all 0.2s ease-in-out;
}
.lang__list:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent var(--mainColor) transparent;
}
.lang__list li + li {
  border-top: 1px solid var(--colorBlack);
}
.lang__list a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 49px;
  width: auto;
  text-decoration: none;
  color: var(--colorBlack);
}
.lang__list a.active {
  color: var(--mainColor);
}

@media screen and (min-width: 500px) {
  .lang {
    display: inline-flex;
    visibility: visible;
    margin-right: 20px;
  }
  .lang:hover .lang__current {
    background: var(--colorGray);
  }
  .lang:hover .lang__list {
    transform: translate(-50%, 0);
    visibility: visible;
    box-shadow: 0 0 20px 0 rgba(0, 0, 60, 0.2);
  }
  .lang__list a:hover {
    color: var(--mainColor);
  }
}
@media screen and (min-width: 1200px) {
  .lang {
    margin-right: 30px;
  }
}
.mobile_reg {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 65px;
  z-index: 3;
}

@media screen and (min-width: 500px) {
  .mobile_reg {
    position: unset;
    display: none;
    visibility: hidden;
  }
}
.main {
  padding-top: 80px;
  padding-bottom: 200px;
  min-height: 100vh;
}

@media screen and (min-width: 760px) {
  .main.img_760 {
    background: transparent url("img/main_bg/gamerevenue_bg.jpg") top center no-repeat fixed;
    background-size: 100%;
  }
}
@media screen and (min-width: 1400px) {
  @keyframes rotate_element {
    from {
      transform: rotate(0) scale(0.8);
    }
    50% {
      transform: rotate(180deg) scale(1.2);
    }
    to {
      transform: rotate(360deg) scale(0.8);
    }
  }
  .main.animate_bg {
    position: relative;
    background: transparent url("img/main_bg/gamerevenue_bg.jpg") top center no-repeat fixed;
    background-size: 100%;
  }
  .main.animate_bg > * {
    position: relative;
    z-index: 2;
  }
  .main.animate_bg:before, .main.animate_bg:after {
    content: "";
    display: block;
    position: fixed;
    width: 25vw;
    height: 25vw;
    z-index: 1;
    transform-origin: center;
  }
  .main.animate_bg:before {
    top: 0;
    right: -5vw;
    background: transparent url("img/main_bg/1.png") center center no-repeat;
    background-size: 100%;
    animation: rotate_element 30s linear infinite;
  }
  .main.animate_bg:after {
    top: 12vw;
    left: -10vw;
    background: transparent url("img/main_bg/2.png") center center no-repeat;
    background-size: 100%;
    animation: rotate_element 45s linear infinite;
  }
}
.intro_screen__img_box > * {
  display: block;
  width: 100%;
}
.intro_screen__info {
  padding: 25px;
}
.intro_screen__info h2:after, .intro_screen__info .h2:after {
  content: none;
}
.intro_screen__info .btn__box {
  display: none;
  visibility: hidden;
  text-align: center;
}

@media screen and (min-width: 500px) {
  .intro_screen__info .btn__box {
    display: block;
    visibility: visible;
  }
}
@media screen and (min-width: 760px) {
  .intro_screen.img_760 {
    background: transparent url("img/intro/social_bg.png") center center no-repeat fixed;
    background-size: contain;
  }
  .intro_screen__box {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .intro_screen__box > * {
    flex-basis: 50%;
  }
  .intro_screen__img_box > * {
    transform: translateX(-10%);
  }
}
@media screen and (min-width: 1200px) {
  .intro_screen {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
    min-height: 100vh;
  }
}
@keyframes scale_down {
  0% {
    opacity: 0.1;
    transform: scale(5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.main_slider__img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.main_slider__img_box img {
  display: block;
  width: 100%;
}
.main_slider__info {
  padding: 25px;
}
.main_slider__info h2:after, .main_slider__info .h2:after {
  content: none;
}
.main_slider__info .btn__box {
  display: none;
  visibility: hidden;
  text-align: center;
}
.main_slider .slick-slide .main_slider__img_box {
  animation: none;
}
.main_slider .slick-slide .main_slider__info {
  animation: none;
}
.main_slider .slick-slide.slick-current.slick-active .main_slider__img_box {
  animation: element_scale 0.6s ease-in-out forwards;
}
.main_slider .slick-slide.slick-current.slick-active .main_slider__info {
  animation: scale_down 0.6s ease-in-out forwards;
}

@media screen and (min-width: 500px) {
  .main_slider__info .btn__box {
    display: block;
    visibility: visible;
  }
}
@media screen and (min-width: 760px) {
  .main_slider__item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .main_slider__item > * {
    flex-basis: 50%;
  }
  .main_slider__img_box img {
    transform: translateX(-10%);
  }
}
@media screen and (min-width: 1200px) {
  .main_slider__info {
    padding: 25px 50px;
  }
}
@media screen and (min-width: 1400px) {
  .main_slider:before {
    content: "";
    display: block;
    position: absolute;
    top: 15%;
    right: 30%;
    width: 20vw;
    height: 20vw;
    z-index: -1;
    background: transparent url(img/main_bg/3.png) center center no-repeat;
    background-size: 100%;
    transform-origin: center;
    animation: rotate_element 30s linear infinite;
  }
  .main_slider__section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 80px;
  }
}
.section__header_img img {
  display: block;
  width: 100%;
}
.section__main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.section__main > * {
  padding: 5px;
}
.section__btn_box {
  display: none;
  visibility: hidden;
  padding: 35px 0;
  text-align: center;
}

@media screen and (min-width: 500px) {
  .section__btn_box {
    display: block;
    visibility: visible;
  }
}
@media screen and (min-width: 760px) {
  @keyframes upDownAnimation {
    0%, 100% {
      transform: translate(10px, -10px) rotate(-5deg);
    }
    50% {
      transform: translate(-10px, 10px) rotate(5deg);
    }
  }
  .section__header {
    display: flex;
    align-items: flex-end;
  }
  .section__header > * {
    flex-basis: 50%;
  }
  .section__header img {
    animation: upDownAnimation 4s linear infinite alternate;
  }
}
@media screen and (min-width: 1200px) {
  .section__header_title {
    transform: translate(15%, 5%);
  }
}
@media screen and (min-width: 1400px) {
  .section__header_title {
    transform: none;
  }
  .section__main > * {
    padding: 10px 15px;
  }
  .section__header_img {
    transform: scale(1.2) translateX(9%);
  }
}
.user__login {
  display: none;
  visibility: hidden;
  justify-content: flex-end;
  width: 255px;
}
.user__link {
  display: inline-flex;
  align-items: center;
  height: 60px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mainColor);
  text-transform: uppercase;
  text-decoration: none;
}
.user__link span {
  width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user__link img {
  display: block;
  margin: 0 7px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--colorBlack);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0;
  padding-bottom: 40px;
}
.breadcrumbs li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
}
.breadcrumbs li:first-child, .breadcrumbs li:last-child {
  background: var(--colorBlack);
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.6);
}
.breadcrumbs li:first-child a:after, .breadcrumbs li:last-child a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}
.breadcrumbs li:first-child a:after {
  border-width: 5px 5px 5px 0;
  border-color: transparent var(--colorWhite) transparent transparent;
}
.breadcrumbs li:last-child a:after {
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent var(--colorWhite);
}
.breadcrumbs li + li {
  margin-left: 5px;
}
.breadcrumbs li:hover {
  background: var(--mainColor);
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.6);
}
.breadcrumbs li:hover a {
  color: var(--colorWhite);
}
.breadcrumbs li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (min-width: 360px) {
  .breadcrumbs li {
    width: 45px;
  }
}
@media screen and (min-width: 500px) {
  .breadcrumbs li {
    width: 50px;
  }
}
.tab__nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  z-index: 1;
}
.tab__content > * {
  display: none;
}
.tab__content > *.active {
  display: block;
}

@keyframes flip_X {
  0% {
    transform: rotateX(-90deg);
  }
  100% {
    transform: rotateX(0);
  }
}
@keyframes flip_Y {
  0% {
    transform: rotateY(-90deg);
  }
  100% {
    transform: rotateY(0);
  }
}
.casino__section {
  position: relative;
}
.casino__section .tab__content > * .casino__header_info_box {
  transform: rotateX(-90deg);
  transform-origin: bottom;
}
.casino__section .tab__content > * .casino__img_box img {
  transform: rotateY(90deg);
}
.casino__section .tab__content > *.active .casino__header_info_box {
  animation: flip_X 0.2s linear forwards;
}
.casino__section .tab__content > *.active .casino__img_box img {
  animation: flip_Y 0.2s linear forwards;
}
.casino__header {
  display: flex;
  flex-direction: column-reverse;
}
.casino__header_info_box .text-center {
  margin: 20px 0;
}
.casino__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 150px;
  width: 30vw;
  min-width: 100px;
  max-height: 150px;
  height: 30vw;
  min-height: 100px;
  cursor: pointer;
}
.casino__link:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  right: 5px;
  z-index: -1;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.casino__link.agro_link:before, .casino__link.agro_link:after {
  background: var(--argoColor);
}
.casino__link.ivi_link:before, .casino__link.ivi_link:after {
  background: var(--iviColor);
}
.casino__link.zig7_link:before, .casino__link.zig7_link:after {
  background: var(--zig7Color);
}
.casino__link.zigS_link:before, .casino__link.zigS_link:after {
  background: var(--zigSColor);
}
.casino__link.ego_link:before, .casino__link.ego_link:after {
  background: var(--egoColor);
}
.casino__link.exp_link:before, .casino__link.exp_link:after {
  background: var(--expColor);
}
.casino__link img {
  display: block;
  max-width: 100px;
  width: 20vw;
  height: auto;
}
.casino__main b a {
  color: var(--fontColor);
  text-decoration: none;
}
.casino__main b a:hover {
  color: var(--mainColor);
}
.casino__img_box {
  display: block;
  max-width: 500px;
}
.casino__img_box img {
  display: block;
  width: 100%;
  height: auto;
}
.casino__img_row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px 1em;
}
.casino__img_row img {
  display: block;
  margin: 5px 10px;
  max-width: 100px;
  width: 100%;
  max-height: 50px;
  min-height: 50px;
  background: white;
  box-shadow: 0 0 10px 0 rgba(120, 75, 80, 0.2);
}
.casino__img_row.flag_box img {
  max-width: 60px;
  width: 100%;
  max-height: 40px;
  min-height: 40px;
  background: transparent;
}
.casino__card_row > * {
  flex-basis: 50%;
}
.casino__card_row > * .casino__card:after {
  top: 50%;
  left: 5%;
  width: 30vw;
  height: 30vw;
  background: transparent url("img/section_img/card_1.png") center center no-repeat;
  background-size: 100%;
  z-index: -1;
}
.casino__card_row > *:nth-child(2n) .casino__card:after {
  top: 25%;
  right: 5%;
  width: 50vw;
  height: 50vw;
  background: transparent url("img/section_img/card_2.png") center center no-repeat;
  background-size: 100%;
  z-index: -1;
}
.casino__card_row > *:nth-child(2n) .casino__card.vip:after {
  top: 25%;
  right: 5%;
  width: 75vw;
  height: 75vw;
  background: transparent url("img/section_img/card_2.png") center center no-repeat;
  background-size: 100%;
  z-index: -1;
}
.casino__card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px 15px;
  height: 100%;
  overflow: hidden;
}
.casino__card > * {
  text-align: center;
}
.casino__card:before, .casino__card:after {
  content: "";
  display: block;
  position: absolute;
}
.casino__card:before {
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: var(--colorWhite);
  box-shadow: 0 0 50px 0 rgba(51, 51, 51, 0.05);
  z-index: -2;
}
.casino__card.vip .percent_value,
.casino__card.vip .status_level {
  color: var(--colorWhite);
  background: var(--mainColor);
}
.casino__card .percent_value {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
  width: 100px;
  height: 100px;
  font-size: 35px;
  background: var(--colorWhite);
  border: 3px solid var(--mainColor);
  border-radius: 50%;
}
.casino__card .percent_value b, .casino__card .percent_value strong, .casino__card .percent_value .bold {
  font-weight: 800;
}
.casino__card .status_level {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  width: 30px;
  height: 30px;
  font-size: 15px;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  border-radius: 50%;
}
.casino__card .status_level img {
  width: 65%;
}
.casino .tab__nav {
  margin: 0 -5px;
  max-width: 500px;
  max-height: 375px;
  height: 75vw;
  min-height: 250px;
  background: transparent url("img/logo_small.svg") center center no-repeat;
  background-size: 20vw;
}
.casino .tab__nav > * {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 150px;
  width: 30vw;
  max-height: 150px;
  height: 30vw;
  min-height: 100px;
  z-index: 1;
}
.casino .tab__nav > *:hover {
  z-index: 3;
}
.casino .tab__nav > *:hover .casino__link {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}
.casino .tab__nav > * .casino__link {
  transition: transform 0.2s ease-in-out;
}
.casino .tab__nav > *.active {
  z-index: 2;
}
.casino .tab__nav > *.active .casino__link {
  transform: scale(1.15);
}
.casino .tab__nav > *.active .casino__link:after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  z-index: -2;
  opacity: 0.4;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.casino .tab__nav > *:nth-child(1) {
  transform: translate(-100%, -125%);
}
.casino .tab__nav > *:nth-child(2) {
  transform: translate(0, 25%);
}
.casino .tab__nav > *:nth-child(3) {
  transform: translate(-100%, 25%);
}
.casino .tab__nav > *:nth-child(4) {
  transform: translate(-150%, -50%);
}
.casino .tab__nav > *:nth-child(5) {
  transform: translate(0, -125%);
}
.casino .tab__nav > *:nth-child(6) {
  transform: translate(50%, -50%);
}
.casino .tab__nav > *:nth-child(7) {
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 500px) {
  .casino__header {
    display: block;
    flex-direction: unset;
  }
  .casino__img_box {
    float: left;
    margin-right: 10px;
    width: 50vw;
  }
  .casino__card .percent_value {
    width: 150px;
    height: 150px;
    font-size: 50px;
    border: 5px solid var(--mainColor);
  }
  .casino__card .status_level {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: 2px solid var(--mainColor);
  }
  .casino .tab__nav {
    margin: 0 auto;
    background-size: 100px;
  }
}
@media screen and (min-width: 600px) {
  .casino__img_box {
    width: 40vw;
  }
  .casino__card_row > * {
    flex-basis: 35%;
  }
  .casino__card_row > * .casino__card:after {
    width: 20vw;
    height: 20vw;
  }
  .casino__card_row > *:nth-child(2n) .casino__card:after {
    width: 30vw;
    height: 30vw;
  }
  .casino__card_row > *:nth-child(2n) .casino__card.vip:after {
    top: 30%;
    width: 33vw;
    height: 40vw;
  }
}
@media screen and (min-width: 760px) {
  @keyframes brandUpDown {
    0% {
      transform: translateY(25%);
    }
    100% {
      transform: translateY(15%);
    }
  }
  .casino .tab__nav {
    margin: 0 auto 0 0;
  }
  .casino__header {
    position: relative;
  }
  .casino__img_box {
    float: unset;
    position: absolute;
    bottom: 100%;
    right: 0;
    transform: translateY(25%);
  }
  .casino__header_info_box {
    padding: 0 25px;
  }
  .casino__section.img_760 {
    padding-bottom: 25px;
  }
  .casino__section.img_760:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200%;
    background: transparent url("img/main_bg/phone_bg.png") bottom center no-repeat;
    background-size: 100%;
    z-index: -1;
  }
  .casino__section .tab__content > *.active .casino__img_box {
    animation: brandUpDown 4s linear alternate infinite;
  }
  .casino__page .casino__header_info_box {
    padding: 0;
  }
  .casino__img_row {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 800px) {
  .casino__card_row > * {
    flex-basis: 25%;
  }
  .casino__card:before {
    top: 45px;
  }
}
@media screen and (min-width: 1000px) {
  .casino__img_box {
    right: unset;
    left: 500px;
    margin-right: 0;
  }
  .casino__header_info_box {
    padding: 0 40px;
  }
  .casino__section.img_760 {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .casino__commission.img_1200 {
    position: relative;
    margin-bottom: 140px;
  }
  .casino__commission.img_1200:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 5%);
    width: 100%;
    height: 200%;
    background: transparent url("img/section_img/notebook.png") center bottom no-repeat;
    background-size: 130%;
    opacity: 0.6;
    pointer-events: none;
  }
  .casino__card_row > * {
    flex-basis: 20%;
  }
}
@media screen and (min-width: 1300px) {
  .casino__commission.img_1200:before {
    transform: translate(-50%, 8%);
  }
  .casino__card_row > * {
    flex-basis: 22%;
  }
}
@media screen and (min-width: 1400px) {
  .casino__section.img_760:before {
    left: -5%;
    right: -5%;
  }
  .casino__commission.img_1200:before {
    transform: translate(-50%, 6%);
    background-size: 1920px;
  }
  .casino__card_row > * {
    flex-basis: 25%;
  }
  .casino__card {
    padding: 0 30px 30px;
  }
  .casino__card__card:before {
    top: 60px;
  }
  .casino__card .percent_value {
    width: 200px;
    height: 200px;
    font-size: 70px;
    border: 6px solid var(--mainColor);
  }
  .casino__card .status_level {
    width: 50px;
    height: 50px;
    font-size: 30px;
    border: 3px solid var(--mainColor);
  }
}
.sport__commission_main > img {
  width: 100%;
  transform-origin: left bottom;
}
.sport__card_row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.sport__card_row > * {
  flex-basis: 50%;
  padding: 0 10px;
}
.sport__card_row > *:nth-child(1) .sport__card .status_level {
  height: 100px;
}
.sport__card_row > *:nth-child(2) .sport__card .status_level {
  height: 125px;
}
.sport__card_row > *:nth-child(2) .sport__card .status_level {
  height: 125px;
}
.sport__card_row > *:nth-child(3) .sport__card .status_level {
  height: 150px;
}
.sport__card_row > *:nth-child(4) .sport__card .status_level {
  height: 200px;
}
.sport__card > * {
  text-align: center;
}
.sport__card h3 {
  margin-bottom: 0.5em;
  min-height: 44px;
}
.sport__card p {
  min-height: 51px;
  line-height: 1.11;
}
.sport__card .percent_value {
  font-size: 50px;
}
.sport__card .percent_value b, .sport__card .percent_value strong, .sport__card .percent_value .bold {
  font-weight: 800;
}
.sport__card .status_level {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto 5px;
  padding: 10px 5px;
  max-width: 100px;
  width: 65%;
  background: #cccccc;
}
.sport__card .status_level > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  width: 30px;
  height: 30px;
  font-size: 15px;
  color: var(--colorWhite);
  background: var(--mainColor);
  border-radius: 50%;
}
.sport__card .status_level img {
  width: 65%;
}
.sport__card.vip .status_level {
  background: var(--mainColor);
}
.sport__card.vip .status_level > span {
  background: var(--colorWhite);
}
.sport__header_img {
  margin: 0 auto;
  width: 70%;
}
.sport__header_img img {
  width: 100%;
}
.sport__commission_info {
  margin-bottom: 1rem;
}
.sport__header {
  margin-bottom: 1rem;
}

@media screen and (min-width: 360px) {
  .sport__card_row > * {
    flex-basis: 40%;
  }
}
@media screen and (min-width: 500px) {
  .sport__card_row > * {
    flex-basis: 25%;
  }
}
@media screen and (min-width: 760px) {
  @keyframes upLine {
    0% {
      transform: translateY(-100%) scale(0.95) rotate(0deg);
    }
    100% {
      transform: translateY(-100%) scale(1.02) rotate(-5deg);
    }
  }
  .sport__commission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "header_top ." "commission commission" "header_img commission_info" "important important" "header_bottom header_bottom";
  }
  .sport__header.header_top {
    grid-area: header_top;
    position: relative;
    z-index: 1;
  }
  .sport__commission_main {
    grid-area: commission;
    position: relative;
  }
  .sport__commission_main > img {
    width: 60%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    animation: upLine 4s linear infinite alternate;
  }
  .sport__header_img {
    grid-area: header_img;
  }
  .sport__commission_info {
    grid-area: commission_info;
    align-self: center;
  }
  .sport__header.header_bottom {
    grid-area: header_bottom;
  }
}
@media screen and (min-width: 991px) {
  .sport__card h3 {
    min-height: unset;
  }
}
@media screen and (min-width: 1100px) {
  @keyframes upLine {
    0% {
      transform: translate(0, 0) scale(0.95) rotate(0deg);
    }
    100% {
      transform: translate(5%, -20%) scale(1.2) rotate(-5deg);
    }
  }
  .sport__commission {
    grid-template-areas: "header_top commission" "header_img commission" "commission_info commission_info" "important important" "header_bottom header_bottom";
  }
  .sport__commission_main > img {
    width: 100%;
    position: unset;
    transform-origin: top right;
    transform: scale(1.2);
  }
  .sport__header_img {
    margin: 0 auto 0 0;
  }
  .sport__header.header_bottom {
    grid-area: header_bottom;
  }
}
@media screen and (min-width: 1200px) {
  .sport__commission_info {
    margin-top: 100px;
    perspective: 2000px;
  }
  .sport__commission_main.img_1200 {
    position: relative;
  }
  .sport__commission_main.img_1200:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 5%);
    width: 110%;
    height: 150%;
    background: transparent url("img/section_img/img_ipad.png") center bottom no-repeat;
    background-size: 100%;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
  }
}
.important__info {
  position: relative;
  display: flex;
  padding: 20px;
  background: var(--colorWhite);
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.2);
}
.important__info:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 5px;
  background: var(--mainColor);
  transform: translateY(-50%);
}
.important__icon_box {
  position: relative;
  width: 40px;
  min-width: 40px;
  font-size: 70px;
  font-weight: 800;
}
.important__content > div {
  font-style: italic;
}

@media screen and (min-width: 760px) {
  .important__info {
    grid-area: important;
    margin: 0 auto 25px;
    max-width: 970px;
    width: 80%;
  }
  .important__icon_box {
    margin-bottom: -20px;
    width: 120px;
    min-width: 120px;
    overflow: hidden;
  }
  .important__icon_box:after {
    content: "!";
    display: block;
    position: absolute;
    top: 0;
    left: 35%;
    font-size: 200px;
    line-height: 0.8;
    color: #eeeeee;
  }
}
.news__page {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.news__page > * {
  flex-basis: 50%;
}
.news__section {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.news__section > * {
  flex-basis: 50%;
}
.news__article_box {
  margin: 0 -5px;
}
.news__article h3, .news__article .h3 {
  padding: 10px 10px 0;
}
.news__article .news__info {
  display: block;
  visibility: visible;
  padding: 0 15px 15px;
  line-height: 1.4;
}
.news__article .news__info > * {
  line-height: 1.4;
}
.news__sidebar {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.news__sidebar > * {
  flex-basis: 50%;
}
.news__item {
  display: block;
  padding: 5px;
}
.news__item h4 a, .news__item .h4 a {
  text-decoration: none;
  color: inherit;
}
.news__item h4 a:hover, .news__item .h4 a:hover {
  color: var(--mainColor);
}
.news__item_content {
  display: block;
  padding: 0 5px 1px;
  background: var(--colorWhite);
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.2);
  height: 100%;
}
.news__img {
  display: block;
  min-width: 150px;
  min-height: 82px;
  margin: 0 -5px;
  width: calc(100% + 10px);
  transform-origin: center bottom;
  transition: transform 3s ease-in-out;
}
.news__published {
  font-size: 10px;
  line-height: 2em;
  color: var(--colorDarkGray);
}
.news__info {
  display: none;
  visibility: hidden;
  overflow: hidden;
}

@media screen and (min-width: 500px) {
  .news__page > * {
    flex-basis: 33.333333%;
  }
  .news__article_box {
    display: flex;
  }
  .news__article {
    flex-basis: 64%;
  }
  .news__sidebar {
    flex-basis: 33%;
  }
  .news__sidebar > * {
    flex-basis: 100%;
  }
  .news__item_content {
    padding: 0 10px 1px;
  }
  .news__img {
    margin: 0 -10px;
    width: calc(100% + 20px);
  }
}
@media screen and (min-width: 760px) {
  .news__page {
    display: grid;
    flex-wrap: unset;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    margin: 0 -10px;
  }
  .news__page > *:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .news__page > *:first-child .news__item_content {
    padding: 0 20px 20px;
    height: 100%;
  }
  .news__page > *:first-child .news__item_content h4 {
    position: relative;
  }
  .news__page > *:first-child .news__item_content h4:after {
    content: "";
    display: block;
    width: 170px;
    height: 2px;
    background: var(--mainColor);
    transform: translateY(0.4em);
  }
  .news__page > *:first-child .news__img {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .news__page > *:first-child .news__published {
    display: inline-block;
    margin-bottom: 8px;
    padding: 0 15px;
    color: var(--colorWhite);
    font-weight: 700;
    background: var(--mainColor);
    transform: translateY(-2px);
  }
  .news__page > *:first-child .news__info {
    visibility: visible;
    display: block;
    max-height: 42px;
  }
  .news__article_box {
    margin: 0 -10px;
  }
  .news__section {
    margin: 0 -10px;
  }
  .news__section > * {
    flex-basis: 25%;
  }
  .news__item {
    padding: 10px;
  }
  .news__item_content h4 {
    max-height: 34px;
    height: 34px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1000px) {
  .news__page > *:first-child .news__info {
    max-height: 36px;
  }
}
@media screen and (min-width: 1199px) {
  .news__page {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    margin: 0 -15px;
  }
  .news__article_box {
    margin: 0 -15px;
  }
  .news__article {
    flex-basis: 75%;
  }
  .news__article h3, .news__article .h3 {
    padding: 10px 30px 0;
    font-size: 20px;
  }
  .news__article .news__info {
    padding: 0 30px 30px;
    font-size: 18px;
    line-height: 1.8;
  }
  .news__article .news__info > * {
    font-size: 18px;
    line-height: 1.8;
  }
  .news__sidebar {
    flex-basis: 25%;
  }
  .news__section {
    margin: 0 -15px;
  }
  .news__item:hover .news__img {
    transform: scale(1.1);
  }
  .news__item {
    padding: 10px 15px;
  }
}
.testimonials__page {
  display: block;
  margin: 0 -5px;
}
.testimonials__slider {
  position: relative;
  margin-top: -15px;
  z-index: 2;
}
.testimonials__slider .testimonials__item {
  padding: 20px 5px 10px;
}
.testimonials__item {
  padding: 5px;
}
.testimonials__item_content {
  position: relative;
  display: block;
  padding: 10px;
  background: var(--colorWhite);
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.2);
}
.testimonials__item_content h4, .testimonials__item_content .h4 {
  position: relative;
  margin-bottom: 0.05em;
  padding-right: 30px;
}
.testimonials__item_content h4:after, .testimonials__item_content .h4:after {
  content: '"';
}
.testimonials__item_content img {
  float: left;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  max-width: 190px;
  height: auto;
}
.testimonials__published {
  font-size: 10px;
  line-height: 2em;
  color: var(--colorDarkGray);
}
.testimonials__info {
  margin-top: 16px;
  font-style: italic;
  font-size: 14px;
}

@media screen and (min-width: 500px) {
  .testimonials__page {
    columns: 2;
    column-gap: 0;
  }
  .testimonials__page > * {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .testimonials__item_content {
    padding: 15px;
  }
  .testimonials__slider .testimonials__item {
    padding: 20px 15px 10px;
  }
}
@media screen and (min-width: 760px) {
  .testimonials__page {
    margin: 0 -10px;
  }
  .testimonials__item {
    padding: 10px 10px;
  }
  .testimonials__item_content {
    padding: 20px;
  }
}
@media screen and (min-width: 1199px) {
  .testimonials__page {
    margin: 0 -15px;
  }
  .testimonials__slider .slick-list {
    padding: 0 calc(50vw - 600px);
  }
  .testimonials__item {
    padding: 10px 15px;
  }
}
.faq__list h3 {
  margin-bottom: 0;
}
.faq__list li {
  position: relative;
  margin-bottom: 25px;
  padding: 0 30px;
}
.faq__list li:before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 10px;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background: var(--mainColor);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

@media screen and (min-width: 500px) {
  .faq__list li:before {
    left: 0;
  }
}
.rules__nav h3, .rules__nav .h3 {
  font-size: 16px;
  margin-bottom: 0.33em;
}
.rules__nav a {
  display: inline-block;
  color: var(--fontColor);
  font-weight: 700;
  text-decoration: none;
  text-transform: lowercase;
}
.rules__nav a:first-letter {
  text-transform: uppercase;
}
.rules__nav ol {
  counter-reset: item;
}
.rules__nav ol li {
  position: relative;
  margin-bottom: 0.33em;
  padding-left: 25px;
}
.rules__nav ol li:before {
  counter-increment: item;
  content: counter(item) ". ";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
.rules__info {
  padding-top: 15px;
}
.rules__info p {
  line-height: 1.25;
}
.rules__list {
  counter-reset: item;
}
.rules__list > li {
  position: relative;
  margin-top: -20px;
  margin-bottom: 20px;
  padding-top: 20px;
}
.rules__list > li:before {
  counter-increment: item;
  content: counter(item) ". ";
  position: absolute;
  top: 20px;
  left: 0;
  display: inline-block;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 700;
}
.rules__list > li h3 {
  display: inline-block;
  padding-left: 25px;
  text-transform: lowercase;
}
.rules__list > li h3:first-letter {
  text-transform: uppercase;
}
.rules__list > li ol {
  counter-reset: item;
}
.rules__list > li ol li {
  margin-bottom: 20px;
}
.rules__list > li ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  display: inline-block;
  margin-right: 5px;
  font-size: 16px;
  font-weight: 400;
}

@media screen and (min-width: 500px) {
  .rules__nav {
    padding-left: 20px;
  }
  .rules__nav h3, .rules__nav .h3, .rules__nav a {
    font-size: 18px;
  }
  .rules__nav ol li {
    padding-left: 35px;
  }
  .rules__nav ol li:before {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .rules__nav {
    padding-left: 40px;
  }
  .rules__nav h3, .rules__nav .h3 {
    font-size: 18px;
  }
  .rules__nav li:hover:before,
.rules__nav li:hover a {
    color: var(--mainColor);
  }
  .rules__nav a:hover {
    color: var(--mainColor);
  }
}
.footer {
  position: relative;
  margin-top: -200px;
  padding-top: 30px;
  font-size: 12px;
  z-index: 1;
}
.footer:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: var(--colorLightGreen);
  transform: skewY(-3deg);
  z-index: -1;
}
.footer a {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fontColor);
  text-decoration: none;
}
.footer a img {
  display: block;
  margin-right: 10px;
  max-width: 18px;
}
.footer b, .footer strong, .footer .bold {
  font-size: 14px;
}
.footer__contact_box {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
}
.footer__contact_column {
  margin-right: 50px;
}
.footer__contact_column:last-of-type {
  margin-right: 0;
}
.footer__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 100px;
  background: var(--colorBlack);
}
.footer__bottom.img_1200 {
  background: var(--colorBlack) url("img/footer_bottom/bg.jpg") center top no-repeat;
}
.footer__bottom a img {
  max-width: unset;
}
.footer__bottom img {
  display: block;
  margin: 7px;
  width: 150px;
  height: max-content;
}

@media screen and (min-width: 500px) {
  .footer__bottom {
    padding-bottom: 10px;
  }
}
.rss__column {
  display: flex;
  justify-content: center;
  width: 100%;
}
.rss__box {
  max-width: 470px;
  width: 100%;
}
.rss__form {
  position: relative;
  display: block;
  width: 100%;
}
.rss__form .es_subscription_form input[type=submit] {
  display: inline-flex;
  position: absolute;
  top: 40%;
  right: 10px;
  transform: translateY(-50%);
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  max-width: 160px;
  width: auto;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--colorWhite);
  background: var(--mainColor);
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(120, 75, 80, 0.6);
  cursor: pointer;
  white-space: nowrap;
}
.rss__form .es-field-wrap label {
  position: relative;
  display: flex;
  justify-content: center;
}
.rss__form .es-field-wrap label:before {
  position: absolute;
  left: 15px;
  top: 43%;
  background: url(./img/icons/rss.png);
  content: "";
  display: block;
  width: 34px;
  height: 16px;
  transform-origin: left center;
}
.rss__form .es-field-wrap label img {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: block;
  width: 35px;
  height: 16px;
}
.rss__form .es-field-wrap label input[type=text] {
  display: block;
  margin: 15px 0;
  padding: 0 30px 0 65px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
  border-radius: 30px;
  background: var(--colorLightGreen);
  border: 2px solid var(--colorWhite);
}
.rss__form .es-field-wrap label input[type=text]:focus {
  background: var(--colorWhite);
  border-color: var(--mainColor);
}
.rss__form .es-field-wrap label input[type=text]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=text]::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=text]:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=text]:-moz-placeholder {
  /* Firefox 18- */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=email] {
  display: block;
  margin: 15px 0;
  padding: 0 30px 0 65px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
  border-radius: 30px;
  background: var(--colorLightGreen);
  border: 2px solid var(--colorWhite);
}
.rss__form .es-field-wrap label input[type=email]:focus {
  background: var(--colorWhite);
  border-color: var(--mainColor);
}
.rss__form .es-field-wrap label input[type=email]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=email]::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=email]:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=email]:-moz-placeholder {
  /* Firefox 18- */
  font-size: 16px;
  font-weight: 500;
  color: var(--fontColor);
  font-family: "Montserrat", sans-serif;
}
.rss__form .es-field-wrap label input[type=submit] {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  opacity: 0;
  z-index: -1;
}

@media screen and (min-width: 1200px) {
  .rss__column {
    display: inline-block;
    justify-content: unset;
    width: auto;
  }
  .rss__form:hover input[type=text] {
    background: var(--colorWhite);
    border-color: var(--mainColor);
  }
  .rss__form:hover input[type=email] {
    background: var(--colorWhite);
    border-color: var(--mainColor);
  }
}
@media screen and (min-width: 500px) {
  .rss__form label input[type=text] {
    padding: 0 175px 0 65px;
  }
  .rss__form label input[type=email] {
    padding: 0 175px 0 65px;
  }
  .rss__form label.rss__submit {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
}

/*# sourceMappingURL=style.css.map */
