@charset "UTF-8";

/* ----- Шрифты ----- */
@font-face {
  font-family: 'Roboto';
  src: url("/SiteNN/fonts/Roboto-Light.woff2") format("woff2"), url("/SiteNN/fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url("/SiteNN/fonts/Roboto-MediumItalic.woff2") format("woff2"), url("/SiteNN/fonts/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

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

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

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

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

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

@font-face {
  font-family: 'Geometria';
  src: url("/SiteNN/fonts/Geometria-MediumItalic.woff2") format("woff2"), url("/SiteNN/fonts/Geometria-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Geometria';
  src: url("/SiteNN/fonts/Geometria-Medium.woff2") format("woff2"), url("/SiteNN/fonts/Geometria-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geometria';
  src: url("/SiteNN/fonts/Geometria-Bold.woff2") format("woff2"), url("/SiteNN/fonts/Geometria-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ----- Настройка лейаута ----- */
html,
body {
  height: auto;
  min-height: 100%;
  min-height: 100vh;
}

html {
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

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

body {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4;
  color: #000000;
  background-color: #fff;
}

.body_overfl {
  overflow: hidden;
}

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.main,
.main-inner {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.header,
.footer {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  padding: 0 0.9375rem;
  margin: 0 auto;
}



@media screen and (max-width: 1000px) {
	.container img{
	  width: 100%; /* ширина картинки */
	  height: auto;
  }
}

a {
  color: #90939a;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover {
  color: #ec2a2b;
}
/* ----- Основные стили ----- */

/* ----- Социальные кнопки ----- */
.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Roboto", Arial, sans-serif;
}

.social-block__contact {
  display: block;
  margin-right: 2.1875rem;
  font-size: 0.875rem;
  color: #ec2a2b;
}

.social-block__contact:hover {
  text-decoration: none;
  color: #a20e0f;
}

.social-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-block__item:not(:last-of-type) {
  margin-right: 0.375rem;
}

.social-block__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  text-decoration: none;
  background-color: #a1a7ad;
  color: #e7eaef;
}

.social-block__link:hover {
  background-color: #ec2a2b;
  color: #fff;
}
/* ----- Социальные кнопки ----- */

/* ----- Кнопка Купить ----- */
.buy-btn {
  display: inline-block;
  width: 11.25rem;
  padding: 0.8125rem 0;
  border-radius: 50px;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background-color: #ec2a2b;
}

@media screen and (max-width: 480px) {
  .buy-btn {
    width: 9rem;
    padding: 0.75rem 0;
    font-size: 0.75rem;
  }
}

.buy-btn:hover {
  color: #fff;
  background-color: #de1415;
  -webkit-box-shadow: 0 0 20px 1px rgba(236, 42, 43, 0.3);
  box-shadow: 0 0 20px 1px rgba(236, 42, 43, 0.3);
}

.buy-btn:focus {
  background-color: #de1415;
  -webkit-box-shadow: 0 0 5px 1px rgba(236, 42, 43, 0.5);
  box-shadow: 0 0 5px 1px rgba(236, 42, 43, 0.5);
}

.buy-btn:active {
  background-color: #d01314;
  -webkit-box-shadow: 0 0 20px 3px rgba(208, 19, 20, 0.6);
  box-shadow: 0 0 20px 3px rgba(208, 19, 20, 0.6);
}
/* ----- Кнопка Купить ----- */

/* ----- Заголовки секций ----- */
.section-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 2.8125rem;
}

@media screen and (max-width: 480px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-header:before {
  content: "";
  position: absolute;
  left: -0.9375rem;
  right: -0.9375rem;
  bottom: 0.3125rem;
  z-index: 0;
  display: block;
  height: 0.75rem;
  background-color: #c2c9d1;
}

@media screen and (max-width: 480px) {
  .section-header:before {
    bottom: 0.45rem;
    height: 0.5rem;
  }
}

.section-header__title {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {
  .section-header__title {
    font-size: 2rem;
  }
}

.section-header__link {
  display: inline-block;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
}
/* ----- Заголовки секций ----- */

/* ----- Шапка ----- */
.header-fullbg {
  background: #e7eaef;
}

.header-uprow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header-lang__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-lang__item {
  position: relative;
}

.header-lang__item:before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  display: block;
  width: 1px;
  height: 100%;
  -webkit-box-shadow: 5px 0px 5px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 0px 5px 2px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-lang__link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.5rem 0.5625rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000;
}

.header-lang__item .header-lang__link:hover {
  background-color: #fff;
}

.header-lang__item_active:before {
  visibility: visible;
  opacity: 1;
}

.header-lang__item_active .header-lang__link {
  background-color: #fff;
}

.header-lowrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.75rem 0.9375rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-lowrow_sticky {
  position: fixed;
  top: 0;
  z-index: 1000;
  max-width: 100%;
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

.header-logo {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  display: block;
  /*width: 6.25rem;
  max-width: 6.25rem;*/width: 9rem;  max-width: 9rem;  
  margin-right: 2.5rem;
  overflow: hidden;
  text-decoration: none;
  font-size: 0;
}

.header-lowrow_sticky .header-logo {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .header-logo {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    z-index: 15;
    margin-right: auto;
  }

  .header-lowrow_sticky .header-logo {
    margin-right: auto;
  }
}

@media screen and (max-width: 480px) {
  .header-logo {
    width: 5rem;
    max-width: 5rem;
  }
}

.header-logo__img {
  width: 100%;
  height: auto;
}

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

@media screen and (max-width: 960px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 14;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 10% 0;
    background-color: #fff;
    /*background-image: url("/images/menu-bg.jpg");*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-box-shadow: -1px 0 10px 1px rgba(0, 0, 0, 0.5);
    box-shadow: -1px 0 10px 1px rgba(0, 0, 0, 0.5);
  }

  .mobile-hamb_open~.header-nav {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    overflow: hidden;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-lowrow_sticky .header-nav__list {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media screen and (max-width: 960px) {
  .header-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    width: 60%;
    height: 100%;
  }
}

.header-nav__item:not(:last-of-type) {
  margin-right: 0.375rem;
}

@media screen and (max-width: 960px) {
  .header-nav__item {
    visibility: hidden;
    opacity: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1) 500ms;
    -o-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1) 500ms;
    transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1) 500ms;
  }

  .header-nav__item:not(:last-of-type) {
    margin-right: 0;
  }

  .header-nav__item:nth-child(2n) {
    -webkit-transform: translateX(30%);
    -ms-transform: translateX(30%);
    -o-transform: translateX(30%);
    transform: translateX(30%);
    -webkit-transition-delay: 550ms;
    -o-transition-delay: 550ms;
    transition-delay: 550ms;
  }

  .header-nav__item:nth-child(2n-1) {
    -webkit-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    transform: translateX(-30%);
    -webkit-transition-delay: 525ms;
    -o-transition-delay: 525ms;
    transition-delay: 525ms;
  }

  .mobile-hamb_open~.header-nav .header-nav__item {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
}

.header-nav__link {
  position: relative;
  display: block;
  padding: 0.625rem 0.3125rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
}

.header-nav__link:hover {
  color: #000;
}

@media screen and (max-width: 960px) {
  .header-nav__link {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 960px) {
  .header-nav__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    font-size: 1.5rem;
    cursor: pointer;
  }
}

@media screen and (max-width: 576px) {
  .header-nav__link {
    font-size: 1.25rem;
  }
}

.header-nav__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.8125rem;
  z-index: -1;
  display: block;
  width: 0;
  height: 0.375rem;
  background-color: #c2c9d1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 960px) {
  .header-nav__link:after {
    bottom: 35%;
    height: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .header-nav__link:after {
    bottom: 40%;
  }
}

@media screen and (min-width: 960px) {
  .header-nav__link:hover:after {
    width: 100%;
  }
}

.header-nav__link_active:link:after {
  width: 100%;
}

.gallery-nav__active:link:after {
  width: -webkit-calc(100% - 1.6rem);
  width: calc(100% - 1.6rem);
}

a.gallery-nav__active {
  color: #ec2a2b;
}

.header-nav__link:active:after {
  background-color: #ec2a2b;
}

.header-btn {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .header-btn {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .header-btn {
    margin-right: 0.5rem;
  }
}

.header-search-btn {
  position: relative;
  z-index: 11;
  display: block;
  width: 3.375rem;
  height: 3.375rem;
  margin-left: 1rem;
  border-radius: 50%;
  color: #343434;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header-search-btn:hover {
  color: #343434;
}

@media screen and (max-width: 480px) {
  .header-search-btn {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 0.5rem;
  }
}

.header-search-btn__search,
.header-search-btn__close {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-search-btn__close {
  visibility: hidden;
  opacity: 0;
}

.header-search-btn_active {
  background-color: #ec2a2b;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}

.header-search-btn_active .header-search-btn__search {
  visibility: hidden;
  opacity: 0;
}

.header-search-btn_active .header-search-btn__close {
  visibility: visible;
  opacity: 1;
  color: #fff;
}

.header-search {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  display: block;
  width: 0%;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.header-search__caption {
  display: block;
  width: 100%;
}

.header-search__field {
  display: block;
  width: 100%;
  padding: 0.9375rem 1.5625rem;
  border-radius: 50px;
  border: 1px solid gray;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-search__field::-webkit-input-placeholder,
.header-search__field::-moz-placeholder,
.header-search__field:-ms-input-placeholder,
.header-search__field:-moz-placeholder {
  color: #90939a;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

@media screen and (max-width: 480px) {
  .header-search__field {
    padding: 0.75rem 1.25rem;
  }
}

.header-search__field:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
  box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
}

.header-search__field:focus {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(236, 42, 43, 0.7);
  box-shadow: 0px 0px 10px 1px rgba(236, 42, 43, 0.7);
}

.header-search-btn_active+.header-search {
  visibility: visible;
  opacity: 1;
  width: 31.25rem;
  z-index: 10;
}

@media screen and (max-width: 960px) {
  .header-search-btn_active+.header-search {
    width: 100%;
  }
}

.mobile-hamb {
  display: none;
}

@media screen and (max-width: 960px) {
  .mobile-hamb {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    z-index: 15;
    display: inline-block;
    width: 32px;
    height: 32px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }

  .mobile-hamb__decor {
    position: absolute;
    left: 0;
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 8px;
    opacity: 1;
    background: #343434;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  .mobile-hamb__decor:nth-child(1) {
    top: 30%;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }

  .mobile-hamb__decor:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }

  .mobile-hamb__decor:nth-child(3) {
    top: 70%;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }

  .mobile-hamb.mobile-hamb_open .mobile-hamb__decor:nth-child(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    -o-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .mobile-hamb.mobile-hamb_open .mobile-hamb__decor:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  .mobile-hamb.mobile-hamb_open .mobile-hamb__decor:nth-child(3) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    -ms-transform: translate(-50%, -50%) rotate(-135deg);
    -o-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
  }
}
/* ----- Шапка ----- */

/* ----- Слайдер ----- */
.main-slider__list {
  width: 100%;
}

.main-slider__item {
  position: relative;
  padding-bottom: 40%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.main-slider__descr {
  position: absolute;
  top: 0;
  left: 55%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1170px;
  height: 100%;
  padding: 0 0.9375rem;
}

@media screen and (max-width: 384px) {
  .main-slider__descr {
    padding: 0;
  }
}

.main-slider__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 60%;
  height: 100%;
  padding: 15% 0;
}

@media screen and (max-width: 1280px) {
  .main-slider__caption {
    padding: 12% 0 12% 7%;
  }
}

@media screen and (max-width: 768px) {
  .main-slider__caption {
    padding: 10% 0 6% 8%;
  }
}

@media screen and (max-width: 480px) {
  .main-slider__caption {
    padding: 0 0 3%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 384px) {
  .main-slider__caption {
    padding: 0 0 4%;
  }
}

.main-slider__group {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1280px) {
  .main-slider__group {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .main-slider__group {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 480px) {
  .main-slider__group {
    font-size: 1rem;
  }
}

.main-slider__song {
  padding: 0;
  margin: 0;
  margin-left: -8px;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 5.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #ec2a2b;
}

@media screen and (max-width: 1280px) {
  .main-slider__song {
    font-size: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .main-slider__song {
    margin-left: 0px;
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 480px) {
  .main-slider__song {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}

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

@media screen and (max-width: 768px) {
  .main-slider__media {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .main-slider__media {
    display: none;
  }
}

.main-slider__google,
.main-slider__apple {
  display: block;
  width: 25%;
  padding-bottom: 10%;
  text-decoration: none;
  color: #000;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media screen and (max-width: 768px) {

  .main-slider__google,
  .main-slider__apple {
    min-width: 100px;
  }
}

.main-slider__google {
  background-image: url("/images/google.png");
  margin-right: 0.9375rem;
}

.main-slider__apple {
  background-image: url("/images/apple1.png");
}

@media screen and (max-width: 768px) {
  .main-slider__btn {
    white-space: nowrap;
  }
}

@media screen and (max-width: 480px) {
  .main-slider__btn {
    white-space: normal;
  }
}

.main-slider__video,
.main-slider__audio {
  background-color: transparent;
  border: 1px solid #ec2a2b;
  color: #ec2a2b;
}

.main-slider__video:hover,
.main-slider__audio:hover {
  background-color: #ec2a2b;
  color: #fff;
}

.main-slider__video {
  margin-right: 0.9375rem;
}

@media screen and (max-width: 576px) {

  .main-slider__video,
  .main-slider__audio {
    width: 10rem;
    padding: 0.5rem 0;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 480px) {

  .main-slider__video,
  .main-slider__audio {
    width: 9rem;
    padding: 0.375rem 0;
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 480px) {
  .main-slider__video {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .main-slider__video:only-child {
    margin-bottom: 0;
  }
}

.main-slider .buy-btn:focus {
  color: #fff;
}

.main-slider .owl-dots {
  position: absolute;
  bottom: 0.625rem;
  right: 1.25rem;
}

.owl-theme .owl-dots .owl-dot span {
  width: 1.125rem;
  height: 1.125rem;
  border: 1.5px solid #fff
}

@media screen and (max-width: 480px) {
  .owl-theme .owl-dots .owl-dot span {
    width: 0.875rem;
    height: 0.875rem;
    border: 1px solid #fff
  }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ec2a2b;
}

.main-slider__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  font-size: 0;
}
/* ----- Слайдер ----- */

/* ----- Афиша ----- */
.main-affiche {
  padding: 3.125rem 0;
}

@media screen and (max-width: 576px) {
  .main-affiche {
    padding: 2rem 0;
  }
}

.main-affiche__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.main-affiche__link svg {
  margin-left: 0.3125rem;
}

.main-affiche__link:hover {
  color: #ec2a2b;
}

.main-affiche__link:hover svg {
  -webkit-animation-name: arrow;
  -o-animation-name: arrow;
  animation-name: arrow;
  -webkit-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.main-affiche__content {
	/*
	* height: 100vh;
	* min-height: 800px;
	*/
  min-height: 700px;
  padding: 0 0.9375rem;
  margin: 0 -0.9375rem;
  border-bottom: 1px solid #c2c9d1;
  border-top: 1px solid #c2c9d1;
}
@media screen and (max-width: 576px) {
  .main-affiche__content {
    min-height: 600px;
  }
}

.main-affiche__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-affiche__item {
  position: relative;
  padding: 1.6875rem 0;
}

@media screen and (max-width: 576px) {
  .main-affiche__item {
    padding: 1.5rem 0;
  }
}

.main-affiche__item:after,
.main-affishe__item:first-of-type:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.9375rem;
  right: -0.9375rem;
  display: block;
  border-bottom: 1px solid #c2c9d1;
}
.main-affishe__item:first-of-type:before {
  bottom: inherit;
  top: 0;
}

.main-affiche__item:last-child:after {
  display: none;
}

.affiche-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 576px) {
  .affiche-item {
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.affiche-item__when,
.affiche-item__address {
  width: 30%;
}

.affiche-item__social {
  width: 10%;
}

@media screen and (max-width: 576px) {
  .affiche-item__when {
    width: 70%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .affiche-item__address {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    margin-top: 0.7rem;
  }

  .affiche-item__social {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 30%;
  }

  .affiche-item__btn {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
}

.affiche-item__date,
.affiche-item__city {
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 576px) {

  .affiche-item__date,
  .affiche-item__city {
    font-size: 1.5rem;
  }
}

.affiche-item__month {
  font-size: 1.5rem;
  font-weight: normal;
}

.affiche-item__year {
  color: #c2c9d1;
}

.affiche-item__time,
.affiche-item__place {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.25rem;
}

.affiche-item__city {
  display: block;
}

.affiche-item__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.affiche-item__social .social-block__link {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

@media screen and (max-width: 576px) {
  .affiche-item__social .social-block__link {
    width: 3rem;
    height: 3rem;
  }
}

.affiche-item__btn {
  border: 1px solid #ec2a2b;
  background-color: transparent;
  color: #ec2a2b;
}

.affiche-item__btn:hover {
  background-color: #ec2a2b;
  color: #fff;
}

@media screen and (max-width: 576px) {
  .affiche-item__btn {
    width: 100%;
    margin-top: 1rem;
    border-width: 1.5px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
  }
}
/* ----- Афиша ----- */

/* ----- Аудио ----- */
.main-audio {
  position: relative;
  padding: 3.125rem 0;
  background-image: url("/images/news-bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .main-audio {
    background-attachment: scroll;
  }
}

.main-audio .container {
  position: relative;
  z-index: 2;
}

.main-audio__header:after {
  background-color: #c2c9d1;
}

.main-audio__title {
  color: #fff;
}

.main-audio__btn {
  margin-right: -0.9375rem;
}

@media screen and (max-width: 480px) {
  .main-audio__btn {
    position: absolute;
    bottom: -1rem;
    -webkit-transform: translateY(40%);
    -ms-transform: translateY(40%);
    -o-transform: translateY(40%);
    transform: translateY(40%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-right: 0;
  }
}

.main-audio__btn .section-header__link {
  position: relative;
  padding: 0 0.9375rem;
  color: #fff;
}

.main-video__btn .section-header__link {
  position: relative;
  padding: 0 0.9375rem;
  color: #ec2a2b;
}

.main-video__btn .section-header__link.active {
  color: #000;
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .main-audio__btn .section-header__link {
    padding: 0;
  }

  .main-video__btn .section-header__link {
    padding: 0;
  }
}

.main-audio__btn .section-header__link:after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  height: 60%;
  border-right: 1px solid #fff;
}

.main-video__btn .section-header__link:after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  height: 60%;
  border-right: 1px solid #ec2a2b;
}

.main-audio__btn .section-header__link:last-of-type:after {
  display: none;
}

.main-video__btn .section-header__link:last-of-type:after {
  display: none;
}

@media screen and (max-width: 480px) {
  .main-audio__btn .section-header__link:after {
    display: none;
  }
}

.main-audio__btn .section-header__link:hover {
  color: #000;
}

.main-audio__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 2.8125rem;
}

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

.main-audio__allAlbums,
.main-audio__allTracks {
  background-color: transparent;
  border: 1px solid #fff;
}

.main-audio__allAlbums:hover,
.main-audio__allTracks:hover {
  border-color: transparent;
}

.main-audio__allAlbums {
  margin-right: 1.875rem;
}

.main-album {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
}

.main-album__list {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-album__item {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .main-album__item {
    width: 100%;
  }
}

.main-album__item:not(:last-of-type) {
  margin-bottom: 0.9375rem;
}

.main-album__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 125px;
  text-decoration: none;
  color: #000;
  background-color: #fff;
}

.main-album__link:hover {
  -webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
}

.main-album__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 0%;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-album__link:hover:after {
  width: 100%;
  border-color: #ec2a2b;
}

.main-album__item_active .main-album__link {
  -webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
}

.main-album__item_active .main-album__link:after {
  width: 100%;
  border-color: #ec2a2b;
}

.main-album__img {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 30%;
  min-width: 6.25rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 480px) {
  .main-album__img {
    min-width: 7rem;
  }
}

.main-album__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
}

.main-album__group,
.main-album__title {
  padding: 0;
  margin: 0;
  color: #343434;
  line-height: 1.2;
}

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

.main-album__title {
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .main-album__title {
    margin: 0.3rem 0;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .main-album__title {
    font-size: 1.25rem;
  }
}

.main-album__link:hover .main-album__title {
  color: #ec2a2b;
}

.main-album__item_active .main-album__title {
  color: #ec2a2b;
}

.main-album__year {
  font-size: 0.75rem;
  font-weight: 300;
  color: #a1a7ad;
}

@media screen and (max-width: 768px) {
  .main-album__year {
    font-size: 1.125rem;
  }
}

.tracks-list {
  position: absolute;
  top: 0;
  right: 0;
  width: -webkit-calc(60% - 1.875rem);
  width: calc(60% - 1.875rem);
  height: 100%;
  overflow-y: scroll;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease
}

@media screen and (max-width: 768px) {
  .tracks-list {
    position: relative;
    display: none;
    width: 100%;
    height: 500px;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .main-album__item_active .tracks-list {
    display: block;
  }
}

.tracks-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  /* -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 4.75rem;
  /* height: 4.9rem; */
  min-height: 70px;
  padding: 0 0 0 1.875rem;
  margin-right: 10px;
  text-decoration: none;
  background-color: #fff;
  color: #343434;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tracks-list__item.tracks-list__item_single {
  /* -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between; */
  /* padding: 0 0 0 1.875rem; */
}

.tracks-list__item:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.tracks-list__item:hover {
  -webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
}

.tracks-list__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0;
  padding-left: 10px;
  margin: 0;
  font-weight: 300;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tracks-list__item:hover .tracks-list__title {
  color: #ec2a2b;
}

.tracks-list__player {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* .tracks-list__check {
  display: none;
} */

.tracks-list__btn,
.tracks-list__btn_player {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 1.25rem;
  text-decoration: none;
  font-size: 2.5em;
  line-height: 1;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tracks-list__btn:hover,
.tracks-list__btn_player:hover {
  color: #ec2a2b;
}

/* .tracks-list__capt {
  position: relative;
  width: 2.5rem;
  height: 1.25rem;
  font-size: 2.5em;
  line-height: 1;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
} */

/* .tracks-list__capt:hover {
  color: #ec2a2b;
} */

/* .tracks-list__capt2 {
  position: relative;
  width: 2.5rem;
  height: 1.25rem;
  font-size: 2.5em;
  line-height: 1;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tracks-list__capt2:hover {
  color: #ec2a2b;
} */

.tracks-list__play,
.tracks-list__close {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tracks-list__close {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tracks-list__check:checked~.tracks-list__capt .tracks-list__play {
  opacity: 0;
}

.tracks-list__check:checked~.tracks-list__capt .tracks-list__close {
  opacity: 1;
}

.tracks-list__audio {
  position: absolute;
  right: 2.5rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
  margin-right: 0.3125rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .tracks-list__audio {
    width: 175px;
  }
}

.tracks-list__audio::-webkit-media-controls-panel {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .tracks-list__audio::-webkit-media-controls-timeline {
    display: none;
  }
}

.tracks-list__check:checked~.tracks-list__audio {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

.tracks-list__pic {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: 10%;
  min-width: 4.375rem;
  margin-left: 0.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

.main-tracks__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-tracks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 5px 30px;
  text-decoration: none;
  background-color: #fff;
  color: #343434;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-tracks__item:not(:last-of-type) {
  margin-bottom: 15px;
}

.main-tracks__item:hover {
  -webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.4);
}

.main-tracks__title {
  padding: 0;
  margin: 0;
  font-weight: 300;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-tracks__item:hover .main-tracks__title {
  color: #ec2a2b;
}

.main-tracks__player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.main-tracks__check {
  display: none;
}

.main-tracks__capt {
  position: relative;
  width: 40px;
  height: 20px;
  font-size: 2.5em;
  line-height: 1;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.main-tracks__capt:hover {
  color: #ec2a2b;
}

.main-tracks__play,
.main-tracks__close {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-tracks__close {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-tracks__check:checked~.main-tracks__capt .main-tracks__play {
  opacity: 0;
}

.main-tracks__check:checked~.main-tracks__capt .main-tracks__close {
  opacity: 1;
}

.main-tracks__audio {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-tracks__audio::-webkit-media-controls-panel {
  background-color: #fff;
}

.main-tracks__check:checked~.main-tracks__audio {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
/* ----- Аудио ----- */

/* ----- Видео ----- */
.main-video {
  padding: 3.125rem 0;
}

.main-video__btn .section-header__link {
  color: #ec2a2b;
}

.main-video__btn .section-header__link:hover {
  color: #000;
}

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

.main-video__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -0.9375rem 0.9375rem;
  list-style: none;
}

.main-video__item {
  margin: 0 0.9375rem 1.875rem;
}

.main-video__more {
  margin: 0 auto;
}

.video-item:first-of-type {
  width: 100%;
}

.video-item:not(:first-of-type) {
  width: -webkit-calc(25% - 1.875rem);
  width: calc(25% - 1.875rem);
}

@media screen and (max-width: 480px) {
  .video-item:not(:first-of-type) {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }
}

.video-item__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.video-item__pic {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.video-item:first-of-type .video-item__pic {
  padding-bottom: 43%;
}

.video-item__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 5em;
  line-height: 1;
  color: #fff;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.video-item:first-of-type .video-item__icon {
  font-size: 7em;
}

@media screen and (max-width: 480px) {
  .video-item:first-of-type .video-item__icon {
    font-size: 5em;
  }

  .video-item__icon {
    font-size: 3em;
  }
}

.video-item__caption {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.625rem 2.1875rem;
}

.video-item:first-of-type .video-item__caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.video-item__title {
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.video-item__year {
  display: none;
  font-size: 0.875rem;
  font-weight: 300;
  color: #c2c9d1;
}

.video-item__link:hover {
  -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.7);
}

.video-item__link:hover .video-item__icon {
  opacity: 1;
  color: #ec2a2b;
}

.video-item__link:hover .video-item__title {
  color: #ec2a2b;
}

.video-item__link:hover .video-item__year {
  color: #000;
}
/* ----- Видео ----- */

/* ----- Новости ----- */
.main-news {
  position: relative;
  padding: 3.125rem 0;
  background-image: url("/images/news-bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden
}

@media screen and (max-width: 768px) {
  .main-news {
    background-attachment: scroll;
  }
}

@media screen and (max-width: 576px) {
  .main-news {
    padding: 2rem 0;
  }
}

.main-news .container {
  z-index: 2;
}

.main-news__header:after {
  background-color: #c2c9d1;
}

.main-news__title {
  color: #fff;
}

.main-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}

.main-news__link svg {
  margin-left: 0.3125rem;
}

.main-news__link:hover {
  color: #000;
}

.main-news__link:hover svg {
  -webkit-animation-name: arrow;
  -o-animation-name: arrow;
  animation-name: arrow;
  -webkit-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.main-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -0.9375rem 0 -0.9375rem;
  list-style: none;
}

.main-news__item {
  width: -webkit-calc(33.3% - 1.875rem);
  width: calc(33.3% - 1.875rem);
  margin: 0 0.9375rem 1.875rem;
}

@media screen and (max-width: 768px) {
  .main-news__item {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }

  .main-news__item:nth-of-type(n+5) {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .main-news__item {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }

  .main-news__item:first-of-type {
    width: 100%;
  }

  .main-news__item:nth-of-type(n+4) {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .main-news__item {
    width: 100%
  }

  .main-news__item:first-of-type {
    width: 100%;
  }
}

.news-item {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25);
}

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

.news-item__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  text-decoration: none;
  font-size: 0;
  color: #000;
}

.news-item__pic {
  position: relative;
  width: 100%;
  padding-bottom: 66%;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.news-item__pic:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 0%;
  border: 2px solid transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-item__descr {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 1.0625rem 1.75rem;
}

.news-item__title {
  padding: 0;
  margin: 0;
  margin-bottom: 0.9375rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-item__descr span,
.news-item__descr p {
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 0.875rem;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 480px) {

  .main-news__item .news-item__descr span,
  .main-news__item .news-item__descr p {
    font-size: 1rem;
  }
}

.news-item__footer {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.5rem 1.875rem;
  border-top: 1px solid #d9e0e8;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #a1a7ad;
}

.news-item__tag {
  position: relative;
  z-index: 2;
}

.news-item__tag a {
  display: inline-block;
  text-decoration: none;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #a1a7ad;
}

.news-item__date {
  display: inline-block;
  padding-left: 0.5rem;
}

.news-item:hover .news-item__pic:after {
  width: 100%;
  border-color: #ec2a2b;
}

.news-item:hover .news-item__title,
.news-item__tag a:hover {
  color: #ec2a2b;
}

.news-item:hover .news-item__descr span,
.news-item:hover .news-item__descr p {
  color: #000;
}
/* ----- Новости ----- */

/* ----- Футер ----- */
.footer-uprow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 4.6875rem 0.9375rem;
}

@media screen and (max-width: 768px) {
  .footer-uprow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 2rem 0.875rem;
  }
}

.footer-menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 80%;
}

@media screen and (max-width: 768px) {
  .footer-menu {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .footer-menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer-menu__nav {
  /* -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto; */
  width: 25%;
}

@media screen and (max-width: 576px) {
  .footer-menu__nav {
    width: 50%;
    margin-bottom: 1rem;
  }
}

.footer-nav__title {
  padding: 0;
  margin: 0;
  margin-bottom: 0.9375rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav__link {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  text-transform: lowercase;
}

.footer-nav__link:hover {
  color: #000;
}

.footer-nav__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1875rem;
  z-index: -1;
  display: block;
  width: 0%;
  height: 0.3125rem;
  background-color: #c2c9d1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer-nav__link:hover:after {
  width: 100%;
}

.footer-nav__link:active:after {
  background-color: #ec2a2b;
}

.footer-social .social-block__item:not(:last-of-type) {
  margin-right: 0.4375rem;
}

.footer-social .social-block__link {
  width: 2.125rem;
  height: 2.125rem;
  color: #fff;
}

.footer-middlerow {
  padding: 0.3125rem 0.9375rem;
  margin-bottom: 6.5625rem;
}

@media screen and (max-width: 768px) {
  .footer-middlerow {
    padding: 0 0.9375rem;
    margin-bottom: 2rem;
  }
}

.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.footer-contact__header {
  width: 100%;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 576px) {
  .footer-contact__header {
    margin-bottom: 2rem;
  }
}

.footer-agency {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  max-width: 80%
}

@media screen and (max-width: 768px) {
  .footer-agency {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.footer-agency__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 576px) {
  .footer-agency__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-agency__item {
  position: relative;
  width: 25%;
  padding-right: 20px;
}

/* @media screen and (max-width: 576px) {
  .footer-agency__item {
    width: 35%;
  }
} */

@media screen and (max-width: 576px) {
  .footer-agency__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }

  .footer-agency__item:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}

/* .footer-agency__item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  height: 80%;
  border-right: 1px solid #c2c9d1;
}

.footer-agency__item:last-of-type:after {
  display: none;
}

@media screen and (max-width: 576px) {
  .footer-agency__item:after {
    display: none;
  }
} */

.footer-agency__title {
  min-height: 45px;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .footer-agency__title {
    min-height: 40px;
  }
}

@media screen and (max-width: 576px) {
  .footer-agency__title {
    width: 50%;
    min-height: auto;
    margin-bottom: 0;
    text-transform: none;
  }
}

.footer-agency__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.footer-agency__mail,
.footer-agency__descr a,
.footer-agency__phone,
.footer-agency__name {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}

.footer-agency__descr a {
  color: #000;
}

.footer-agency__descr a:hover {
  color: #ec2a2b;
}

.footer-agency__descr a:visited {
  color: #90939a;
}

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

.footer-service__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 6.875rem;
  text-align: center;
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 480px) {
  .footer-service__btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: auto;
  }
}

.footer-service__btn:not(:last-of-type) {
  margin-right: 2.5rem;
}

.footer-service__icon {
  width: 3.75rem;
  height: 3.125rem;
  margin-bottom: 0.625rem;
  background-repeat: no-repeat;
  background-position: center bottom;
}

@media screen and (max-width: 480px) {
  .footer-service__icon {
    margin-bottom: 0;
    background-position: center center;
  }
}

.footer-service__icon_1 {
  background-image: url("/images/service-icon1.png");
  background-size: 55%;
}

.footer-service__icon_2 {
  background-image: url("/images/service-icon2.png");
  background-size: 80%;
}

.footer-service__text {
  text-decoration: underline;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer-service__btn:hover .footer-service__text {
  color: #ec2a2b;
}

.footer-lowrow {
  background-color: #e7eaef;
}

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

@media screen and (max-width: 576px) {
  .footer-lowrow .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

.footer-copyright {
  position: relative;
  z-index: 1;
  width: 34%;
  padding: 4.375rem 4.375rem 3.75rem 0;
}

@media screen and (max-width: 576px) {
  .footer-copyright {
    width: 100%;
    padding: 2rem 0;
  }
}

@media screen and (max-width: 480px) {
  .footer-copyright {
    padding: 1rem 0;
  }
}

.footer-copyright__text,
.footer-copyright__madein {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  color: #90939a;
}

.footer-copyright__madein {
  position: absolute;
  bottom: 3.75rem;
  margin: 0;
}

@media screen and (max-width: 576px) {
  .footer-copyright__madein {
    position: relative;
    bottom: unset;
  }
}

.footer-copyright__link {
  color: #ec2a2b;
}

.footer-copyright__link:hover {
  color: #000;
}

.footer-subscr {
  position: relative;
  z-index: 2;
  width: 66%;
}

@media screen and (max-width: 576px) {
  .footer-subscr {
    width: 100%;
    border-bottom: 1px solid #90939a;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.footer-subscr:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 0.1px;
  height: 100%;
  -webkit-box-shadow: 0px 0 15px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0 15px 1px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 576px) {
  .footer-subscr:before {
    display: none;
  }
}

.footer-subscr__body {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding: 3.75rem 0rem 3.75rem 4.375rem;
  background-color: #e7eaef;
}

@media screen and (max-width: 576px) {
  .footer-subscr__body {
    padding: 2rem 0;
  }
}

@media screen and (max-width: 320px) {
  .footer-subscr__body {
    padding: 1rem 0;
  }
}

.footer-subscr__title {
  padding: 0;
  margin: 0;
  margin-bottom: 0.3125rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #ec2a2b;
}

@media screen and (max-width: 576px) {
  .footer-subscr__title {
    font-size: 1.6125rem;
  }
}

.footer-subscr__text {
  padding: 0;
  margin: 0;
  margin-bottom: 2.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
}

@media screen and (max-width: 576px) {
  .footer-subscr__text {
    margin-bottom: 1.5rem;
  }
}

.footer-subscr__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 384px) {
  .footer-subscr__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-subscr__capt {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-right: 0.625rem;
  display: block;
}

@media screen and (max-width: 384px) {
  .footer-subscr__capt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.footer-subscr__field {
  display: block;
  width: 100%;
  padding: 0.8125rem 2.125rem;
  border-radius: 50px;
  border: 1px solid gray;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-subscr__field::-webkit-input-placeholder,
.footer-subscr__field::-moz-placeholder,
.footer-subscr__field:-ms-input-placeholder,
.footer-subscr__field:-moz-placeholder {
  color: #90939a;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

@media screen and (max-width: 480px) {
  .footer-subscr__field {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }

  .footer-subscr__field::-webkit-input-placeholder,
  .footer-subscr__field::-moz-placeholder,
  .footer-subscr__field:-ms-input-placeholder,
  .footer-subscr__field:-moz-placeholder {
    font-size: 0.75rem;
  }
}

.footer-subscr__field:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
  box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
}

.footer-subscr__field:focus {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
  box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
}

.footer-subscr__btn {
  border: none;
  outline: none;
}

@media screen and (max-width: 384px) {
  .footer-subscr__btn {
    width: 100%;
  }
}

.footer-subscr__pact {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  color: #90939a;
}

.footer-subscr__link {
  color: #90939a;
  font-weight: 500;
}

.footer-subscr__link:hover {
  color: #ec2a2b;
}
/* ----- Футер ----- */

/* ----- Декоративные линии ----- */
.parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.decor-line {
  position: absolute;
  z-index: 1;
  border: 2px solid #fff;
  border-radius: 1px;
  -webkit-box-shadow: 0 0 25px 10px rgba(236, 42, 43, 0.7);
  box-shadow: 0 0 25px 10px rgba(236, 42, 43, 0.7)
}

.decor-line:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 25px 10px rgba(236, 42, 43, 0.7);
  box-shadow: inset 0 0 25px 10px rgba(236, 42, 43, 0.7)
}

.decor-line_big {
  top: 5%;
  left: 0;
  width: 18.75rem;
  height: 18.75rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.decor-line_little {
  top: 35%;
  right: 0;
  width: 9.375rem;
  height: 9.375rem;
  -webkit-transform: translateX(50%) rotate(45deg);
  -ms-transform: translateX(50%) rotate(45deg);
  -o-transform: translateX(50%) rotate(45deg);
  transform: translateX(50%) rotate(45deg);
}

.main-news .decor-line_little {
  top: 35%;
  left: 0;
  right: unset;
  width: 9.375rem;
  height: 9.375rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.main-news .decor-line_big {
  top: 5%;
  right: 0;
  left: unset;
  width: 18.75rem;
  height: 18.75rem;
  -webkit-transform: translateX(50%) rotate(45deg);
  -ms-transform: translateX(50%) rotate(45deg);
  -o-transform: translateX(50%) rotate(45deg);
  transform: translateX(50%) rotate(45deg);
}
/* ----- Декоративные линии ----- */

/* ----- Анимации ----- */
@-webkit-keyframes pulse-btn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 0 0 25px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 25px 2px rgba(236, 42, 43, 0.3);
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes pulse-btn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 0 0 25px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 25px 2px rgba(236, 42, 43, 0.3);
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulse-btn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 0 0 25px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 25px 2px rgba(236, 42, 43, 0.3);
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes arrow {
  25% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  30% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@-o-keyframes arrow {
  25% {
    -webkit-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
  }
  30% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    transform: translateX(-3px);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@keyframes arrow {
  25% {
    -webkit-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
  }
  30% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    transform: translateX(-3px);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@-webkit-keyframes arrow-left {
  25% {
    -webkit-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  30% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@-o-keyframes arrow-left {
  25% {
    -webkit-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  30% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@keyframes arrow-left {
  25% {
    -webkit-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  30% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@-webkit-keyframes light {
  0% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: 0 0 30px 15px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 30px 15px rgba(236, 42, 43, 0.7)
  }
  6% {
    -webkit-box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  7% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  8% {
    -webkit-box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  9% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  34% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  35% {
    -webkit-box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  36% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
}

@-o-keyframes light {
  0% {
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    box-shadow: 0 0 30px 15px rgba(236, 42, 43, 0.7)
  }
  6% {
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  7% {
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  8% {
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  9% {
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  34% {
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  35% {
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  36% {
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
}

@keyframes light {
  0% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: 0 0 30px 15px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 30px 15px rgba(236, 42, 43, 0.7)
  }
  6% {
    -webkit-box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  7% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  8% {
    -webkit-box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  9% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  34% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  35% {
    -webkit-box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  36% {
    -webkit-box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
}

@-webkit-keyframes light-inset {
  0% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: inset 0 0 30px 15px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 30px 15px rgba(236, 42, 43, 0.7)
  }
  6% {
    -webkit-box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  7% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  8% {
    -webkit-box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  9% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  34% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  35% {
    -webkit-box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  36% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
}

@-o-keyframes light-inset {
  0% {
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    box-shadow: inset 0 0 30px 15px rgba(236, 42, 43, 0.7)
  }
  6% {
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  7% {
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  8% {
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  9% {
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  34% {
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  35% {
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  36% {
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
}

@keyframes light-inset {
  0% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  5% {
    -webkit-box-shadow: inset 0 0 30px 15px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 30px 15px rgba(236, 42, 43, 0.7)
  }
  6% {
    -webkit-box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  7% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  8% {
    -webkit-box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  9% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  34% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
  35% {
    -webkit-box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3);
    box-shadow: inset 0 0 10px 2px rgba(236, 42, 43, 0.3)
  }
  36% {
    -webkit-box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7);
    box-shadow: inset 0 0 25px 8px rgba(236, 42, 43, 0.7)
  }
}

.decor-line {
  -webkit-animation-name: light;
  -o-animation-name: light;
  animation-name: light;
  -webkit-animation-duration: 10s;
  -o-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 10s;
  -o-animation-delay: 10s;
  animation-delay: 10s
}

.decor-line:after {
  -webkit-animation-name: light-inset;
  -o-animation-name: light-inset;
  animation-name: light-inset;
  -webkit-animation-duration: 10s;
  -o-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 10s;
  -o-animation-delay: 10s;
  animation-delay: 10s
}
/* ----- Анимации ----- */

/* ---------- Стили для внутренних ---------- */

/* ----- Общие стили ----- */
.header_inner {
  position: relative;
  z-index: 4;
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.4);
}

.main-inner {
  padding: 2rem 0;
  background-image: url("/images/menu-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.footer_inner {
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 0px -1px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px -1px 10px 0px rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
  padding: 5px 0;
  font-size: 12px;
  color: #90939a;
  text-decoration: none;
}

.breadcrumbs a {
  text-decoration: underline;
  color: #90939a;
}

.breadcrumbs a:hover {
  text-decoration: none;
  color: #ec2a2b;
}

.main-slider,
.shop-info,
.main-inner .container,
.promo {
  position: relative;
  z-index: 2;
}
/* ----- Общие стили ----- */

/* ----- Дискография ----- */
.album-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -0.9375rem 0 -0.9375rem;
  list-style: none;
}

.album-inner__item {
  width: -webkit-calc(33.3% - 1.875rem);
  width: calc(33.3% - 1.875rem);
  margin: 0 0.9375rem 1.875rem;
}

@media screen and (max-width: 576px) {
  .album-inner__item {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
    margin: 0 0.9375rem 1.875rem;
  }
}

.album-inner__link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.album-inner__link:hover {
  -webkit-box-shadow: 0 0 13px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 13px 1px rgba(0, 0, 0, 0.5);
}

.album-inner__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0%;
  border-bottom: 2px solid #ec2a2b;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.album-inner__link:hover:after {
  width: 100%;
}

.album-inner__pic {
  width: 100%;
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.album-inner__descr {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem;
}

.album-inner__title {
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.album-inner__link:hover .album-inner__title {
  color: #ec2a2b;
}

.album-inner__type,
.album-inner__release {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #c2c9d1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.album-inner__release {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.625rem;
}

.album-inner__link:hover .album-inner__type,
.album-inner__link:hover .album-inner__release {
  color: #000;
}
/* ----- Дискография ----- */

/* ----- Дискография внутренняя ----- */
.album-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.9375rem 2rem;
}

@media screen and (max-width: 768px) {
  .album-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.album-preview {
  width: -webkit-calc(65% - 1.875rem);
  width: calc(65% - 1.875rem);
  padding: 2rem 3rem 3rem;
  margin: 0 0.9375rem 1.875rem;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .album-preview {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
  }
}

.album-preview__author {
  padding: 0;
  margin: 0;
  margin-bottom: 0.375rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}

.album-preview__title {
  padding: 0;
  margin: 0;
  margin-bottom: 1.25rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.album-preview__year {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
}

.album-preview__pic {
  width: 100%;
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.affiche-sidebar {
  width: -webkit-calc(35% - 1.875rem);
  width: calc(35% - 1.875rem);
  padding: 2rem 0.75rem;
  margin: 0 0.9375rem 1.875rem;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .affiche-sidebar {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
    padding: 1.5rem 0.75rem;
  }

  .affiche-sidebar.concert-affiche {
    display: none;
  }
}

.affiche-sidebar__title {
  position: relative;
  padding: 0 0.9375rem;
  margin: 0;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.affiche-sidebar__title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 100%;
  height: 0.375rem;
  background-color: #c2c9d1;
  mix-blend-mode: multiply;
}

.affiche-sidebar__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.affiche-sidebar__item:not(:last-of-type) {
  border-bottom: 1px solid #c2c9d1;
}

.affiche-sidebar__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 0.9375rem;
  text-decoration: none;
  font-family: "Geometria", Arial, sans-serif;
  color: #000;
}

@media screen and (max-width: 768px) {
  .affiche-sidebar__link {
    padding: 1rem 0.9375rem;
  }
}

.affiche-sidebar__concert {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .affiche-sidebar__concert {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
}

.affiche-sidebar__day {
  font-weight: 700;
}

.affiche-sidebar__month {
  font-weight: 500;
}

.affiche-sidebar__year {
  font-weight: 700;
  color: #c2c9d1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.affiche-sidebar__link:hover .affiche-sidebar__year {
  color: #000;
}

.affiche-sidebar__place {
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.affiche-sidebar__link:hover .affiche-sidebar__place {
  color: #ec2a2b;
}

.affiche-sidebar__decor {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .affiche-sidebar__decor {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.affiche-sidebar__link:hover .affiche-sidebar__decor {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  color: #ec2a2b;
}

.album-tracks {
  width: -webkit-calc(60% - 1.875rem);
  width: -webkit-calc(65% - 1.875rem);
  width: calc(65% - 1.875rem);
  padding: 0 3rem;
  margin: 0 0.9375rem 1.875rem;
}

@media screen and (max-width: 768px) {
  .album-tracks {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
    padding: 0;
  }
}

.album-tracks__title {
  padding: 0;
  margin: 0;
  margin-bottom: 1.5625rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #c2c9d1;
}

.album-disk:not(:last-child) {
  margin-bottom: 25px;
}

.album-disk__title {
  padding: 5px 10px;
  margin: 0;
  margin-bottom: 5px;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background-color: #c2c9d1;
}

.album-disk__list {
  padding: 0;
  margin: 0;
}

.album-disk__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.75rem;
  padding: 1rem 2rem;
  border: 1px solid #c2c9d1;
  background-color: #fff;
}

.album-disk__item:not(:last-of-type) {
  margin-bottom: 5px;
}

.album-disk__name {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0;
  padding-left: 1rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #343434;
}

/* .album-disk__item .tracks-list__capt {
  color: #a1a7ad;
}

.album-disk__item .tracks-list__capt:hover {
  color: #ec2a2b;
}

.album-disk__item .tracks-list__capt2 {
  color: #a1a7ad;
}

.album-disk__item .tracks-list__capt2:hover {
  color: #ec2a2b;
} */
/* ----- Дискография внутренняя ----- */

/* ----- Афиша внутренняя ----- */
.affiche-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -0.9375rem 2rem;
}

@media screen and (max-width: 768px) {
  .affiche-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.concert-wrap {
  width: -webkit-calc(65% - 1.875rem);
  width: calc(65% - 1.875rem);
  margin: 0 0.9375rem 1.875rem 0.9375rem;
}

@media screen and (max-width: 768px) {
  .concert-wrap {
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
    margin: 0 0.9375rem;
  }
}

.search-concert {
  padding: 2rem 1.875rem;
  margin: 0 0 1.875rem -0.9375rem;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

@media screen and (max-width: 1170px) {
  .search-concert {
    padding: 1.5rem 0.9375rem;
    margin: 0 0 1.875rem 0;
  }
}

.search-concert__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 576px) {
  .search-concert__form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.search-concert__capt {
  display: block;
  width: 30%;
}

.select2.select2-container.select2-container--default {
  width: 100% !important;
}

@media screen and (max-width: 576px) {
  .search-concert__capt {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
  }

  .search-concert__capt:first-of-type {
    margin-right: 20px;
  }
}

@media screen and (max-width: 480px) {
  .search-concert__capt {
    width: 100%;
  }

  .search-concert__capt:first-of-type {
    margin-right: 0px;
    margin-bottom: 1rem;
  }
}

.search-concert__field {
  display: block;
  width: 100%;
  padding: 1rem 0;
  font-family: "Geometria", Arial, sans-serid;
  font-size: 1rem;
  font-weight: 300;
  color: #646a70;
  border: none;
  border-bottom: 1px solid #c2c9d1;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.search-concert__field:focus,
.search-concert__field:hover {
  color: #646a70;
  border-bottom: 1px solid #646a70;
}

.search-concert__btn {
  border: none;
  outline: none;
}

@media screen and (max-width: 576px) {
  .search-concert__btn {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.affiche-inner .affiche-wrap {
  padding: 0 1.875rem 0 0.9375rem;
}

@media screen and (max-width: 1170px) {
  .affiche-inner .affiche-wrap {
    padding: 0 0.9375rem 0 0.9375rem;
  }
}

.affiche-inner .main-affiche__item:after {
  left: -1.875rem;
  right: -1.875rem;
}

@media screen and (max-width: 1170px) {
  .affiche-inner .main-affiche__item:after {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}

.affiche-inner .affiche-item__when,
.affiche-inner .affiche-item__address {
  width: 32%;
}

@media screen and (max-width: 576px) {
  .affiche-inner .affiche-item__when {
    width: 100%;
  }

  .affiche-inner .affiche-item__address {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .affiche-inner .affiche-item__address-wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: 0.5rem;
  }
}

.affiche-inner .affiche-item__social {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0.5rem;
}

@media screen and (max-width: 576px) {
  .affiche-inner .affiche-item__social {
    width: auto;
    margin-top: 0;
  }
}

.affiche-inner .affiche-item__date,
.affiche-inner .affiche-item__city {
  font-size: 1.5rem;
}

.affiche-inner .affiche-item__time,
.affiche-inner .affiche-item__place {
  font-size: 1rem;
}
/* ----- Афиша внутренняя ----- */

/* ----- Видео внутренняя ----- */
.video-inner .video-item:not(:first-of-type) {
  width: -webkit-calc(33.3% - 1.875rem);
  width: calc(33.3% - 1.875rem);
}

@media screen and (max-width: 768px) {
  .video-inner .video-item:not(:first-of-type) {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }
}

.video-inner .video-item__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.video-inner .video-item__icon {
  display: none;
}

.video-inner .video-item__caption {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.video-inner .video-item:first-of-type .video-item__caption {
  -webkit-box-flex: unset;
  -webkit-flex: unset;
  -ms-flex: unset;
  flex: unset;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.video-inner .video-item__title {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.2;
}

.video-inner .video-item:first-of-type .video-item__title {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.4;
}

.video-inner .video-item__year {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 0.5rem;
}

.video-inner .video-item:first-of-type .video-item__year {
  -webkit-box-flex: unset;
  -webkit-flex: unset;
  -ms-flex: unset;
  flex: unset;
  display: block;
  margin-top: 0;
}

.video-modal {
  display: none;
  width: 60%;
  margin: 5% 0;
  text-align: left;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .video-modal {
    width: 80%;
  }
}

@media screen and (max-width: 576px) {
  .video-modal {
    width: 95%;
  }
}

.video-descr {
  position: relative;
  padding: 2.7rem 3.2rem;
}

.video-modal__close {
  position: absolute;
  top: 0.3125rem;
  right: 0.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  text-decoration: none;
  color: #c2c9d1;
}

.video-modal__close:hover {
  color: #ec2a2b;
}

.video-descr__author {
  padding: 0;
  margin: 0;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.video-descr__title {
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.video-descr__year {
  display: block;
  margin-bottom: 1.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #c2c9d1;
}

.video-descr__video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.video-descr__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-descr__text-title {
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c2c9d1;
}

.video-descr__text {
  font-size: 1rem;
  color: #000;
}
/* ----- Видео внутренняя ----- */

/* ----- О группе внутренняя ----- */
.about-inner__people {
  margin-top: 3rem;
}

.about-inner__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -0.9375rem;
  list-style: none;
}

.about-inner__item {
  width: -webkit-calc(33.3% - 1.875rem);
  width: calc(33.3% - 1.875rem);
  margin: 0 0.9375rem 1.875rem;
}

@media screen and (max-width: 768px) {
  .about-inner__item {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }
}

@media screen and (max-width: 480px) {
  .about-inner__item {
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
    margin: 0 0.9375rem 1.875rem;
  }
}

.about-inner__link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}

.about-inner__link:hover {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}

.about-inner__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 0%;
  border-bottom: 2px solid #ec2a2b;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.about-inner__link:hover:after {
  width: 100%;
}

.about-inner__pic {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 36%;
  max-width: 9.375rem;
  min-width: 6.25rem;
  min-height: 6.25rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-inner__descr {
  padding: 1.5625rem;
  width: 64%;
}

.about-inner__title {
  padding: 0;
  margin: 0;
  margin-bottom: 0.875rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.about-inner__link:hover .about-inner__title {
  color: #ec2a2b;
}

.about-inner__text {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
}
/* ----- О группе внутренняя ----- */

/* ----- Фото внутренняя ----- */
.gallery-nav {
  margin-bottom: 2.8125rem;
}

.gallery-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .gallery-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.gallery-nav__link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.625rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

@media screen and (max-width: 768px) {
  .gallery-nav__link {
    padding: 0.375rem 1rem;
    text-align: center;
}
}

.gallery-nav__link:after {
  content: "";
  position: absolute;
  left: 0.8rem;
  bottom: 0.8125rem;
  z-index: -1;
  display: block;
  width: 0;
  height: 0.375rem;
  background-color: #c2c9d1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.gallery-nav__link:hover:after {
  width: -webkit-calc(100% - 1.6rem);
  width: calc(100% - 1.6rem);
}

.galleries {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -0.9375rem;
  list-style: none;
}

.galleries__item {
  width: -webkit-calc(33.3% - 1.875rem);
  width: calc(33.3% - 1.875rem);
  margin: 0 0.9375rem 1.875rem 0.9375rem;
  cursor: pointer
}

@media screen and (max-width: 768px) {
  .galleries__item {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }
}

@media screen and (max-width: 480px) {
  .galleries__item {
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
  }
}

.galleries__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}

.galleries__item:hover .galleries__wrap {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}

.galleries__pic {
  position: relative;
  width: 100%;
  padding-bottom: 66%;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.galleries__pic:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 0%;
  border: 2px solid transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.galleries__item:hover .galleries__pic:after {
  width: 100%;
  border-color: #ec2a2b;
}

.galleries__link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 0;
}

.galleries__descr {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.0625rem 1.75rem;
}

.galleries__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 0.9375rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.galleries__text,
.galleries__text span,
.galleries__text p {
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 1rem;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.galleries__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.5rem 1.875rem;
  border-top: 1px solid #d9e0e8;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #a1a7ad;
}

.galleries__tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-decoration: none;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  color: #a1a7ad;
}

.galleries__sum {
  position: relative;
  display: inline-block;
  font-weight: 300;
}

.galleries__sum:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.5rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url('/images/img-num.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.5;
}

.galleries__item:hover .galleries__title,
.galleries__tag:hover {
  color: #ec2a2b;
}

.galleries__item:hover .galleries__descr,
.galleries__item:hover .galleries__descr span,
.galleries__item:hover .galleries__descr p {
  color: #000;
}

.photo__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -0.9375rem;
  list-style: none;
}

.photo__item {
  width: -webkit-calc(33.3% - 1.875rem);
  width: calc(33.3% - 1.875rem);
  margin: 0 0.9375rem 1.875rem 0.9375rem;
}

@media screen and (max-width: 768px) {
  .photo__item {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }
}

@media screen and (max-width: 480px) {
  .photo__item {
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
  }
}

.photo__link {
  display: block;
  width: 100%;
  padding-bottom: 66%;
  text-decoration: none;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #000;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}

.photo__link:hover {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}

.photo__pager {
  position: relative;
  z-index: 1;
}

.photo__pager a {
  position: relative;
  display: inline-block;
  padding: 5px 5px;
  text-decoration: none;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
}

.photo__pager a:after {
  content: "";
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  z-index: -1;
  display: block;
  width: 0%;
  border-bottom: 4px solid #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.photo__pager a:hover:after {
  width: 100%;
  border-color: #ec2a2b;
}

.photo__pager a.active:after {
  width: 100%;
}
/* ----- Фото внутренняя ----- */

/* ----- Новости ----- */
.news-inner__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.9375rem 0;
}

.news-inner__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-calc(33.3% - 1.875rem);
  width: calc(33.3% - 1.875rem);
  margin: 0 0.9375rem 1.875rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .news-inner__item {
    width: -webkit-calc(50% - 1.875rem);
    width: calc(50% - 1.875rem);
  }
}

@media screen and (max-width: 480px) {
  .news-inner__item {
    width: -webkit-calc(100% - 1.875rem);
    width: calc(100% - 1.875rem);
  }
}

.news-inner__item:hover {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}

.news-inner__pic {
  position: relative;
  width: 100%;
  padding-bottom: 66%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.news-inner__pic:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 0%;
  border: 2px solid transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-inner__item:hover .news-inner__pic:after {
  width: 100%;
  border-color: #ec2a2b;
}

.news-inner__descr {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 1.0625rem 1.75rem;
}

.news-inner__title {
  padding: 0;
  margin: 0;
  margin-bottom: 0.9375rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-inner__item:hover .news-inner__title {
  color: #ec2a2b;
}

.news-inner__descr span,
.news-inner__descr p,
.news-inner__descr a {
  padding: 0;
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-inner__descr a {
  font-weight: 400;
  color: #56575a;
}

.news-inner__descr a:hover {
  color: #ec2a2b;
}

@media screen and (max-width: 480px) {

  .news-inner__descr span,
  .news-inner__descr p,
  .news-inner__descr a {
    font-size: 1rem;
  }
}

.news-inner__item:hover .news-inner__descr p,
.news-inner__item:hover .news-inner__descr span {
  color: #000;
}

.news-inner__descr a {
  position: relative;
  z-index: 5;
}

.news-inner__footer {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.5rem 1.875rem;
  border-top: 1px solid #d9e0e8;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #a1a7ad;
}

.news-inner__tag a {
  display: inline-block;
  text-decoration: none;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #a1a7ad;
}

.news-inner__tag a:hover {
  color: #ec2a2b
}

.news-inner__date {
  display: inline-block;
  padding-left: 0.5rem;
}

.news-inner__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 0;
}

.news-inner__wrap .pager {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.news-inner__wrap .pager a {
  position: relative;
  display: inline-block;
  padding: 5px 5px;
  text-decoration: none;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
}

.news-inner__wrap .pager a:after {
  content: "";
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  z-index: -1;
  display: block;
  width: 0%;
  border-bottom: 4px solid #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-inner__wrap .pager a:hover:after {
  width: 100%;
  border-color: #ec2a2b;
}

.news-inner__wrap .pager a.active:after {
  width: 100%;
}
/* ----- Новости ----- */

/* ----- Форма входа ----- */
.login-form {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.login-form__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.login-form__capt {
  display: block;
  width: 9.375rem;
  min-width: 9.375rem;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}

.login-form__field {
  display: block;
  width: 18.75rem;
  min-width: 18.75rem;
  padding: 0.75rem 1.125rem;
  border-radius: 50px;
  border: 1px solid #a1a7ad;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

@media screen and (max-width: 480px) {
  .login-form__field {
    width: 100%;
    min-width: auto;
  }
}

.login-form__field::-webkit-input-placeholder,
.login-form__field::-moz-placeholder,
.login-form__field:-ms-input-placeholder,
.login-form__field:-moz-placeholder {
  color: #90939a;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.login-form__field:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
  box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
}

.login-form__field:focus {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
  box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
}

.login-form__btn {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  min-width: 18.75rem;
  border: none;
  outline: none;
}

@media screen and (max-width: 480px) {
  .login-form__btn {
    width: 100%;
    min-width: auto;
  }
}
/* ----- Форма входа ----- */

/* ----- Панель администратора ----- */
.inner-title {
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.admin-btn {
  display: inline-block;
  text-decoration: none;
  color: #a1a7ad;
}

.admin-btn:hover {
  color: #ec2a2b;
}

.admin-panel {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 480px) {
  .admin-panel {
    width: 100%;
  }
}

.admin-panel__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.admin-panel__login {
  display: block;
  width: 9.375rem;
  min-width: 9.375rem;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}

.admin-panel__name {
  display: block;
  width: 25rem;
  min-width: 25rem;
  padding: 0.75rem 1.125rem;
  border: 1px solid #a1a7ad;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

@media screen and (max-width: 480px) {
  .admin-panel__name {
    width: 100%;
    min-width: auto;
  }
}

.admin-panel__list {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 480px) {
  .admin-panel__list {
    width: 100%;
  }
}

.admin-panel__item {
  margin-bottom: 0.7rem;
}

.admin-panel__item a {
  display: block;
  width: 25rem;
  padding: 0.5rem 0;
  border: 1px solid #a1a7ad;
  text-decoration: none;
  text-align: center;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  background-color: #fff;
}

@media screen and (max-width: 480px) {
  .admin-panel__item a {
    width: 100%;
    min-width: auto;
  }
}

.admin-panel__item a:hover {
  background-color: #a1a7ad;
  color: #fff;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}

.admin-panel__btn {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 25rem;
  margin-top: 0.3rem;
  border: none;
  border-radius: 0;
  outline: none;
}

@media screen and (max-width: 480px) {
  .admin-panel__btn {
    width: 100%;
    min-width: auto;
  }
}
/* ----- Панель администратора ----- */

/* ----- Промо ----- */
.promo__pic {
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 0;
  overflow: hidden;
}

.promo__img {
  width: 100%;
  height: auto;
}

.promo__video {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 43%;
  margin-bottom: 2rem;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #000;
}

.promo__video:hover {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}

.promo__video:hover .video-item__icon {
  opacity: 1;
  color: #ec2a2b;
}

.promo__descr {
  margin-bottom: 1.5rem;
}

.promo__descr-title {
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: #000;
}

.promo__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .promo__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.promo__info-col {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .promo__info-col {
    width: 100%;
  }
}

.promo__info-col:first-child {
  min-width: 500px;
  padding: 2rem 3rem;
  border-radius: 10px;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1.25rem;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .promo__info-col:first-child {
    min-width: auto;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
  }
}

.promo__date,
.promo__place,
.promo__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.promo__price {
  margin-bottom: 0;
}

.promo__icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.5rem;
  margin-right: 1rem;
  color: #ec2a2b;
}

.promo__date .promo__text,
.promo__cost {
  text-transform: uppercase;
  font-weight: bold;
}

.promo__holl {
  display: block;
  text-transform: uppercase;
  text-decoration: underline;
}

.promo__text {
  padding: 0;
  margin: 0;
}

.promo__btn {
  display: block;
  width: 17.5rem;
  padding: 1rem 0;
  margin: 0 auto;
  font-size: 1.25rem;
}
/* ----- Промо ----- */

/* ----- Похожие новости ----- */
.other-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 1rem 0;
}

.other-page__before,
.other-page__after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  text-align: left;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.other-page__after {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.other-page__before:hover,
.other-page__after:hover {
  color: #ec2a2b;
}

.other-page__after:hover svg {
  -webkit-animation-name: arrow;
  -o-animation-name: arrow;
  animation-name: arrow;
  -webkit-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.other-page__before:hover svg {
  -webkit-animation-name: arrow-left;
  -o-animation-name: arrow-left;
  animation-name: arrow-left;
  -webkit-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.other-page__before a,
.other-page__after a {
  display: inline-block;
  margin: 0 0.3rem;
  text-decoration: none;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  color: #a1a7ad;
}

.other-page__before a:hover,
.other-page__after a:hover {
  color: #ec2a2b;
}
/* ----- Похожие новости ----- */

/* ----- Слайдер в магазине ----- */
.main-inner>.main-slider {
  margin-top: -2rem;
  font-size: 0;
  line-height: 0;
}
/* ----- Слайдер в магазине ----- */

/* ----- Корзина и регистрация ----- */
.shop-info {
  margin-bottom: 25px;
  background-color: #e7eaef;
}

.shop-info .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px 15px;
}

@media screen and (max-width: 768px) {
  .shop-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.shop-info__fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70%;
}

@media screen and (max-width: 768px) {
  .shop-info__fields {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .shop-info__fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.shop-form {
  width: 40%;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .shop-form {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .shop-form {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

.shop-form__capt {
  position: relative;
  display: block;
  width: 100%;
}

.shop-form__field {
  display: block;
  width: 100%;
  padding: 0.8125rem 1.75rem;
  border-radius: 50px;
  border: 1px solid #90939a;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: #e7eaef;
}

.shop-form__field::-webkit-input-placeholder,
.shop-form__field::-moz-placeholder,
.shop-form__field:-ms-input-placeholder,
.shop-form__field:-moz-placeholder {
  color: #90939a;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.shop-form__field:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
  box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
}

.shop-form__field:focus {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
  box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
  background-color: #fff;
}

.shop-form__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #90939a
}

.shop-basket {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8125rem 1.75rem;
  border-radius: 50px;
  border: 1px solid #90939a;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: #e7eaef;
}

.shop-basket:hover {
  color: #fff;
  background-color: #ec2a2b;
}

.shop-basket__pic {
  position: relative;
  padding: 0 1rem 0 0;
  margin-right: 1rem;
}

.shop-basket__pic:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  height: 150%;
  border-right: 1px solid #90939a;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.shop-basket:hover .shop-basket__pic:after {
  border-color: #fff;
}

.shop-info__auth,
.shop-info__enter,
.shop-info__reg {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #90939a;
}

.shop-info__enter {
  display: inline-block;
  padding: 0 3px;
}
/* ----- Корзина и регистрация ----- */

/* ----- Меню Каталога----- */
.catalog {
  margin-bottom: 70px;
}

.catalog__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 7.5px;
  margin: 0 -15px;
  list-style: none;
}

.catalog__item {
  width: -webkit-calc(12.5% - 15px);
  width: calc(12.5% - 15px);
  margin: 0 7.5px;
}

@media screen and (max-width: 960px) {
  .catalog__item {
    width: -webkit-calc(25% - 15px);
    width: calc(25% - 15px);
    margin: 0 7.5px 15px;
  }
}

@media screen and (max-width: 480px) {
  .catalog__item {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
}

.catalog__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  border: 1px solid #a1a7ad;
  text-decoration: none;
  color: #a1a7ad;
  background-color: #fff;
}

.catalog__link:hover {
  border-color: #ec2a2b;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.catalog__item_active .catalog__link {
  border-color: #ec2a2b;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.catalog__pic {
  width: 100%;
  padding-bottom: 70%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.4;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.catalog__link:hover .catalog__pic {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

.catalog__item_active .catalog__pic {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

.catalog__title {
  padding: 0 15px 15px;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-family: "Geometria", Arial, Sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #a1a7ad;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.catalog__link:hover .catalog__title {
  color: #ec2a2b;
}

.catalog__item_active .catalog__title {
  color: #ec2a2b;
}
/* ----- Меню Каталога ----- */

/* ----- Позиции каталога ----- */
.goods {
  margin-top: 20px;
}

.goods__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 5px;
  margin: 0 -15px;
  list-style: none;
}

.goods__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-calc(20% - 20px);
  width: calc(20% - 20px);
  margin: 0 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .goods__item {
    width: -webkit-calc(33.3% - 20px);
    width: calc(33.3% - 20px);
  }
}

@media screen and (max-width: 576px) {
  .goods__item {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .goods__item {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
}

.goods__item:hover {
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.4);
}

.goods__item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0%;
  border-bottom: 2px solid #ec2a2b;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.goods__item:hover:after {
  width: 100%;
}

.goods__pic {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.goods__pic-one,
.goods__pic-sec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.goods__pic-sec {
  visibility: hidden;
  opacity: 0;
}

.goods__item:hover .goods__pic-one_anim {
  visibility: hidden;
  opacity: 0;
}

.goods__item:hover .goods__pic-sec {
  visibility: visible;
  opacity: 1;
}

.goods__descr {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
}

.goods__title {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  text-transform: unset;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.goods__color {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 3px 0;
}

.goods__color a {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  border: 1px solid transparent;
  padding: 1.4px;
  text-decoration: none;
}

.goods__color a:last-of-type {
  margin-right: 0;
}

.goods__color a:hover {
  border-color: #a1a7ad;
}

.goods__color a.active {
  border-color: #ec2a2b;
}

.goods__color a span {
  display: block;
  width: 100%;
  height: 100%;
  border: 0.5px solid #d4d9dd;
}

.goods__price {
  text-align: center;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.goods__new,
.goods__hit,
.goods__raritet,
.goods__ekskluziv {
  position: absolute;
  top: 10px;
  left: -5px;
  z-index: 2;
  display: inline-block;
  padding: 3px 10px;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
}

.goods__new {
  background-color: #ec2a2b;
}

.goods__hit {
  background-color: #767b87;
}
.goods__raritet {
  background-color: #6a5f31;
}
.goods__ekskluziv {
	background: rgb(2,0,36);
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(76,57,144,1) 35%, rgba(229,36,150,1) 100%);
}


.goods__new+.goods__hit {
  top: 35px;
}

.goods__link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 0;
}
/* ----- Позиции каталога ----- */

/* ----- Карточка товара ----- */
.product-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.product-gallery {
  position: relative;
  width: 30%;
}

@media screen and (max-width: 768px) {
  .product-gallery {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .product-gallery {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.product-gallery__main-img {
  width: 100%;
  margin-bottom: 1rem;
}

.product-gallery__main-link {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  border: 0.5px solid #d4d9dd;
  text-decoration: none;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.product-gallery__wrap {
  position: relative;
}

.product-gallery__carousel-item {
  width: 100%;
}

.product-gallery__carousel-link {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  border: 0.5px solid #d4d9dd;
  text-decoration: none;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.product-gallery__carousel-link:hover {
  border-color: #ec2a2b;
}

.product-gallery__carousel-link.active-slide {
  border-color: #ec2a2b;
}

.product-gallery__prev,
.product-gallery__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #90939a;
  text-decoration: none;
}

.product-gallery__prev:hover,
.product-gallery__next:hover {
  color: #ec2a2b;
}

.product-gallery__prev {
  right: 100%;
}

.product-gallery__next {
  left: 100%;
}

.product-info {
  width: 70%;
  padding: 0 0 0 4rem;
}

@media screen and (max-width: 768px) {
  .product-info {
    width: 50%;
    padding: 0 0 0 2rem;
  }
}

@media screen and (max-width: 576px) {
  .product-info {
    width: 100%;
    padding: 0 0 0 0;
  }
}

.product-info__title {
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}

.product-info__material {
  margin-bottom: 30px;
}

.product-info__color,
.product-info__sizes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  color: #90939a
}

.product-info__color-btn,
.product-info__sizes-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1.5rem;
}

.product-info__color-btn a {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  border: 1px solid transparent;
  padding: 1.4px;
  text-decoration: none;
}

.product-info__color-btn a:hover {
  border-color: #a1a7ad;
}

.product-info__color-btn a.active {
  border-color: #ec2a2b;
}

.product-info__color-btn a span {
  display: block;
  width: 100%;
  height: 100%;
  border: 0.5px solid #d4d9dd;
}

.product-info__sizes-btn a {
  display: block;
  padding: 0 3px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

.product-info__sizes-btn a:hover {
  color: #ec2a2b;
}

.product-info__sizes-btn a.active {
  color: #ec2a2b;
}

.product-info__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-info__price {
  width: 100%;
  padding: 1rem 0;
  margin: 2rem 0;
  border-top: 1px solid #c2c9d1;
  border-bottom: 1px solid #c2c9d1;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}

.product-info__counter {
  display: block;
  width: 4rem;
  padding: 5px 10px;
  margin-right: 1rem;
  border: 1px solid #90939a;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #90939a;
}

.product-descr {
  margin-top: 40px;
}

.product-descr__title {
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #c2c9d1;
}

.order-in {
  pointer-events: none;
  background-color: #90939a;
}
/* ----- Карточка товара ----- */

/* ----- Плашка с доп информацией внизу магазина ----- */
.shop-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a1a7ad;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  .shop-help {
    flex-wrap: wrap;
  }
}

.help-menu__list {
  position: relative;
  display: flex;
  padding: 0 1rem;
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .help-menu__list {
    padding: 0;
  }
}

.help-menu__list:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  display: block;
  height: 150%;
  border-left: 1px solid #a1a7ad;
}

@media screen and (max-width: 768px) {
  .help-menu__list:before {
    display: none;
  }
}

.help-menu__item {
  position: relative;
}

.help-menu__item:after {
  content: "/";
  display: inline-block;
  margin: 0 0.3rem;
}

.help-menu__item:last-child:after {
  display: none;
}

.help__text a,
.help__link {
  display: inline-block;
  white-space: nowrap;
  color: #66696d;
}

.help__text a:hover,
.help__link:hover {
  color: #ec2a2b;
}
/* ----- Плашка с доп информацией внизу магазина ----- */

/* ----- Общие настройки модального окна ----- */
.modal-win {
  padding: 3.5rem;
  border: 1.5px solid #ec2a2b;
  border-radius: 10px;
  overflow: hidden;
}

.modal-win .error {
  display: none;
}

.modal-title {
  padding: 0;
  margin: 0 0 2rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Geometria", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.modal-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-btn .buy-btn {
  width: 14rem;
  white-space: nowrap;
}

.modal-btn .buy-btn:first-child {
  margin-right: 1rem;
}

.fancybox-close-small:hover {
  color: #ec2a2b;
}

@media screen and (max-width: 576px) {
  .modal-win {
    padding: 2.5rem;
  }

  .modal-title {
    margin: 0 0 1.5rem;
    font-size: 20px;
  }

  .modal-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .modal-btn .buy-btn:first-child {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}
/* ----- Общие настройки модального окна ----- */

/* ----- Модальное окно при авторизации ----- */
.modal-auth {
  max-width: 650px;
}

.modal-auth p {
  text-align: center;
}

.modal-auth .error {
  color: #ec2a2b;
}

.modal-auth__fields {
  margin-bottom: 1rem;
}

.modal-auth__capt {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.modal-auth__capt:last-child {
  margin-bottom: 0;
}

.modal-auth__field {
  display: block;
  width: 100%;
  padding: 0.75rem 1.125rem;
  border-radius: 50px;
  border: 1px solid #a1a7ad;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.modal-auth__field::-webkit-input-placeholder,
.modal-auth__field::-moz-placeholder,
.modal-auth__field:-ms-input-placeholder,
.modal-auth__field:-moz-placeholder {
  color: #90939a;
  font-family: "Geometria", Arial, sans-serif;
}

.modal-auth__field:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
  box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
}

.modal-auth__field:focus {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
  box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
}

.modal-auth .remind-btn {
  background-color: #90939a;
}

.modal-auth .remind-btn:hover {
  background-color: #898c92;
  -webkit-box-shadow: 0 0 20px 1px rgba(135, 135, 135, 0.3);
  box-shadow: 0 0 20px 1px rgba(135, 135, 135, 0.3);
}

.modal-auth .remind-btn:focus {
  background-color: #7d8088;
  -webkit-box-shadow: 0 0 5px 1px rgba(108, 108, 108, 0.5);
  box-shadow: 0 0 5px 1px rgba(108, 108, 108, 0.5);
}

.modal-auth .remind-btn:active {
  background-color: #6f7277;
  -webkit-box-shadow: 0 0 20px 3px rgba(113, 113, 113, 0.6);
  box-shadow: 0 0 20px 3px rgba(113, 113, 113, 0.6);
}

/* ----- Модальное окно при регистрации ----- */
.modal-reg {
  max-width: 600px;
}

.modal-reg p {
  text-align: center;
}

.modal-reg .error {
  color: #ec2a2b;
}

.modal-reg__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -7.5px;
}

.modal-reg__capt {
  display: block;
  width: -webkit-calc(100% - 15px);
  width: calc(100% - 15px);
  margin: 0 7.5px 15px;
}

.modal-reg__field {
  display: block;
  width: 100%;
  padding: 0.75rem 1.125rem;
  border-radius: 50px;
  border: 1px solid #a1a7ad;
  outline: none;
  font-family: "Geometria", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.modal-reg__field::-webkit-input-placeholder,
.modal-reg__field::-moz-placeholder,
.modal-reg__field:-ms-input-placeholder,
.modal-reg__field:-moz-placeholder {
  color: #90939a;
  font-family: "Geometria", Arial, sans-serif;
}

.modal-reg__field:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
  box-shadow: 0px 0px 10px 1px rgba(144, 147, 154, 0.5);
}

.modal-reg__field:focus {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
  box-shadow: 0px 0px 10px 1px rgba(104, 187, 242, 0.7);
}

.modal-reg__column {
  width: 50%;
}

@media screen and (max-width: 576px) {
  .modal-reg__column {
    width: 100%;
  }
}

.modal-reg__btn {
  width: 14rem;
  border: none;
  outline: none;
}

.modal-reg__note {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
}
/* ----- Модальное окно при регистрации ----- */

/* ----- Стили для внутренних ----- */

.news-inner__audio {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-bottom: 0.875rem;
}

.news-inner__audio_eng {
  margin-bottom: 0;
}

.active_tr{
 display: block; 
}
.hidde_tr, .hide_delivery{
 display: none;
}
#pochta::-webkit-input-placeholder {
    font-size: 11px;
}
.input_error{
	    border-color: red;
}
.demo {padding: 30px 0 0 0;font-size: 1rem;
font-weight: 600;
text-transform: uppercase;font-family: "Geometria", Arial, sans-serif;}

.demo a {text-transform:lowercase; font-family:"Roboto", Arial, sans-serif;}

@media screen and (max-width: 768px) {
  .demo  {
    text-align:center;;
  }
}
