@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto.woff") format("woff"), url("../fonts/Roboto.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Thin.woff") format("woff"), url("../fonts/Roboto-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Robotobold.woff") format("woff"), url("../fonts/Robotobold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Robotolight.woff") format("woff"), url("../fonts/Robotolight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

/*Reset */

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  background: transparent;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1660px;
  padding: 0 10px;
  margin: 0 auto;
}

body {
  font-family: Roboto, sans-serif;
  line-height: normal;
  overflow-x: hidden;
  font-size: 14px;
  font-weight: 400;
  background: #1B1E27;
  color: #8B8E96;
}

body.lock {
  overflow: hidden;
  height: 100vh;
}

.title {
  font-family: Roboto, sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  padding-left: 25px;
  margin: 20px 0;
}

.title:before {
  content: url("../img/svg/titel.svg");
  position: absolute;
  left: 0;
  top: 7px;
}

.text {
  font-size: 14px;
  line-height: 20px;
  color: #8B8E96;
}

.title ~ .text {
  padding-left: 25px;
}

svg,
a,
li,
span {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header {
  background: #1F2531;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  padding: 12px 0;
}

.logo span {
  display: inline-block;
  color: #E51E19;
  font-weight: 300;
  vertical-align: middle;
}

.logo svg {
  margin-right: 5px;
  width: 26px;
  height: 26px;
}

.burger-menu__button {
  position: relative;
  z-index: 30;
  display: block;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.burger-menu__button svg {
  fill: #C2C8D4;
}

.burger-menu__active .burger-menu__button svg {
  fill: #E51E19;
}

.burger-menu {
  padding: 12px;
  margin-left: -12px;
}

.burger-menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 2200;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 44px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #1F2531;
  position: absolute;
  left: -100%;
  width: 100%;
  padding: 30px 20px;
}

.burger-menu__active .burger-menu__nav {
  left: 0;
  z-index: 20;
}

.burger-menu__link {
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  margin: 15px 0;
  white-space: nowrap;
}

.burger-menu__link:hover {
  color: #E51E19;
}

.select {
  position: relative;
  width: 45px;
  height: 30px;
}

.dd-container {
  position: absolute !important;
  right: 0;
  top: 0 !important;
}

.dd-selected {
  padding: 8px !important;
  height: 30px !important;
}

.dd-select {
  width: 45px !important;
  height: 30px;
  margin-left: auto;
}

.dd-options {
  top: 42px;
}

.dd-selected-text {
  visibility: hidden;
}

.dd-selected-img img {
  max-width: 22px !important;
  border-radius: 2px;
}

.dd-option-selected {
  background: #1F2531 !important;
}

.dd-click-off-close li {
  width: 50%;
  display: inline-block;
}

.dd-option-text {
  text-transform: capitalize;
}

.dd-pointer {
  width: 10px;
  height: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
}

.dd-pointer-down {
  background: url("../img/svg/arrow-lang.svg") center no-repeat;
}

.dd-pointer-up {
  background: url("../img/svg/arrow-lang.svg") center no-repeat;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.search-btn {
  position: relative;
  z-index: 2010;
  top: 3px;
  padding: 12px;
  margin-left: 15px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.search-btn svg {
  fill: #C2C8D4;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.search-btn:hover svg,
.search-btn:active svg {
  fill: #E51E19;
}

.overlay {
  position: fixed;
  z-index: 2000;
  top: 56px;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(17, 20, 27, 0.95);
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}

.overlay.active {
  display: block;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  padding: 10px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.popup .title {
  padding-left: 10px;
  margin-top: 60px;
  margin-bottom: 12px;
}

.popup .title:before {
  content: none;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 15px;
  color: #585F6F;
  width: 100%;
  border-bottom: 2px solid #C2C8D4;
}

input {
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  padding-left: 50px;
  width: calc(100% - 20px);
}

input::-webkit-input-placeholder {
  color: #585F6F;
  font-weight: 300;
}

input::-moz-placeholder {
  color: #585F6F;
  font-weight: 300;
}

input:-ms-input-placeholder {
  color: #585F6F;
  font-weight: 300;
}

input::-ms-input-placeholder {
  color: #585F6F;
  font-weight: 300;
}

input::placeholder {
  color: #585F6F;
  font-weight: 300;
}

button {
  color: #585F6F;
  font-size: 24px;
  line-height: 28px;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 24px 0;
}

.tags li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.5;
  background: #262932;
  border-radius: 14px;
  padding: 4px 15px 4px 8px;
  margin: 4px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tags li a {
  color: #C2C8D4;
}

.tags li svg {
  width: 10px;
  height: 10px;
  fill: #E51E19;
  margin-right: 5px;
}

.tags li:hover {
  background-color: #E51E19;
  -webkit-box-shadow: 0px 4px 10px rgba(229, 30, 25, 0.2);
          box-shadow: 0px 4px 10px rgba(229, 30, 25, 0.2);
}

.tags li:hover a {
  color: #ffffff;
}

.tags li:hover svg {
  fill: #ffffff;
}

.hot-tag {
  width: 100%;
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

.hot-tag li {
  background: transparent;
  width: 100%;
  display: inline-block;
  padding: 0 8px;
  margin: 0;
  border-radius: 0;
  line-height: 38px;
  border-top: 1px solid #262932;
  border-bottom: 1px solid #262932;
  cursor: pointer;
}

.hot-tag li a {
  color: #C2C8D4;
  line-height: 15px;
}

.hot-tag li svg {
  width: 10px;
  height: 10px;
  fill: #E51E19;
  margin-right: 5px;
}

.hot-tag li:hover {
  background-color: #E51E19;
}

.hot-tag li:hover a {
  color: #ffffff;
}

.hot-tag li:hover svg {
  fill: #ffffff;
}

.acc {
  position: relative;
  margin: 10px 0;
  padding-right: 30px;
}

.acc-btn {
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  outline: none;
  position: absolute;
  color: #C2C8D4;
  font-size: 14px;
  font-weight: 700;
  top: 8px;
  right: 15px;
}

.acc-btn:after {
  content: '\22EE';
  color: #C2C8D4;
  font-weight: 700;
}

.acc .active:after {
  content: "X";
  color: #E51E19;
  font-weight: 300;
}

.acc-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  min-height: 40px;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.rating {
  background: #262932;
  border-radius: 20px;
}

.rating-panel li {
  padding: 0 20px;
  line-height: 40px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  height: 40px;
  border-radius: 20px;
}

.rating-panel li a {
  color: #C2C8D4;
}

.rating-panel li:hover {
  background: #E51E19;
  -webkit-box-shadow: 0 4px 10px rgba(229, 30, 25, 0.2);
          box-shadow: 0 4px 10px rgba(229, 30, 25, 0.2);
}

.rating-panel li:hover a {
  color: #ffffff;
}

.tag-block .tags {
  margin: 0;
}

.blocks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blocks li {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blocks li .thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blocks li .thumb-img {
  width: 100%;
  position: relative;
}

.blocks li .thumb-img span {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  width: 80px;
  border-radius: 5px;
  padding: 3px 8px;
  margin-left: 10px;
  font-size: 12px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blocks li .thumb-img img {
  border-radius: 5px;
  max-width: 100%;
}

.blocks li .thumb-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  color: #8E929E;
}

.blocks li .thumb-info .text {
  color: #C2C8D4;
}

.blocks li .thumb .info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.blocks li .thumb .info h3 {
  font-size: 20px;
  line-height: 23px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  word-break: keep-all;
  width: calc(100% - 103px);
  padding-right: 5px;
}

.like {
  color: #C2C8D4;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.like svg {
  fill: #C2C8D4;
}

.like:hover svg {
  fill: #E51E19;
}

.like span {
  color: #A5FF33;
  margin-left: 10px;
}

.block-category li {
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.block-category li:hover h3 {
  color: #E51E19;
}

.block-category li:hover .timer {
  background-color: #E51E19;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 40px;
}

.pagination .arrow {
  border: 1px solid #353841;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pagination .arrow svg {
  fill: #E51E19;
}

.pagination .arrow-left {
  margin-right: 15px;
}

.pagination .arrow-right {
  margin-left: 15px;
}

.pagination .arrow:hover {
  background: #E51E19;
  border: 1px solid #E51E19;
  -webkit-box-shadow: 0 4px 10px rgba(229, 30, 25, 0.2);
          box-shadow: 0 4px 10px rgba(229, 30, 25, 0.2);
}

.pagination .arrow:hover svg {
  fill: #ffffff;
}

.pagination .page {
  margin: 0 5px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  line-height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #717377;
}

.pagination .page-active {
  background: #1B1E27;
  border-radius: 50%;
  border: 1px solid #E51E19;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 4px 10px rgba(229, 30, 25, 0.2);
          box-shadow: 0px 4px 10px rgba(229, 30, 25, 0.2);
  color: #ffffff;
}

.more {
  display: none;
}

.load-more {
  position: relative;
  margin: 40px 0;
}

.load-more:before,
.load-more:after {
  position: absolute;
  content: "";
  height: 1px;
  top: 50%;
  width: 100%;
  background-color: #353841;
  z-index: 0;
}

.load-more:before {
  margin-left: -100%;
}

.load-more:after {
  margin-right: -100%;
}

.load-more__btn {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  border: 1px solid #353841;
  border-radius: 25px;
  background-color: #1B1E27;
  color: #8E929E;
  padding: 8px 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  margin: 0 auto;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.load-more__btn svg {
  fill: #E51E19;
  margin-right: 10px;
}

.load-more__btn:hover {
  background: #E51E19;
  border: 1px solid #E51E19;
  -webkit-box-shadow: 0 4px 10px rgba(229, 30, 25, 0.2);
          box-shadow: 0 4px 10px rgba(229, 30, 25, 0.2);
  color: #ffffff;
}

.load-more__btn:hover svg {
  fill: #ffffff;
}

.video-block li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
}

.video {
  padding-bottom: 56.25%;
  position: relative;
  cursor: pointer;
}

/*
.video:before {
  position: absolute;
  content: "Play video";
  display: block;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  border-radius: 10px;
  padding: 15px 20px;
  text-transform: uppercase;
  cursor: pointer;
}
*/

.video > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.inform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.likes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 14px;
  color: #C2C8D4;
  cursor: pointer;
}

.likes svg {
  width: 26px;
  height: 22px;
  margin-right: 5px;
  fill: #C2C8D4;
}

.likes svg:hover {
  fill: #E51E19;
}

.likes span {
  color: #A5FF33;
  font-size: 18px;
  line-height: 21px;
  margin: 0 10px;
}

.timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 3px 5px;
  color: #C2C8D4;
  font-size: 12px;
  line-height: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.timer svg {
  margin-right: 5px;
  fill: #ffffff;
}

.timer span {
  font-size: 12px;
  line-height: 20px;
  color: #FFFFFF;
  margin-left: 5px;
}

.masonry {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

.list {
  width: 100%;
  display: inline-block;
}

.list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  color: #C2C8D4;
  cursor: pointer;
  border-top: 1px solid #262932;
  border-bottom: 1px solid #262932;
}

.list li a {
  color: #C2C8D4;
  font-size: 14px;
  line-height: 16px;
}

.list li span {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  text-align: right;
  padding: 5px 7px;
  min-width: 65px;
  font-size: 12px;
  color: #ffffff;
}

.list li span:before {
  position: absolute;
  content: url("../img/svg/tv.svg");
  left: 10px;
}

.list li:hover a {
  color: #E51E19;
}

.list li:hover span {
  background-color: #E51E19;
}

.list .letter {
  background: #111317;
  color: #ffffff;
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  width: 100%;
}

.list .letter:hover {
  background: #111317;
  color: #ffffff;
  cursor: auto;
}

.list .letter:before {
  display: none;
}

footer {
  padding: 17px 0;
}

.footer .text {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #8B8E96;
  padding: 10px 0;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer li {
  margin: 8px;
}

.footer a {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #E51E19;
}

.footer a:hover {
  color: #ffffff;
}

.banner {
  display: block;
  text-align: center;
  margin: 15px auto;
}

@media all and (min-width: 425px) {
  .blocks li {
    width: 49.5%;
  }
}

@media (min-width: 467px) {
  .hot-tag {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }

  .masonry {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media all and (min-width: 567px) {
  .logo {
    margin: 0 auto 0 50px;
  }

  .search-btn {
    margin: 0 50px;
  }
}

@media all and (min-width: 768px) {
  .blocks li {
    width: 32.5%;
  }
}

@media (min-width: 780px) {
  .masonry {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 850px) {
  .hot-tag {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media all and (min-width: 993px) {
  .logo {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0;
  }

  .burger-menu__button {
    display: none;
  }

  .burger-menu {
    margin: 0 auto;
  }

  .search-btn {
    margin: 0 15px;
  }
}

@media (min-width: 993px) {
  footer {
    padding: 30px 0;
  }

  .footer .text {
    padding: 20px 0 30px;
  }
}

@media all and (min-width: 1024px) {
  .burger-menu__nav {
    top: 0;
    left: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background-color: transparent;
    padding: 0;
  }

  .burger-menu__active .burger-menu__nav {
    top: 0;
  }

  .burger-menu__link {
    margin: 0;
    padding: 0 10px;
  }

  .video-block {
    width: 80%;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .hot-tag {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }

  .masonry {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media all and (min-width: 1080px) {
  .search-btn {
    margin: 0 50px 0 0;
  }
}

@media all and (min-width: 1160px) {
  .blocks li {
    width: 24.5%;
  }
}

@media all and (min-width: 1190px) {
  .hot-tag {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }

  .masonry {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}

@media all and (min-width: 1600px) {
  .blocks li {
    width: 19%;
  }
}

@media (max-width: 993px) and (orientation: landscape) {
  .popup .title {
    margin-top: 20px;
    margin-bottom: 5px;
  }
}