@charset "UTF-8";
/* GLOBAL */
@font-face {
  font-family: 'beaufort-for-lol-bold';
  src: url(../fonts/beaufort-for-lol-bold.ttf); }
#navigation {
  position: fixed;
  display: block;
  width: 100%;
  max-width: 1920px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100; }
  #navigation.fixed {
    background: rgba(11, 7, 6, 0.8); }
    #navigation.fixed .inner {
      height: 70px; }
  #navigation .inner {
    position: relative;
    display: grid;
    width: calc(100% - 20px);
    max-width: 1200px;
    height: 160px;
    grid-template-columns: 1fr auto;
    grid-gap: 50px;
    margin: 0 auto; }
    #navigation .inner .menu {
      position: relative;
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      align-self: center; }
      #navigation .inner .menu li {
        position: relative;
        display: block; }
        #navigation .inner .menu li + li {
          margin-left: 10px; }
        #navigation .inner .menu li a {
          position: relative;
          display: block;
          white-space: nowrap;
          padding: 10px 0; }
          #navigation .inner .menu li a span {
            position: relative;
            display: block;
            color: #ffe5ab;
            font-size: 18px;
            padding-left: 50px; }
            #navigation .inner .menu li a span:before {
              content: '';
              position: absolute;
              display: block;
              width: 35px;
              height: 35px;
              background: url(../images/ico-nav.png) no-repeat;
              top: 50%;
              left: 0;
              transform: translateY(-50%);
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              -moz-transition: all 0.2s ease;
              transition: all 0.2s ease;
              pointer-events: none; }
          #navigation .inner .menu li a.child span {
            padding-right: 23px; }
            #navigation .inner .menu li a.child span:after {
              content: '';
              position: absolute;
              display: block;
              width: 8px;
              height: 7px;
              background: url(../images/ico-select.png) no-repeat;
              top: 50%;
              transform: translateY(-50%);
              left: 100%;
              pointer-events: none; }
          #navigation .inner .menu li a p {
            position: relative;
            display: block;
            color: #7c7068;
            font-size: 12px;
            margin-top: 2px;
            padding-left: 50px;
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            transition: all 0.2s ease; }
          #navigation .inner .menu li a.active span:before {
            top: calc(100% - 5px);
            transform: scale(0.9) translateY(-50%); }
          #navigation .inner .menu li a.active p {
            color: #e2a983; }
        @media screen and (min-width: 1000px) {
          #navigation .inner .menu li:hover a span:before {
            top: calc(100% - 5px);
            transform: scale(0.9) translateY(-50%); }
          #navigation .inner .menu li:hover a p {
            color: #e2a983; } }
        #navigation .inner .menu li:hover .sub {
          transform: skew(0deg) translateX(-50%);
          visibility: visible;
          opacity: 1; }
        #navigation .inner .menu li .sub {
          position: absolute;
          display: block;
          width: 250px;
          top: 100%;
          background: rgba(62, 37, 26, 0.5);
          border-bottom: 2px solid #ffaa00;
          -webkit-border-radius: 0 0 5px 5px;
          -moz-border-radius: 0 0 5px 5px;
          border-radius: 0 0 5px 5px;
          left: calc(50% + 25px);
          transform: skew(-45deg) translateX(-100%);
          padding: 0 5px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          transition: all 0.2s ease;
          visibility: hidden;
          opacity: 0; }
          #navigation .inner .menu li .sub a {
            position: relative;
            display: block;
            width: 100%;
            padding: 11px 15px;
            color: #ffe5ab;
            font-size: 18px;
            text-align: center; }
            #navigation .inner .menu li .sub a + a {
              border-top: 1px solid rgba(255, 170, 0, 0.16); }
            #navigation .inner .menu li .sub a:before {
              content: '';
              position: absolute;
              display: block;
              width: 10px;
              height: 10px;
              background: url(../images/ico-nav.png) no-repeat;
              background-size: contain;
              top: 50%;
              left: -5px;
              transform: translateY(-50%);
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              -moz-transition: all 0.2s ease;
              transition: all 0.2s ease;
              visibility: hidden;
              opacity: 0; }
            #navigation .inner .menu li .sub a:after {
              content: '';
              position: absolute;
              display: block;
              width: 10px;
              height: 10px;
              background: url(../images/ico-nav.png) no-repeat;
              background-size: contain;
              top: 50%;
              right: -5px;
              transform: translateY(-50%);
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              -moz-transition: all 0.2s ease;
              transition: all 0.2s ease;
              visibility: hidden;
              opacity: 0; }
            #navigation .inner .menu li .sub a:hover {
              color: #ffbf31; }
              #navigation .inner .menu li .sub a:hover:before {
                left: 5px;
                visibility: visible;
                opacity: 1; }
              #navigation .inner .menu li .sub a:hover:after {
                right: 5px;
                visibility: visible;
                opacity: 1; }
    #navigation .inner .lang {
      position: relative;
      display: block;
      width: 40px;
      height: 40px;
      margin: 0 18px;
      align-self: center; }
      #navigation .inner .lang .current {
        position: relative;
        display: flex;
        width: 40px;
        height: 40px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 2px solid #ffa900;
        align-items: center;
        justify-content: center; }
        #navigation .inner .lang .current img {
          position: relative;
          display: block;
          width: 32px;
          height: 32px;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          border-radius: 50%; }
        #navigation .inner .lang .current:after {
          content: '';
          position: absolute;
          display: block;
          width: 8px;
          height: 7px;
          background: url(../images/ico-select.png) no-repeat;
          top: 50%;
          transform: translateY(-50%);
          left: calc(100% + 10px);
          pointer-events: none; }
      #navigation .inner .lang .sub {
        position: absolute;
        display: block;
        width: 40px;
        top: 100%;
        left: 0;
        padding: 10px 0;
        transform: skewY(45deg);
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        transition: all 0.2s ease;
        visibility: hidden;
        opacity: 0; }
        #navigation .inner .lang .sub li {
          position: relative;
          display: block; }
          #navigation .inner .lang .sub li + li {
            margin-top: 5px; }
          #navigation .inner .lang .sub li a {
            position: relative;
            display: flex;
            width: 40px;
            height: 40px;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            border: 2px solid #ffa900;
            overflow: hidden;
            align-items: center;
            justify-content: center; }
            #navigation .inner .lang .sub li a img {
              position: relative;
              display: block;
              width: 32px;
              height: 32px;
              -webkit-border-radius: 50%;
              -moz-border-radius: 50%;
              border-radius: 50%;
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              -moz-transition: all 0.2s ease;
              transition: all 0.2s ease;
              opacity: 0.6; }
            #navigation .inner .lang .sub li a:hover img {
              opacity: 1; }
      #navigation .inner .lang:hover .sub {
        transform: skewY(0deg);
        visibility: visible;
        opacity: 1; }
    #navigation .inner .btn-menu-show {
      position: relative;
      display: none;
      width: 40px;
      height: 40px;
      background: url(../images/ico-menu-show.png) no-repeat;
      align-self: center;
      margin-left: 10px; }
      #navigation .inner .btn-menu-show.active {
        background: url(../images/ico-menu-close.png) no-repeat; }

