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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul, li {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none !important; }

body {
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased; }

button,
input[type=cancel],
input[type=reset],
input[type=submit]:hover {
  cursor: pointer; }

input[type=file],
input[type=password],
input[type=submit],
input[type=text],
input[type=email],
input[type=search],
textarea,
select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: auto; }

select::ms-expand {
  display: none; }

input::-ms-clear {
  display: none; }

/**************
END RESETT CSS
****************/
@font-face {
  font-family: "RobotoCn";
  src: url("../font/robotocondensed-bold-webfont.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap; }
@font-face {
  font-family: "RobotoCn";
  src: url("../font/robotocondensed-regular-webfont.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap; }
@font-face {
  font-family: "RobotoCn";
  src: url("../font/robotocondensed-light-webfont.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap; }
:root {
  --main-font: "RobotoCn", sans-serif;
  --red: #ff0000;
  --blue: #215ffb;
  --grey-bg: #e1e2e4;
  --grey-text: #5c5c5c;
  --grey-text-light: #a4a4a4; }

html, body {
  min-height: 100%; }

html {
  font-size: 10px; }

body {
  background-color: #fff;
  color: #000;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 1.6rem; }

img {
  max-width: 100%; }

a {
  color: currentColor;
  -webkit-transition: all .2s;
  transition: all .2s; }

h1, .h1 {
  font-size: 5.2rem; }

h2, .h2 {
  font-size: 3rem; }

h3, .h3 {
  font-size: 2.4rem; }

b, strong {
  font-weight: 700; }

.font-300 {
  font-weight: 300; }

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

.text-uppercase {
  text-transform: uppercase; }

.wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

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

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.svg-sprite {
  display: none; }

.red {
  color: var(--red); }

.blue {
  color: var(--blue); }

.grey {
  color: var(--grey-text); }

.grey-light {
  color: var(--grey-text-light); }

.grey-bg {
  background-color: var(--grey-bg); }

.btn {
  display: inline-block;
  font-size: 14px;
  border-radius: 5px;
  padding: 1em 2em;
  text-transform: uppercase;
  border: 2px solid transparent;
  font-family: var(--main-font);
  -webkit-transition: all .3s;
  transition: all .3s; }
  .btn--blue {
    background-color: var(--blue);
    color: #fff;
    border-color: var(--blue);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    .btn--blue:hover {
      background-color: #fff;
      color: var(--blue); }
  .btn--red {
    background-color: var(--red);
    color: #fff;
    border-color: var(--red); }
    .btn--red:hover {
      background-color: #fff;
      color: var(--red); }
  .btn--outline {
    background-color: transparent;
    color: var(--grey-text);
    border: 1px solid currentColor; }
    .btn--outline:hover {
      color: var(--red); }
  .btn--lg {
    font-size: 3rem;
    padding: 0.5em 1.5em; }
  .btn--x-large {
    font-size: 6rem;
    padding: 0.3em; }
  .btn--full {
    width: 100%;
    text-align: center; }
  .btn--flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.title {
  padding: 3rem 0; }
  .title--decor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .title--decor::after {
      content: '';
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      height: 4px;
      background-color: var(--grey-bg);
      margin-left: 2rem; }
  .title .btn {
    padding: .75rem	1.25rem; }

/*Header*/
.header {
  background-color: #000;
  color: #fff;
  padding: 2rem 0; }

.logo {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 175px; }

.header__nav .btn {
  margin-left: 3.5rem; }

.menu {
  height: 100%; }
  .menu li {
    height: 100%; }
    .menu li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      position: relative;
      font-size: 1.4rem;
      font-weight: 700;
      padding: 0 1.4em;
      text-transform: uppercase; }
      .menu li a::after {
        content: '';
        width: 100%;
        height: 3px;
        background-color: var(--red);
        position: absolute;
        left: 0;
        bottom: -2rem;
        opacity: 0;
        -webkit-transition: all .3s;
        transition: all .3s; }
      .menu li a:hover {
        color: var(--red); }
      .menu li a.active {
        color: var(--red); }
        .menu li a.active::after {
          opacity: 1; }

.header-search {
  position: relative;
  z-index: 5; }

.header-search__btn {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 22px;
  height: 22px;
  color: #fff; }
  .header-search__btn svg {
    width: 100%;
    height: 100%; }

.header-search__form {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 3; }
  .header-search__form form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.header-search__form__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.header-search__form__close {
  width: 25px;
  height: 25px;
  position: relative;
  margin-right: 10px;
  color: var(--grey-text);
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer; }
  .header-search__form__close:hover {
    color: var(--red); }
  .header-search__form__close::before, .header-search__form__close::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 0; }
  .header-search__form__close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .header-search__form__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.header--members {
  position: relative; }
  .header--members::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 4; }
  .header--members.open-search::before {
    opacity: 1;
    visibility: visible; }
  .header--members.open-search .header-search__form {
    width: 400px;
    opacity: 1;
    visibility: visible; }
  .header--members .logo {
    width: 300px;
    padding-left: 30px; }
    .header--members .logo img {
      width: 175px; }
  .header--members .header__nav {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 10%; }

.header__nav__menu {
  height: 100%; }
  .header__nav__menu .menu li {
    margin-right: 3rem; }
    .header__nav__menu .menu li:last-child {
      margin-right: 5rem; }
    .header__nav__menu .menu li a::before {
      content: '';
      width: 100%;
      height: calc(100% + 4rem);
      position: absolute;
      left: 0;
      top: -2rem;
      background-color: #2e2e30;
      opacity: 0;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
    .header__nav__menu .menu li a::after {
      z-index: 1; }
    .header__nav__menu .menu li a.active::before {
      opacity: 1; }
    .header__nav__menu .menu li a span {
      position: relative;
      z-index: 2; }

.header-search__btn {
  cursor: pointer;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .header-search__btn:hover {
    color: var(--red); }

.search_input {
  display: block;
  height: 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-family: var(--main-font);
  padding-left: 15px;
  border-radius: 5px 0 0 5px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

.search_submit {
  height: 40px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: var(--blue);
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .search_submit:hover {
    opacity: 0.7; }

.header__nav__options {
  padding-right: 30px;
  height: 100%; }
  .header__nav__options > li {
    margin-left: 3rem;
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header__nav__options > li:hover .drop-menu,
    .header__nav__options > li:hover .log-dropdown {
      opacity: 1;
      visibility: visible; }
    .header__nav__options > li:hover > a {
      color: #fff; }
  .header__nav__options > li > a {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--grey-text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%; }
    .header__nav__options > li > a::after {
      content: '';
      width: 5px;
      height: 5px;
      border-bottom: 1px solid currentColor;
      border-left: 1px solid currentColor;
      margin-left: 10px;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .header__nav__options > li > a:hover {
      color: #fff; }
      .header__nav__options > li > a:hover .avatar {
        background-color: #fff; }

.avatar {
  width: 35px;
  height: 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #2e2e30;
  color: var(--grey-text);
  -webkit-transition: all .3s;
  transition: all .3s; }
  .avatar .note {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--red);
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    -webkit-transform: translate(25%, -50%);
            transform: translate(25%, -50%); }

.drop-menu,
.log-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 2;
  background-color: var(--grey-text);
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s; }

.drop-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .drop-menu li {
    width: 50%;
    min-width: 250px;
    padding: 1px; }
    .drop-menu li a {
      display: block;
      line-height: 0; }
      .drop-menu li a:hover {
        opacity: 0.7; }

.log-dropdown li a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid #fff; }
  .log-dropdown li a:hover {
    background-color: var(--red); }
.log-dropdown li:last-child a {
  border-bottom: none; }

.header__nav__close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none; }
  .header__nav__close::before, .header__nav__close::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0; }
  .header__nav__close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .header__nav__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.menu-btn {
  width: 25px;
  display: none; }
  .menu-btn span {
    display: block;
    height: 2px;
    background-color: #fff; }
    .menu-btn span:not(:last-child) {
      margin-bottom: 5px; }

.header-search--mobile {
  display: none; }

.top-screen {
  padding: 20px 0; }

.top-screen__block {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  padding: 6rem; }
  .top-screen__block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0; }

.top-screen__descr {
  border-radius: 5px;
  max-width: 550px;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0));
  padding: 3rem;
  position: relative;
  z-index: 1; }
  .top-screen__descr .h1 {
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: 0.6em; }
  .top-screen__descr p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5em;
    width: 90%; }

.gallery-list {
  margin: 0 -1rem; }
  .gallery-list--5-col .gallery-list__item {
    width: 20%; }
  .gallery-list--4-col .gallery-list__item {
    width: 25%; }
  .gallery-list--2-col .gallery-list__item {
    width: 50%; }
  .gallery-list--2-col .gallery-list__content__descr {
    padding: 1rem 2.5rem; }

.gallery-list__item {
  padding: 0 1rem;
  margin-bottom: 2rem; }
  .gallery-list__item:hover .play-ico {
    opacity: 1; }
  .gallery-list__item:hover .gallery-list__content__descr {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1; }
  .gallery-list__item:hover .gallery-list__item__title {
    color: var(--red); }

.gallery-list__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.gallery__img {
  display: block;
  position: relative;
  line-height: 0; }
  .gallery__img img {
    width: 100%;
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3); }

.badge {
  position: absolute;
  background-color: var(--blue);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  padding: 5px;
  border-radius: 5px;
  top: 10px;
  right: 10px;
  line-height: 1; }

.time,
.views {
  background-color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  color: #000;
  font-size: 12px;
  padding: 5px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1; }
  .time svg,
  .views svg {
    width: 13px;
    height: 13px;
    margin-right: 4px; }

.time {
  left: 0;
  bottom: 10px;
  border-radius: 0 5px 5px 0; }

.views {
  right: 0;
  bottom: 10px;
  border-radius: 5px 0 0 5px; }

.play-ico {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: rgba(33, 95, 251, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0; }
  .play-ico svg {
    width: 40%;
    height: 40%;
    position: relative;
    left: 0.4rem; }

.gallery-list__content__descr {
  padding: 10px 5px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.gallery-list__item__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 8px;
  -webkit-transition: all .3s;
  transition: all .3s; }

.gallery-list__item__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--grey-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.banner-block {
  padding: 3rem 0; }
  .banner-block .btn {
    margin-top: 1.5rem; }

.banner-block__img {
  margin-bottom: 1rem;
  line-height: 0; }
  .banner-block__img img {
    width: 100%;
    border-radius: 5px; }

.login-page {
  background-color: #000; }
  .login-page .header {
    padding-top: 4rem; }
    .login-page .header .logo {
      display: block;
      margin: 0 auto 4rem;
      width: 100%;
      max-width: 370px; }

.login-block {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden; }

.login-block__descr {
  width: 45%;
  padding: 5rem; }
  .login-block__descr .login-block__title {
    margin-bottom: 15px;
    font-size: 30px; }
  .login-block__descr .btn {
    width: 90%;
    text-align: center; }

.login-block__form {
  width: 55%;
  padding: 5rem; }

.login-block__title {
  font-size: 24px;
  margin-bottom: 30px; }

.login-block__descr__list {
  margin-top: 3rem;
  margin-bottom: 5rem; }
  .login-block__descr__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem; }
    .login-block__descr__list li::before {
      content: '';
      width: 3rem;
      height: 3rem;
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      background: url("../img/icons/circle_check.png") center center no-repeat;
      background-size: contain;
      margin-right: 1.5rem; }

.input-wrapper {
  margin-bottom: 20px; }
  .input-wrapper input {
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid #b5b6b9;
    border-radius: 5px;
    background-color: #fff;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    font-size: 16px;
    font-family: var(--main-font);
    color: #000;
    padding-left: 15px; }

.remember {
  margin: 2.5rem 0; }
  .remember label {
    cursor: pointer; }

.captcha {
  margin: 2.5rem 0; }

.submit-btn {
  font-weight: 700;
  display: block;
  width: 260px;
  margin: 3rem auto;
  font-size: 18px;
  padding: 15px 20px; }

.forgot-pass {
  display: table;
  margin: 0 auto;
  font-size: 16px; }
  .forgot-pass:hover {
    color: var(--red); }

.error-block {
  margin: 0 -3rem 3rem;
  border: 3px solid var(--red);
  border-radius: 5px;
  padding: 15px 10px; }
  .error-block p {
    color: var(--grey-text);
    font-size: 14px;
    line-height: 1.3;
    text-align: center; }
    .error-block p a:hover {
      color: var(--red); }

.error-block__title {
  font-size: 20px;
  margin-bottom: 10px; }

.copyright {
  font-size: 14px;
  line-height: 1.6;
  color: #636363; }
  .copyright a {
    color: #fff; }
    .copyright a:hover {
      color: var(--red); }

.warning-page {
  background-color: #000; }
  .warning-page .header {
    padding-top: 4rem; }
    .warning-page .header .logo {
      display: block;
      margin: 0 auto 4rem;
      width: 100%;
      max-width: 370px; }

.warning-block {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 0;
  border-top: 1px solid #242526;
  border-bottom: 1px solid #242526;
  text-align: center;
  color: #fff; }
  .warning-block .h1 {
    margin-bottom: 2rem; }
  .warning-block p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 4rem; }

.cta-btns .btn {
  min-width: 250px;
  font-weight: 700; }
  .cta-btns .btn:not(:last-child) {
    margin-right: 10px; }

.list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem; }
  .list li::before {
    content: '';
    width: 3rem;
    height: 3rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    background: url("../img/icons/circle_check.png") center center no-repeat;
    background-size: contain;
    margin-right: 1.5rem; }

.join-block {
  padding: 30px 0; }

.join__form,
.join__decor {
  width: 50%; }

.join__form {
  padding-right: 30px;
  position: relative; }
  .join__form::after {
    content: '';
    width: 3px;
    height: 100%;
    background-color: var(--grey-text-light);
    position: absolute;
    right: 0;
    top: 0; }

.join__decor {
  padding-left: 30px; }

.join__form__title {
  margin-bottom: 2rem;
  font-size: 24px; }

.join__form__item:not(:last-child) {
  margin-bottom: 20px; }

.choose-plan {
  margin-bottom: 10px; }
  .choose-plan input {
    display: none; }
    .choose-plan input:checked + label {
      background-color: #16b8df;
      color: #fff;
      -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
              box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
      .choose-plan input:checked + label .choose-plan__content__right,
      .choose-plan input:checked + label .choose-plan__content__right,
      .choose-plan input:checked + label .data__top {
        color: #fff; }
      .choose-plan input:checked + label .circle::after {
        opacity: 1; }
  .choose-plan label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 80px;
    border-radius: 5px;
    background-color: #fff;
    padding: 0 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer; }
  .choose-plan .circle {
    width: 22px;
    height: 22px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    border-radius: 50%;
    border: 2px solid #e1e2e4;
    margin-right: 30px;
    position: relative; }
    .choose-plan .circle::after {
      content: '';
      width: calc(100% - 6px);
      height: calc(100% - 6px);
      border-radius: 50%;
      border: 4px solid #fff;
      position: absolute;
      top: -1px;
      left: -1px;
      opacity: 0; }
  .choose-plan .price {
    font-weight: 700;
    font-size: 4.2rem;
    margin-right: 1.5rem;
    letter-spacing: -1px; }
  .choose-plan--best-offer .choose-plan__content__right,
  .choose-plan--best-offer .data__top {
    color: #ea5252; }

.choose-plan__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.choose-plan__content__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .choose-plan__content__left .data span {
    display: block; }
  .choose-plan__content__left .h3 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: capitalize; }

.data__top {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px; }

.data__bottom {
  font-size: 14px;
  font-weight: 300; }

.choose-plan__content__right {
  font-size: 4.2rem;
  font-weight: 700;
  color: #16b8df;
  text-transform: uppercase;
  letter-spacing: -0.5px; }
  .choose-plan__content__right .img-group img {
    margin-left: 10px; }

.join-submit {
  display: block;
  width: 100%;
  font-weight: 700;
  font-family: var(--main-font);
  border-radius: 5px;
  color: #fff;
  background-color: #70c157;
  font-size: 4rem;
  text-transform: uppercase;
  padding: 2rem;
  text-align: center;
  border: 2px solid #70c157;
  margin-top: 25px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .join-submit:hover {
    opacity: 0.7; }

.join__decor {
  position: relative; }
  .join__decor .list {
    position: absolute;
    bottom: 3rem;
    left: 6rem;
    width: calc(100% - 6rem);
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0));
    padding: 2rem; }
    .join__decor .list li {
      font-size: 2.4rem; }
      .join__decor .list li:last-child {
        margin-bottom: 0; }
  .join__decor img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.members {
  background-color: #000; }

.aside {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 300px;
  background-color: #000;
  color: #fff; }
  .aside .h3 {
    padding: 0 20px;
    margin-bottom: 15px; }

.aside-menu {
  font-size: 16px;
  font-weight: 700; }
  .aside-menu .count {
    font-weight: 400;
    color: var(--grey-text);
    -webkit-transition: color .3s;
    transition: color .3s; }
  .aside-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 20px;
    position: relative; }
    .aside-menu a::before {
      content: '';
      width: 3px;
      height: 100%;
      background-color: var(--red);
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
    .aside-menu a:hover, .aside-menu a.active {
      background-color: #2e2e30;
      color: var(--red); }
      .aside-menu a:hover::before, .aside-menu a.active::before {
        opacity: 1; }
      .aside-menu a:hover .count, .aside-menu a.active .count {
        color: #fff; }

.members-page__content {
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  -webkit-box-shadow: inset 3px 3px 40px rgba(0, 0, 0, 0.3);
          box-shadow: inset 3px 3px 40px rgba(0, 0, 0, 0.3); }

.section {
  padding: 35px 0; }

.categories-block {
  padding-bottom: 3rem; }

.categories-row__img {
  width: 27%;
  margin-right: 3rem; }
  .categories-row__img img {
    width: 100%;
    border-radius: 5px 5px 0 0; }

.categories-row__items {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.categories-row__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px 5px 0 0;
  background-color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .categories-row__item:hover {
    background-color: var(--blue);
    color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
    .categories-row__item:hover .icon {
      color: #fff; }
  .categories-row__item:not(:last-child) {
    margin-right: 1rem; }
  .categories-row__item .icon {
    color: #bebec0;
    margin-bottom: 2.5rem;
    -webkit-transition: all .3s;
    transition: all .3s; }

.categories-row__item__name {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700; }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .pagination li {
    margin-right: 5px;
    margin-bottom: 5px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .pagination li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      height: 100%;
      border-radius: 5px;
      background-color: #e1e2e4;
      color: var(--grey-text);
      font-size: 14px;
      font-weight: 700; }
      .pagination li a:hover {
        color: #fff;
        background-color: #000; }
      .pagination li a.active {
        color: #fff;
        background-color: var(--red); }
      .pagination li a .icon {
        position: relative;
        top: 2px; }

.banners {
  margin: 0 -10px; }
  .banners .banner {
    display: block;
    padding: 0 10px;
    width: 25%; }
    .banners .banner:hover {
      opacity: 0.7; }
    .banners .banner img {
      width: 100%; }

.trailer {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.adv {
  width: 300px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-left: 3rem; }
  .adv a {
    display: block;
    line-height: 0; }
    .adv a:not(:last-child) {
      margin-bottom: 3.5rem; }

.video img {
  width: 100%; }

.video__data {
  padding: 10px 0;
  border-bottom: 1px solid #b7b7b7; }

.thumb {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #9b9b9b;
  margin-right: 10px;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .thumb:hover {
    opacity: 0.8; }
  .thumb svg {
    width: 100%;
    height: 100%; }

.like {
  color: var(--blue); }

.raiting {
  width: 90px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none; }

.percent {
  font-size: 20px;
  font-weight: 700; }

.raiting-line {
  height: 3px;
  border-radius: 4px;
  background-color: var(--grey-text-light);
  position: relative;
  margin: 3px 0; }

.progress {
  position: absolute;
  border-radius: 4px;
  background-color: var(--blue);
  height: 100%; }

.raiting__text {
  font-size: 12px; }

.video__data__option .btn {
  padding: 10px 13px; }
  .video__data__option .btn .icon {
    width: 16px;
    height: 16px;
    margin-right: 7px; }
    .video__data__option .btn .icon svg {
      width: 100%;
      height: 100%; }

.video__data__option__item {
  font-size: 14px;
  margin-right: 15px; }
  .video__data__option__item .icon {
    width: 15px;
    height: 15px;
    margin-right: 10px; }
    .video__data__option__item .icon svg {
      width: 100%;
      height: 100%; }

.video__title {
  padding: 15px 0; }

.tags__title {
  font-size: 16px;
  margin-right: 10px;
  padding-top: 5px; }

.tags li {
  margin-right: 3px;
  margin-bottom: 3px; }
  .tags li a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--grey-text);
    background-color: #bebec0;
    border-radius: 5px; }
    .tags li a:hover {
      background-color: var(--red);
      color: #fff; }

.categories-row {
  padding: 30px 0; }

.categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .categories__list li {
    width: 25%;
    padding-right: 30px; }
    .categories__list li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-size: 16px;
      padding: 10px 20px;
      border-radius: 5px; }
      .categories__list li a .count {
        color: var(--grey-text);
        -webkit-transition: all .3s;
        transition: all .3s; }
      .categories__list li a:hover {
        color: #fff;
        background-color: var(--red); }
        .categories__list li a:hover .count {
          color: #fff; }

.alphabet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .alphabet li {
    margin-right: 5px;
    margin-bottom: 5px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .alphabet li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      height: 100%;
      border-radius: 5px;
      background-color: #e1e2e4;
      color: var(--grey-text);
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 700; }
      .alphabet li a:hover {
        color: #fff;
        background-color: #000; }
      .alphabet li a.active {
        color: #fff;
        background-color: var(--blue); }

/*Footer*/
.footer {
  background-color: #000;
  color: #fff;
  padding: 4.5rem 0; }
  .footer .logo {
    width: 175px;
    display: block;
    margin: 0 auto 4rem; }
  .footer .menu {
    margin-bottom: 3rem; }
  .footer .menu li a {
    padding: 1em; }
    .footer .menu li a::after {
      bottom: 0;
      width: calc(100% - 2em);
      left: 1em; }
  .footer .copy {
    font-size: 14px; }

.footer--members {
  padding: 30px 0; }
  .footer--members .logo {
    width: 300px;
    padding-left: 30px;
    margin: 0; }
    .footer--members .logo img {
      width: 175px; }
  .footer--members .menu {
    margin-bottom: 0; }
    .footer--members .menu li {
      margin-right: 2rem; }
      .footer--members .menu li a {
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        color: var(--grey-text); }
        .footer--members .menu li a:hover {
          color: #fff; }
  .footer--members .copy {
    font-size: 18px;
    margin-left: 20px; }

@media (max-width: 1220px) {
  html {
    font-size: 0.8vw; }

  .logo {
    width: 17rem; }

  .top-screen__block {
    padding: 3rem; }

  .top-screen__descr {
    max-width: 50%; }

  .choose-plan .circle {
    margin-right: 10px; }

  .choose-plan__content__left .h3 {
    font-size: 3rem; }

  .aside {
    display: none; }

  .header--members .logo,
  .footer--members .logo {
    width: 175px; }

  .aside .h3 {
    font-size: 20px; }

  .tags li a {
    padding: 5px 10px; }

  .trailer-block {
    display: block; }

  .adv {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 0 0 0;
    margin-left: 0; }
    .adv a {
      margin-right: 20px;
      margin-bottom: 20px; } }
/*1220*/
@media (max-width: 1023px) {
  .gallery-list--4-col .gallery-list__item {
    width: 33.333%; }

  h1, .h1 {
    font-size: 4.4rem; }

  .btn--x-large {
    font-size: 5rem; }

  .warning-page .header .logo,
  .login-page .header .logo {
    width: 80%;
    max-width: 250px; }

  .login-block__descr .login-block__title {
    font-size: 24px; }

  .warning-block .h1 {
    font-size: 30px; }

  .join-block .container {
    display: block; }

  .join__form, .join__decor {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    padding: 0; }
    .join__form::after, .join__decor::after {
      display: none; }
    .join__form .input-wrapper, .join__decor .input-wrapper {
      margin-bottom: 10px; }

  .join__form__title {
    margin-bottom: 15px;
    font-size: 20px; }

  .categories-row__img {
    display: none; }

  .categories-row__item {
    padding: 20px 10px; }

  .categories-row__item__name {
    font-size: 15px; }

  .video__title {
    font-size: 20px; }

  .video__data {
    display: block;
    padding: 15px 0; }

  .likes-block {
    margin-bottom: 20px; }

  .thumb {
    width: 30px;
    height: 30px; }

  .categories__list li {
    width: 33.3333%; } }
/*1023*/
@media (max-width: 767px) {
  html {
    font-size: 1.1vw; }

  .gallery-list--4-col .gallery-list__item {
    width: 50%; }

  .time, .views {
    padding: 2px 4px;
    bottom: 1px; }
    .time svg, .views svg {
      width: 10px;
      height: 10px; }

  .badge {
    padding: 2px;
    top: 5px;
    right: 5px; }

  .gallery-list__item__title {
    font-size: 14px;
    margin-bottom: 3px; }

  .gallery-list__item__text {
    font-size: 12px; }

  .container {
    padding-left: 10px;
    padding-right: 10px; }

  h2, .h2 {
    font-size: 20px; }

  .title {
    padding: 15px 0; }

  .banner-block .h1 {
    font-size: 5rem;
    line-height: 1.3; }
  .banner-block .red {
    display: block; }

  .btn--lg {
    font-size: 3.5rem; }

  .banner-block {
    padding: 20px 0; }

  .top-screen__descr p {
    font-size: 12px; }

  .top-screen__block .btn {
    font-size: 14px;
    padding: 5px 10px; }

  .header__nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .header__nav .menu {
      width: 100%;
      margin-top: 15px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .header__nav .menu li {
        margin-right: 15px; }
        .header__nav .menu li:last-child {
          margin-right: 0; }
        .header__nav .menu li a {
          font-size: 12px;
          padding: 0; }

  .header {
    padding: 10px 0;
    position: relative; }
    .header .container {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .header .logo {
      width: 100px; }
    .header .btn {
      font-size: 12px;
      padding: 5px 10px;
      position: absolute;
      right: 10px;
      top: 10px; }

  .login-block__descr,
  .login-block__form {
    padding: 40px 20px;
    width: 100%;
    text-align: center; }

  .error-block {
    margin: 0 0 30px; }

  .login-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }

  .login-block__descr__list li {
    font-size: 16px; }

  .login-block__descr .btn {
    font-size: 16px; }

  .submit-btn {
    margin: 30px auto; }

  .remember {
    text-align: left;
    font-size: 16px;
    margin: 20px 0; }

  .copyright {
    font-size: 12px; }

  .cta-btns {
    display: block; }
    .cta-btns .btn {
      font-size: 18px; }

  .cta-btns .btn:not(:last-child) {
    margin: 0 0 20px; }

  .choose-plan .price {
    font-size: 30px; }

  .data__top {
    font-size: 14px; }

  .data__bottom {
    font-size: 12px; }

  .choose-plan__content__right,
  .choose-plan__content__left .h3 {
    font-size: 24px; }

  .choose-plan label {
    min-height: 70px;
    padding: 0 10px; }

  .choose-plan__content__right .img-group img {
    max-width: 35px;
    margin-left: 7px; }

  .join-submit {
    font-size: 24px; }

  .join__decor .list li {
    font-size: 16px; }

  .join__decor .list {
    width: 100%;
    left: 0;
    padding-left: 15px;
    bottom: 15px; }

  .header__title {
    width: 100%;
    margin-top: 10px; }
    .header__title .h3 {
      font-size: 18px;
      text-align: center; }
      .header__title .h3 .blue {
        display: block; }

  .join-page .header .logo {
    margin: 0 auto;
    width: 150px; }

  .header--members {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header--members .logo {
      width: 140px; }
    .header--members .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow-y: auto;
      background-color: #000;
      padding: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      display: none;
      z-index: 10; }
      .header--members .header__nav.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .header--members .header__nav .menu {
        display: block; }
        .header--members .header__nav .menu li {
          height: auto;
          margin-bottom: 10px;
          margin-right: 0; }
          .header--members .header__nav .menu li a {
            font-size: 16px;
            padding: 10px 10px 10px 0;
            height: auto; }
            .header--members .header__nav .menu li a::before {
              display: none; }
            .header--members .header__nav .menu li a::after {
              height: 1px;
              bottom: 0; }
      .header--members .header__nav .header-search {
        display: none; }
      .header--members .header__nav .header__nav__options {
        height: auto;
        display: block;
        width: 100%;
        padding-right: 0; }
        .header--members .header__nav .header__nav__options > li {
          display: block;
          height: auto;
          padding: 10px 0;
          margin-left: 0; }
      .header--members .header__nav .drop-menu, .header--members .header__nav .log-dropdown {
        left: 0;
        right: auto; }
      .header--members .header__nav .drop-menu {
        display: block;
        z-index: 3; }
        .header--members .header__nav .drop-menu li {
          width: 100%; }
      .header--members .header__nav .log {
        display: none; }
      .header--members .header__nav .log-dropdown {
        position: relative;
        opacity: 1;
        visibility: visible;
        background-color: transparent; }
        .header--members .header__nav .log-dropdown li a {
          padding-left: 0;
          border: none; }
    .header--members .header__nav__menu {
      height: auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      width: 100%; }

  .header__nav__close,
  .menu-btn {
    display: block; }

  .header--members .header-search__form {
    width: 280px;
    left: auto;
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); }

  .header--members.open-search .header-search__form {
    width: 280px; }

  .search_submit:hover {
    opacity: 1; }

  .header-search--mobile {
    display: block; }

  .noscroll {
    overflow: hidden; }

  .categories-row__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start; }

  .categories-row__item {
    width: calc(33.333% - 5px);
    margin-bottom: 5px;
    margin-right: 5px !important; }

  .pagination li,
  .alphabet li {
    width: 30px;
    height: 30px; }

  .banners {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -5px; }
    .banners .banner {
      width: 50%;
      padding: 0 5px;
      margin-bottom: 10px; }

  .footer--members {
    display: block;
    text-align: center; }
    .footer--members .menu {
      margin-bottom: 20px; }
      .footer--members .menu li {
        margin-right: 0; }
    .footer--members .logo {
      display: block;
      width: 150px;
      margin: 0 auto 20px;
      padding-left: 0; }
    .footer--members .copy {
      margin-left: 0; }

  .tags-block {
    display: block; }

  .tags__title {
    margin-right: 0;
    margin-bottom: 10px; }

  .video__data__option__item {
    font-size: 12px;
    margin-right: 10px; }

  .video__data__option {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }

  .categories__list li {
    width: 50%; } }
/*767*/
@media (max-width: 480px) {
  .gallery-list--2-col .gallery-list__item {
    width: 100%; }
  .gallery-list--5-col .gallery-list__item {
    width: 33.333%; }

  .footer {
    padding: 30px 0; }
    .footer .copy {
      font-size: 12px; }
    .footer .menu {
      display: block; }
      .footer .menu li {
        text-align: center;
        margin-bottom: 10px; }
        .footer .menu li a {
          font-size: 14px;
          display: inline-block;
          padding: 5px 1em; }

  .footer .logo {
    width: 125px; }

  .join__decor {
    height: 450px; }
    .join__decor img {
      -o-object-position: top;
         object-position: top; }

  .video__data__option .btn {
    width: 100%;
    margin-top: 20px; }

  .adv {
    display: none; }

  .categories__list li {
    width: 100%;
    padding-right: 0; }
    .categories__list li a {
      padding: 10px; }

  .categories-row__title {
    font-size: 30px; }
  .top-screen__block img{
    object-position: 80% 0;
  }
  .featured-block .gallery-list{
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
  }
  .featured-block .gallery__img{
    flex-grow: 1;
  }
  .featured-block .gallery__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .featured-block .gallery-list__content__descr{
    flex-grow: unset;
  }
}