/* 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: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  min-width: 320px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: url(../images/bg-1-min.jpg) 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; */
  display: inline-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);
}

.footer .grid {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(auto, 288px) 1fr minmax(auto, 321px);
  grid-gap: 50px;
}
.footer {
  max-width: 1360px;
  border-top: 1px solid #38312d;
  padding: 42px 0 59px;
  margin: 0 auto;
}
.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 {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .grid .logo {
    display: block;
  }
  .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 {
  flex-grow: 3;
  padding: 60px 0 50px;
}
.content .grid-about {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 320px 1fr;
  grid-gap: 47px;
}
.content .grid-about .left-row {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  background: rgba(21, 14, 12, 0.8);
  z-index: 1;
}
.content .grid-about .left-row .current-tab {
  position: relative;
  display: none;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.content .grid-about .left-row .current-tab li {
  position: relative;
  display: block;
  margin: 0 auto;
}
.content .grid-about .left-row .current-tab li a {
  position: relative;
  display: grid;
  width: 100%;
  padding: 11px 10px 11px 7px;
  grid-template-columns: 70px 1fr;
  background: #19110f url(../images/ico-select.png) no-repeat center right 7px;
  white-space: nowrap;
}
.content .grid-about .left-row .current-tab li a .ico {
  position: relative;
  display: block;
  align-self: center;
  justify-self: center;
  width: 34px;
  height: 34px;
  border: 1px solid #291f1b;
  background: #0b0706;
}
.content .grid-about .left-row .current-tab li a .ico img {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
}
.content .grid-about .left-row .current-tab li a .name {
  position: relative;
  display: block;
  align-self: center;
  color: #ffaa00;
  font-size: 16px;
  line-height: 16px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  padding-right: 7px;
  text-overflow: ellipsis;
  white-space: nowrap; 
}
.content .grid-about .left-row ul {
  position: relative;
  display: block;
  width: 100%;
  max-height: calc(100vh - 70px);
  max-width: 320px;
  margin: 0 auto;
  overflow: hidden;
  overflow-y: auto;
  background: #130c0b;
}
.content .grid-about .left-row ul::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.content .grid-about .left-row ul::-webkit-scrollbar-thumb {
  height: 40px;
  border-width: 1px 1px 1px 2px;
  border-color: #14171e;
  background-color: #ffaa00;
}
.content .grid-about .left-row ul li {
  position: relative;
  display: block;
  margin: 0 auto;
}
.content .grid-about .left-row ul li + li {
  margin-top: 2px;
}
.content .grid-about .left-row ul li a {
  position: relative;
  display: grid;
  width: 100%;
  padding: 11px 10px 11px 7px;
  grid-template-columns: 70px 1fr;
  background: #0d0908;
}
.content .grid-about .left-row ul li a .ico {
  position: relative;
  display: block;
  align-self: center;
  justify-self: center;
  width: 34px;
  height: 34px;
  border: 1px solid #291f1b;
  background: #0b0706;
}
.content .grid-about .left-row ul li a .ico img {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
}
.content .grid-about .left-row ul li a .name {
  position: relative;
  display: block;
  align-self: center;
  color: #ffe5ab;
  font-size: 16px;
  line-height: 16px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content .grid-about .left-row ul li a:hover {
  background: #19110f;
}
.content .grid-about .left-row ul li a:hover .name {
  color: #ffaa00;
}
.content .grid-about .left-row ul li.active a {
  background: #19110f;
}
.content .grid-about .left-row ul li.active a .name {
  color: #ffaa00;
}
.content .grid-about .right-row {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.content .grid-about .right-row .tab-content {
  position: relative;
  display: none;
  width: 100%;
  margin: 0 auto;
  transform: translateY(25px);
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: curtab;
  animation-name: curtab;
}
.content .grid-about .right-row .tab-content img {
  max-width: 100%;
}
.content .grid-about .right-row .tab-content.active {
  display: inline-block;
}
.content .grid-about .right-row .tab-content .title-big {
  position: relative;
  display: block;
  width: 100%;
  color: #ffe5ab;
  font-size: 22px;
  margin: 0 auto 40px;
}
.content .grid-about .right-row .tab-content .title-min {
  position: relative;
  display: block;
  width: 100%;
  color: #ffe5ab;
  font-size: 18px;
  margin: 35px auto 35px;
}
.content .grid-about .right-row .tab-content .list {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  line-height: 25px;
}
.content .grid-about .right-row .tab-content .list li {
  position: relative;
  display: block;
  color: #fffcf6;
  font-size: 14px;
}
.content .grid-about .right-row .tab-content .text {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #fffcf6;
  font-size: 14px;
  line-height: 25px;
}
.content .grid-about .right-row .tab-content a {
  color: #ffaa00;
  text-decoration: underline;
}
.content .grid-about .right-row .tab-content a:hover {
  text-decoration: none;
}


@-webkit-keyframes curtab {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-moz-keyframes curtab {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-o-keyframes curtab {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes curtab {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 1000px) {
  .content .grid-about {
    grid-template-columns: repeat(1, 1fr);
  }
  .content .grid-about .right-row .tab-content {
    text-align: center;
  }
  .content .grid-about .left-row {
    background: none;
    height: 56px;
  }
  .content .grid-about .left-row .current-tab {
    display: block;
  }
  .content .grid-about .left-row ul {
    position: absolute;
    top: 100%;
    display: none;
    height: calc(100vh - 150px);
    max-height: 464px;
    overflow: hidden;
    overflow-y: auto;
    background: #150e0c;
    left: 0;
    right: 0;
    margin: auto;
  }
  .content .grid-about .left-row ul li.active {
    display: none;
  }
}
@media screen and (max-width: 3500px) {
  .content .grid-about .left-row .current-tab li a {
    grid-template-columns: 54px 1fr;
  }
  .content .grid-about .left-row ul li a {
    grid-template-columns: 54px 1fr;
  }
}
#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;
}


.flippy {
  text-align: center;
}
button.flippy {
    background: #19110f;
    color: #0b0706;
     text-align: center;
    margin: 0 auto;
    border: none;
    padding: 10px 25px;
    margin: 5px 0px;
    font-size: 14px;
    font-weight: bold;
    vertical-align: middle;
    cursor: pointer;
    width: 100%;
    color: #ffffffbd;
    display: block;
    transition: background 0.1s ease-in-out;
    border: 1px solid transparent;
}
button.flippy:hover {
    background: #311e11;
    outline: none;
    color: #fff;
    border: 1px solid #402a00;
}

button.flippy:focus {
    background: #311e11;
    outline: none;
    color: #fff;
    border: 1px solid #402a00;
}

.flippanel {
  padding: 1px;
  background: rgb(255 255 255 / 5%);
  border: 0px;
}

.flippanel {
  padding: 15px;
  display: none;
}
/*# sourceMappingURL=style.css.map */