@media screen and (min-width: 1000px) {
  #navigation .inner .menu {
    display: flex !important; }
    #navigation .inner .menu li .sub {
      display: block !important; } }
@media screen and (max-width: 1200px) {
  #navigation .inner {
    grid-gap: 25px; } }
@media screen and (max-width: 1000px) {
  #navigation {
    background: rgba(11, 7, 6, 0.8); }
    #navigation .inner {
      height: 70px; }
      #navigation .inner .btn-menu-show {
        display: block; }
      #navigation .inner .menu {
        position: absolute;
        display: none;
        width: 320px;
        top: 100%;
        left: -10px;
        background: rgba(11, 7, 6, 0.8);
        padding: 10px;
        max-height: calc(100vh - 70px);
        overflow: hidden;
        overflow-y: auto;
        flex-direction: column; }
        #navigation .inner .menu li {
          position: relative;
          display: block;
          width: 100%;
          margin: 0 auto !important; }
          #navigation .inner .menu li + li {
            border-top: 1px solid rgba(255, 170, 0, 0.16); }
          #navigation .inner .menu li a.child span:after {
            left: unset;
            right: 5px; }
          #navigation .inner .menu li a {
            padding: 15px 0; }
          #navigation .inner .menu li .sub {
            position: relative;
            display: none;
            top: 0;
            left: 0;
            width: 100%;
            transform: unset !important;
            visibility: visible;
            opacity: 1;
            -webkit-transition: all 0s ease;
            -o-transition: all 0s ease;
            -moz-transition: all 0s ease;
            transition: all 0s ease;
            background: none; } }
@media screen and (max-width: 500px) {
  #navigation .inner .menu {
    min-width: 100vw; } }
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box; }

body {
  background: #0b0706;
  font-family: "beaufort-for-lol-bold";
  font-size: 14px;
  color: #ffffff; }

a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff; }

input, select, textarea {
  color: #ffe6ab;
  font-size: 18px;
  font-family: "beaufort-for-lol-bold";
  border: 2px solid #ffe6ab;
  background: #140b08; }

button {
  font-family: "beaufort-for-lol-bold"; }

select {
  padding-right: 24px;
  background: #140b08 url(../images/select.png) no-repeat center right 15px;
  -webkit-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none !important;
  -moz-appearance: none; }

::-webkit-input-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

:-moz-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

::-moz-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

:-ms-input-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

textarea::-webkit-input-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

textarea:-moz-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

textarea::-moz-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

textarea:-ms-input-placeholder {
  color: #ffe6ab;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0; }

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0; }

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0; }

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0; }

#general {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1920px;
  min-width: 320px;
  min-height: 2120px;
  margin: 0 auto;
  overflow: hidden;
  background: url(../images/bg-2.png) no-repeat center bottom, url(../images/bg-1.png) no-repeat center top; }
  #general .wrapper {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto; }
    #general .wrapper .inner {
      position: relative;
      display: block;
      width: calc(100% - 20px);
      max-width: 1200px;
      margin: 0 auto; }

img {
  position: relative;
  display: block; }

@media screen and (max-width: 320px) {
  a, p, span, strong, b, i {
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden; } }
.header {
  padding-top: 182px; }
  .header .logo {
    position: relative;
    display: block;
    width: 100%;
    max-width: 529px;
    margin: 0 auto; }
    .header .logo img {
      position: relative;
      display: block;
      max-width: 100%;
      height: auto;
      -webkit-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .header .logo:hover img {
      -webkit-transform: scale(0.9);
      -moz-transform: scale(0.9);
      -o-transform: scale(0.9);
      transform: scale(0.9); }
  .header .status {
    position: relative;
    display: grid;
    justify-content: center;
    width: 100%;
    max-width: 955px;
    margin: 11px auto 0;
    grid-template-columns: 122px 1fr 122px;
    grid-gap: 10px; }
    .header .status .item {
      position: relative;
      display: block;
      width: 122px;
      height: 122px;
      align-self: center;
      justify-self: center; }
      .header .status .item .circle {
        position: relative;
        display: block;
        width: 122px;
        height: 122px;
        background: url(../images/status-circle.png) no-repeat; }
      .header .status .item .text {
        position: absolute;
        display: flex;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        align-items: center;
        justify-content: center;
        padding: 10px; }
        .header .status .item .text .desc {
          position: relative;
          display: block;
          text-align: center; }
          .header .status .item .text .desc span {
            position: relative;
            display: block;
            color: #d6c8b3;
            font-size: 25px;
            line-height: 36px; }
          .header .status .item .text .desc p {
            position: relative;
            display: block;
            color: #82755c;
            font-size: 14px;
            line-height: 14px; }
    .header .status .btns {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      grid-row: 1;
      grid-column: 2; }
      .header .status .btns a {
        position: relative;
        display: flex;
        width: 286px;
        height: 80px;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffe6ab;
        text-shadow: 0px 5px 1px rgba(0, 0, 0, 0.35);
        font-size: 28px;
        z-index: 1;
        margin: 11px 14px;
        padding-bottom: 2px; }
        .header .status .btns a:before {
          content: '';
          position: absolute;
          display: block;
          width: 100%;
          height: 100%;
          background: url(../images/btn-1.png) no-repeat;
          top: 0;
          left: 0;
          z-index: -1;
          -webkit-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .header .status .btns a:nth-child(even):before {
          background: url(../images/btn-2.png) no-repeat; }
        .header .status .btns a:hover:before {
          filter: contrast(150%); }

@media screen and (max-width: 650px) {
  .header .status {
    grid-template-columns: repeat(auto-fit, 122px);
    grid-gap: 30px; }
    .header .status .btns {
      grid-row: unset;
      grid-column-start: 1;
      grid-column-end: 3;
      flex-direction: column;
      justify-self: center;
      min-width: 0; }
      .header .status .btns a {
        margin: 11px 0; } }
.footer {
  max-width: 1360px;
  border-top: 1px solid #38312d;
  padding: 42px 0 59px; }
  .footer .grid {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: minmax(auto, 288px) 1fr minmax(auto, 321px);
    grid-gap: 50px; }
    .footer .grid .logo {
      position: relative;
      display: block;
      width: 100%;
      max-width: 288px;
      align-self: center;
      justify-self: center; }
      .footer .grid .logo img {
        width: 100%;
        height: auto;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-transform-style: preserve-3d;
        -webkit-backface-visibility: hidden; }
      .footer .grid .logo:hover img {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9); }
    .footer .grid .block {
      position: relative;
      display: flex;
      width: 100%;
      justify-content: space-around;
      justify-self: center; }
      .footer .grid .block .list {
        position: relative;
        display: block;
        margin: 0 25px; }
        .footer .grid .block .list .title {
          position: relative;
          display: block;
          color: #f7b558;
          font-size: 24px;
          margin-bottom: 10px; }
        .footer .grid .block .list ul {
          position: relative;
          display: block; }
          .footer .grid .block .list ul li {
            position: relative;
            display: block; }
            .footer .grid .block .list ul li + li {
              margin-top: 10px; }
            .footer .grid .block .list ul li a {
              position: relative;
              display: inline-block;
              color: #d6c8b3;
              font-size: 14px;
              text-decoration: underline;
              white-space: nowrap; }
              .footer .grid .block .list ul li a:hover {
                text-decoration: none; }
    .footer .grid .desc {
      position: relative;
      display: block;
      width: 100%;
      max-width: 321px;
      justify-self: center; }
      .footer .grid .desc .text {
        position: relative;
        display: block;
        width: 100%;
        padding-top: 10px; }
        .footer .grid .desc .text span {
          position: relative;
          display: block;
          color: #d6c8b3;
          font-size: 14px;
          margin-bottom: 15px; }
          .footer .grid .desc .text span a {
            color: #ffffff; }
            .footer .grid .desc .text span a:hover {
              text-decoration: underline; }
        .footer .grid .desc .text p {
          position: relative;
          display: block;
          color: #82755c;
          font-size: 11px; }
      .footer .grid .desc .coolness {
        position: relative;
        display: block;
        width: 122px;
        height: 31px;
        background: url(../images/coolness.png) no-repeat;
        margin: 35px 0 0 auto; }
        .footer .grid .desc .coolness:hover {
          opacity: 0.7; }

@media screen and (max-width: 1000px) {
  .footer .grid {
    grid-template-columns: repeat(1, 1fr); }
    .footer .grid .block {
      flex-direction: column;
      align-items: center; }
      .footer .grid .block .list {
        margin: 0 auto;
        text-align: center; }
        .footer .grid .block .list + .list {
          margin-top: 40px; }
    .footer .grid .desc .text {
      text-align: center; }
    .footer .grid .desc .coolness {
      margin: 35px auto 0; } }
/* CONTENT */
.content {
  padding-top: 62px;
  padding-bottom: 70px; }
  .content .grid-content {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr minmax(auto, 418px);
    grid-gap: 22px; }
    .content .grid-content .left-row {
      position: relative;
      display: block;
      width: 100%;
      min-width: 0; }
      .content .grid-content .left-row .page-block {
        position: relative;
        display: block;
        width: 100%;
        margin: 0 auto; }
        .content .grid-content .left-row .page-block .page-title {
          position: relative;
          display: block;
          margin: 0 auto 35px; }
          .content .grid-content .left-row .page-block .page-title span {
            position: relative;
            display: block;
            color: #ffe6ab;
            font-size: 28px; }
          .content .grid-content .left-row .page-block .page-title p {
            position: relative;
            display: block;
            color: #7c7068;
            font-size: 14px;
            margin-top: 3px; }
      .content .grid-content .left-row .news {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 288px;
        background-color: #020624;
        padding: 34px 20px 20px 35px;
        overflow: hidden; }
        .content .grid-content .left-row .news .img {
          position: absolute;
          display: block;
          width: 100%;
          height: 100%;
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
          -webkit-transition: all 0.6s ease;
          -o-transition: all 0.6s ease;
          -moz-transition: all 0.6s ease;
          transition: all 0.6s ease;
          top: 0;
          left: 0;
          -webkit-transform-style: preserve-3d;
          -webkit-backface-visibility: hidden; }
        .content .grid-content .left-row .news.active .img {
          -webkit-transform: scale(1.2);
          -moz-transform: scale(1.2);
          -o-transform: scale(1.2);
          transform: scale(1.2);
          filter: blur(4px); }
        .content .grid-content .left-row .news .date {
          position: relative;
          display: block;
          color: #dacfef;
          font-size: 12px;
          margin: 0; }
        .content .grid-content .left-row .news .block {
          position: relative;
          display: flex;
          padding-top: 30px;
          flex-direction: column;
          flex-grow: 3; }
          .content .grid-content .left-row .news .block .title {
            position: relative;
            display: block;
            width: 100%;
            max-width: 400px;
            min-height: 76px;
            color: #f7b459;
            font-size: 30px; }
          .content .grid-content .left-row .news .block .text {
            position: relative;
            display: block;
            width: 100%;
            max-width: 480px;
            flex-grow: 3;
            color: #ffffff;
            font-size: 14px;
            padding: 10px 0; }
          .content .grid-content .left-row .news .block .link {
            position: relative;
            display: block; }
            .content .grid-content .left-row .news .block .link a {
              position: relative;
              display: flex;
              height: 39px;
              padding: 0 20px 1px;
              border: 1px solid #f7b459;
              color: #ffffff;
              font-size: 14px;
              width: max-content;
              align-items: center;
              justify-content: center;
              text-align: center; }
              .content .grid-content .left-row .news .block .link a:hover {
                background: #f7b459;
                color: #000; }
    .content .grid-content .right-row {
      position: relative;
      display: block;
      width: 100%;
      min-width: 0; }
      .content .grid-content .right-row .news {
        position: relative;
        display: flex;
        width: 100%;
        max-width: 418px;
        min-height: 138px;
        background-color: #020624;
        padding: 20px 20px 10px;
        overflow: hidden;
        align-items: flex-end;
        z-index: 1; }
        .content .grid-content .right-row .news + .news {
          margin-top: 12px; }
        .content .grid-content .right-row .news .img {
          position: absolute;
          display: block;
          width: 100%;
          height: 100%;
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
          -webkit-transition: all 0.6s ease;
          -o-transition: all 0.6s ease;
          -moz-transition: all 0.6s ease;
          transition: all 0.6s ease;
          top: 0;
          left: 0;
          -webkit-transform-style: preserve-3d;
          -webkit-backface-visibility: hidden;
          z-index: -1; }
        .content .grid-content .right-row .news.active .img {
          -webkit-transform: scale(1.2);
          -moz-transform: scale(1.2);
          -o-transform: scale(1.2);
          transform: scale(1.2);
          filter: blur(4px); }
        .content .grid-content .right-row .news:before {
          content: '';
          position: absolute;
          display: block;
          width: 100%;
          height: 100%;
          background: url(../images/news-fade.png) no-repeat center bottom;
          bottom: 0;
          left: 0; }
        .content .grid-content .right-row .news .block {
          position: relative;
          display: block;
          width: 100%; }
          .content .grid-content .right-row .news .block .title {
            position: relative;
            display: block;
            width: 100%;
            color: #f7b459;
            font-size: 24px;
            text-align: center; }
          .content .grid-content .right-row .news .block .link {
            position: relative;
            display: flex;
            width: 100%;
            justify-content: center;
            margin-top: 5px; }
            .content .grid-content .right-row .news .block .link a {
              position: relative;
              display: inline-block;
              color: #ffffff;
              font-size: 12px;
              text-align: center; }
              .content .grid-content .right-row .news .block .link a:hover {
                text-decoration: underline; }

@media screen and (max-width: 1000px) {
  .content .grid-content {
    grid-template-columns: repeat(1, 1fr);
    max-width: 760px;
    margin: 0 auto; }
    .content .grid-content .left-row .page-title {
      text-align: center; }
    .content .grid-content .right-row {
      max-width: 418px;
      justify-self: center; } }
@media screen and (max-width: 600px) {
  .content .grid-content .left-row .news {
    padding: 30px 10px 20px;
    min-height: unset; }
    .content .grid-content .left-row .news .date {
      text-align: center; }
    .content .grid-content .left-row .news .block .title {
      max-width: 100%;
      text-align: center;
      font-size: 26px;
      min-height: unset; }
    .content .grid-content .left-row .news .block .text {
      max-width: 100%;
      text-align: center;
      padding-bottom: 20px; }
    .content .grid-content .left-row .news .block .link a {
      margin: 0 auto; } }
.content .grid-content .left-row .donate-form {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr minmax(auto, 318px);
  grid-gap: 33px; }
  .content .grid-content .left-row .donate-form form {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto; }
    .content .grid-content .left-row .donate-form form .item {
      position: relative;
      display: block;
      width: 100%;
      height: 56px;
      margin: 0 auto; }
      .content .grid-content .left-row .donate-form form .item + .item {
        margin-top: 10px; }
      .content .grid-content .left-row .donate-form form .item input, .content .grid-content .left-row .donate-form form .item select {
        position: relative;
        display: block;
        width: 100%;
        height: 56px;
        padding: 0 0 0 148px;
        text-align: center;
        text-align-last: center;
        color: #ffe6ab;
        font-size: 18px; }
        .content .grid-content .left-row .donate-form form .item input[type="number"], .content .grid-content .left-row .donate-form form .item select[type="number"] {
          /* Для Chrome */
          /* Для Firefox */
          -moz-appearance: textfield; }
          .content .grid-content .left-row .donate-form form .item input[type="number"]::-webkit-inner-spin-button, .content .grid-content .left-row .donate-form form .item input[type="number"]::-webkit-outer-spin-button, .content .grid-content .left-row .donate-form form .item select[type="number"]::-webkit-inner-spin-button, .content .grid-content .left-row .donate-form form .item select[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            margin: 0; }
      .content .grid-content .left-row .donate-form form .item label {
        position: absolute;
        display: block;
        top: 50%;
        left: 25px;
        transform: translateY(-50%);
        margin: auto;
        color: #7c7068;
        font-size: 14px;
        z-index: 1;
        pointer-events: none; }
      .content .grid-content .left-row .donate-form form .item .select-box a.trigger,
      .content .grid-content .left-row .donate-form form .item .select-box a.activetrigger {
        width: 100%;
        height: 56px;
        padding: 0 0 0 148px; }
    .content .grid-content .left-row .donate-form form .button {
      position: relative;
      display: block;
      width: 100%;
      height: 57px;
      background: #f7b459;
      color: #14100d;
      font-size: 26px;
      cursor: pointer;
      border: none;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease;
      margin: 21px auto 0; }
      .content .grid-content .left-row .donate-form form .button:hover {
        background: #d0841b; }
  .content .grid-content .left-row .donate-form .desc {
    position: relative;
    display: block;
    width: 100%; }
    .content .grid-content .left-row .donate-form .desc .text {
      position: relative;
      display: block; }
      .content .grid-content .left-row .donate-form .desc .text span {
        position: relative;
        display: block;
        color: #ffe6ab;
        font-size: 14px; }
      .content .grid-content .left-row .donate-form .desc .text p {
        position: relative;
        display: block;
        color: #c4d881;
        font-size: 14px; }
    .content .grid-content .left-row .donate-form .desc .info {
      position: relative;
      display: block;
      padding: 15px 17px;
      background: rgba(20, 11, 8, 0.7);
      color: #7e7360;
      font-size: 14px;
      margin: 20px auto 25px; }
    .content .grid-content .left-row .donate-form .desc .list {
      position: relative;
      display: block; }
      .content .grid-content .left-row .donate-form .desc .list li {
        position: relative;
        display: block; }
        .content .grid-content .left-row .donate-form .desc .list li + li {
          margin-top: 10px; }
        .content .grid-content .left-row .donate-form .desc .list li a {
          position: relative;
          display: inline-block;
          color: #f7b459;
          font-size: 14px; }
          .content .grid-content .left-row .donate-form .desc .list li a:hover span {
            text-decoration: underline; }

@media screen and (max-width: 1200px) {
  .content .grid-content .left-row .donate-form {
    grid-template-columns: 3fr 2fr; } }
@media screen and (max-width: 1100px) {
  .content .grid-content .left-row .donate-form {
    grid-template-columns: repeat(1, 1fr);
    max-width: 420px; } }
@media screen and (max-width: 1000px) {
  .content .grid-content .left-row .donate-form {
    margin: 0 auto; }
    .content .grid-content .left-row .donate-form .desc {
      text-align: center; } }
@media screen and (max-width: 400px) {
  .content .grid-content .left-row .donate-form form .item {
    height: unset; }
    .content .grid-content .left-row .donate-form form .item label {
      top: 0;
      transform: translate(0, 0);
      left: 0;
      position: relative;
      margin-bottom: 8px; }
    .content .grid-content .left-row .donate-form form .item input, .content .grid-content .left-row .donate-form form .item select, .content .grid-content .left-row .donate-form form .item .select-box a.trigger, .content .grid-content .left-row .donate-form form .item .select-box a.activetrigger {
      padding: 0 0 0 20px;
      text-align: left;
      text-align-last: left;
      justify-content: flex-start; } }
.stream {
  background: url(../images/bg-3.png) no-repeat center;
  background-size: cover;
  min-height: 336px;
  padding-bottom: 30px; }
  .stream .grid-title {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
    padding: 30px 0;
    grid-gap: 25px; }
    .stream .grid-title .title {
      position: relative;
      display: block;
      align-self: center; }
      .stream .grid-title .title span {
        position: relative;
        display: block;
        color: #ffe6ab;
        font-size: 28px; }
      .stream .grid-title .title p {
        position: relative;
        display: block;
        color: #7c7068;
        font-size: 14px;
        margin-top: 5px; }
    .stream .grid-title .desc {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      grid-gap: 25px; }
      .stream .grid-title .desc .text {
        position: relative;
        display: block;
        align-self: center;
        text-align: right; }
        .stream .grid-title .desc .text span {
          position: relative;
          display: block;
          color: #ffffff;
          font-size: 14px; }
        .stream .grid-title .desc .text p {
          position: relative;
          display: block;
          color: #f7b459;
          font-size: 24px; }
      .stream .grid-title .desc .list {
        position: relative;
        display: flex;
        align-self: center;
        align-items: center; }
        .stream .grid-title .desc .list li {
          position: relative;
          display: block; }
          .stream .grid-title .desc .list li + li {
            margin-left: 9px; }
          .stream .grid-title .desc .list li a {
            position: relative;
            display: block; }
            .stream .grid-title .desc .list li a img {
              -webkit-transition: all 0.4s ease;
              -o-transition: all 0.4s ease;
              -moz-transition: all 0.4s ease;
              transition: all 0.4s ease; }
            .stream .grid-title .desc .list li a:hover img {
              transform: rotateX(360deg) rotateY(360deg);
              filter: brightness(2) grayscale(100%); }

@media screen and (max-width: 1000px) {
  .stream .grid-title {
    grid-template-columns: repeat(1, 1fr); }
    .stream .grid-title .title {
      justify-self: center;
      text-align: center; }
    .stream .grid-title .desc {
      justify-self: center;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 20px; }
      .stream .grid-title .desc .text {
        justify-self: center;
        text-align: center; }
      .stream .grid-title .desc .list {
        justify-content: center;
        flex-wrap: wrap; }
        .stream .grid-title .desc .list li {
          margin: 4px !important; } }
.qp-gallery {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }
  .qp-gallery .qp-container {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden; }
    .qp-gallery .qp-container .qp-flex {
      position: relative;
      display: inline-flex;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .qp-gallery .qp-container .qp-flex .item {
        position: relative;
        display: inline-block;
        float: left;
        width: calc(33% - 30px);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #070503;
        border: 2px solid #38312d; }
        .qp-gallery .qp-container .qp-flex .item + .item {
          margin-left: 30px; }
        .qp-gallery .qp-container .qp-flex .item .video {
          position: relative;
          display: block;
          width: 100%;
          height: 0;
          padding-bottom: 56.25%; }
          .qp-gallery .qp-container .qp-flex .item .video iframe {
            position: absolute;
            display: block;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0; }
  .qp-gallery .prev {
    position: absolute;
    display: block;
    width: 20px;
    height: 30px;
    background: url(../images/ico-prev.png) no-repeat center;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 20px); }
  .qp-gallery .next {
    position: absolute;
    display: block;
    width: 20px;
    height: 30px;
    background: url(../images/ico-next.png) no-repeat center;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 20px); }

@media screen and (max-width: 1290px) {
  .qp-gallery {
    width: calc(100% - 80px); } }
@media screen and (max-width: 400px) {
  .qp-gallery {
    width: 100%;
    padding-bottom: 25px; }
    .qp-gallery .prev {
      top: 100%;
      transform: translate(-100%, -10px);
      right: unset;
      left: calc(50% - 10px); }
    .qp-gallery .next {
      top: 100%;
      transform: translate(100%, -10px);
      left: unset;
      right: calc(50% - 10px); } }
.other {
  padding: 50px 0 40px; }
  .other .grid {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr minmax(auto, 380px);
    grid-gap: 50px 25px; }
    .other .grid .forum {
      position: relative;
      display: block;
      width: 100%;
      max-width: 756px; }
      .other .grid .forum .title {
        position: relative;
        display: block;
        margin-bottom: 40px; }
        .other .grid .forum .title span {
          position: relative;
          display: block;
          color: #ffe6ab;
          font-size: 28px; }
        .other .grid .forum .title p {
          position: relative;
          display: block;
          color: #7c7068;
          font-size: 14px;
          margin-top: 5px; }
      .other .grid .forum .list {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 6px 7px; }
        .other .grid .forum .list li {
          position: relative;
          display: block;
          width: 100%;
          min-width: 0; }
          .other .grid .forum .list li a {
            position: relative;
            display: flex;
            width: 100%;
            min-height: 57px;
            align-items: center;
            padding: 10px 20px 10px 76px;
            background: rgba(15, 7, 5, 0.6);
            overflow: hidden; }
            .other .grid .forum .list li a span {
              position: relative;
              display: block;
              width: 100%;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis; }
            .other .grid .forum .list li a:before {
              content: '';
              position: absolute;
              display: block;
              width: 35px;
              height: 35px;
              background: url(../images/ico-forum.png) no-repeat;
              top: 0;
              left: 19px;
              bottom: 0;
              margin: auto;
              -webkit-transition: all 0.5s ease;
              -o-transition: all 0.5s ease;
              -moz-transition: all 0.5s ease;
              transition: all 0.5s ease; }
            .other .grid .forum .list li a:hover {
              background: rgba(0, 0, 0, 0.6); }
              .other .grid .forum .list li a:hover:before {
                transform: rotateX(360deg) rotateY(360deg);
                filter: hue-rotate(35deg); }
    .other .grid .vk-block {
      position: relative;
      display: block;
      width: 100%;
      max-width: 380px; }
      .other .grid .vk-block .title {
        position: relative;
        display: block;
        margin-bottom: 40px; }
        .other .grid .vk-block .title span {
          position: relative;
          display: block;
          color: #ffe6ab;
          font-size: 28px; }
        .other .grid .vk-block .title p {
          position: relative;
          display: block;
          color: #7c7068;
          font-size: 14px;
          margin-top: 5px; }
      .other .grid .vk-block .block {
        position: relative;
        display: block;
        width: 100%; }
        .other .grid .vk-block .block img {
          max-width: 100%;
          height: auto; }

@media screen and (max-width: 1100px) {
  .other .grid {
    grid-template-columns: repeat(1, 1fr); }
    .other .grid .forum {
      justify-self: center; }
      .other .grid .forum .title {
        text-align: center; }
    .other .grid .vk-block {
      justify-self: center; }
      .other .grid .vk-block .title {
        text-align: center; } }
@media screen and (max-width: 800px) {
  .other .grid .forum .list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 380px;
    margin: 0 auto; } }
@media screen and (max-width: 400px) {
  .other .grid .forum .list li a {
    padding: 10px 20px 10px 56px; }
    .other .grid .forum .list li a:before {
      left: 10px; } }
#popup {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999; }
  #popup #popup-flex {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: rgba(20, 11, 9, 0.8);
    overflow: hidden;
    overflow-y: auto; }
    #popup #popup-flex #popup-block {
      position: relative;
      display: block;
      width: 100%; }
      #popup #popup-flex #popup-block div[data-rel="popup-content"] {
        position: relative;
        display: none;
        width: 100%;
        max-width: 706px;
        padding: 30px 20px 50px;
        min-height: 100px;
        align-self: center;
        justify-self: center;
        background: #281a16;
        margin: 30px auto;
        z-index: 2;
        border: 2px solid #3a2a24; }
        #popup #popup-flex #popup-block div[data-rel="popup-content"] .popup-close-content {
          position: absolute;
          display: block;
          width: 24px;
          height: 24px;
          background: url(../images/close.png) no-repeat;
          top: 15px;
          right: 15px;
          z-index: 1; }
          #popup #popup-flex #popup-block div[data-rel="popup-content"] .popup-close-content:hover {
            transform: rotate(90deg); }
    #popup #popup-flex .popup-close {
      position: fixed;
      display: block;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1; }
      #popup #popup-flex .popup-close:before {
        content: '';
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0; }

#popup div[data-rel="popup-content"] .popup-title {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto 35px; }
  #popup div[data-rel="popup-content"] .popup-title span {
    position: relative;
    display: block;
    color: #ffe6ab;
    font-size: 30px;
    line-height: 36px; }
  #popup div[data-rel="popup-content"] .popup-title p {
    position: relative;
    display: block;
    color: #7c7068;
    font-size: 14px;
    margin-top: 3px; }
#popup div[data-rel="popup-content"] .block {
  position: relative;
  display: block;
  width: 100%;
  max-width: 590px;
  margin: 0 auto; }
  #popup div[data-rel="popup-content"] .block .item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto; }
    #popup div[data-rel="popup-content"] .block .item + .item {
      margin-top: 36px; }
    #popup div[data-rel="popup-content"] .block .item .text {
      position: relative;
      display: block;
      color: #ffe6ab;
      font-size: 14px;
      margin-bottom: 25px; }
    #popup div[data-rel="popup-content"] .block .item .list {
      position: relative;
      display: grid;
      width: 100%;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      grid-gap: 9px;
      justify-content: center; }
      #popup div[data-rel="popup-content"] .block .item .list li {
        position: relative;
        display: block;
        width: 100%; }
        #popup div[data-rel="popup-content"] .block .item .list li a {
          position: relative;
          display: flex;
          border: 1px solid #f7b459;
          height: 39px;
          padding: 0 5px;
          align-items: center;
          justify-content: center;
          text-align: center;
          color: #ffffff;
          font-size: 14px; }
          #popup div[data-rel="popup-content"] .block .item .list li a:hover {
            background: #f7b459;
            color: #000; }

/*# sourceMappingURL=style.css.map */


.container {
    color: #ffe6ab;
    margin: 0 auto;
    text-align: center;
}

.container h1 {
    font-weight: normal;
    letter-spacing: .125rem;
    text-transform: uppercase;
    background: #ffffff08;
    padding: 10px;
    margin-top: 20px;
    color: #ffe6ab;
    font-size: 24px;
}

.container li {
    display: inline-block;
    font-size: 14px;
    list-style-type: none;
    padding: 10px 5px;
    text-transform: uppercase;
}

.container li span {
    display: block;
    font-size: 43px;
    background: #ffffff0f;
    padding: 6px;
    width: 100px;
    text-align: center;
    border-radius: 5px;
    color: #acc26a;
    margin-bottom: 5px;
}

.message {
  font-size: 4rem;
  display: none;
  padding: 1rem;
}

.emoji {
  padding: 0 .25rem;
}