@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
html,
body {
  margin: 0;
  padding: 0;
  height: 100%; }

body {
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #1a1a1a; }

article, footer, header, main, nav, section {
  display: block; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

h1 {
  font-weight: 500;
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 43px; }

h2 {
  color: #C6BD7B;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px; }

p {
  margin: 0 0 20px; }

ol, ul {
  margin: 0 0 20px; }

blockquote {
  margin: 0 0 20px; }

img {
  border: 0; }

a {
  color: #1a1a1a;
  text-decoration: none; }
  a:hover {
    color: #C6BD7B;
    text-decoration: underline; }
  a:focus {
    outline: none; }

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  outline: none; }

input:focus {
  outline: none; }

button {
  overflow: visible; }

textarea {
  overflow: auto; }

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

td,
th {
  padding: 0; }

.main-page {
  background-color: #f4f4f4; }

.layout {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.page-wrapper {
  padding: 0 10px;
  -ms-flex: 1;
  flex: 1; }
  @media (min-width: 768px) {
    .page-wrapper {
      padding: 0 15px; } }

.page-container {
  max-width: 1170px;
  margin: 0 auto;
  padding-bottom: 65px; }

.page-title {
  text-align: center;
  text-transform: uppercase; }
  .main-page .page-title {
    font-size: 34px;
    line-height: 32px; }

.header-section {
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.header {
  padding: 0 10px;
  background-color: #fff;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 46px; }
  @media (min-width: 768px) {
    .header {
      padding: 0 15px; } }
  @media (min-width: 1024px) {
    .header {
      background-color: transparent;
      padding-top: 23px; } }
  .header_wrapper {
    max-width: 1170px;
    margin: 0 auto;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative; }
    .header_wrapper::before {
      background-color: #fff;
      content: "";
      position: absolute;
      left: -50%;
      top: 0;
      width: 50%;
      height: 100%; }
  .header_logo {
    background: url("../img/logo_header.png") no-repeat 0 0;
    background-size: cover;
    width: 97px;
    height: 30px;
    display: block; }
    @media (min-width: 1024px) {
      .header_logo {
        width: 121px;
        height: 38px; } }
  .main-page .header {
    margin-bottom: 0; }
    @media (min-width: 1024px) {
      .main-page .header {
        background-color: transparent;
        padding-top: 0;
        position: absolute;
        top: 23px; } }

.toggle-menu {
  background: url("../img/icons/menu.svg") no-repeat center;
  padding: 0 10px;
  width: 22px;
  height: 40px;
  cursor: pointer;
  z-index: 1; }
  @media (min-width: 1024px) {
    .toggle-menu {
      display: none; } }
  .toggle-menu__open {
    background-image: url("../img/icons/close.svg"); }

.menu-block {
  display: none; }
  @media (min-width: 1024px) {
    .menu-block {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      margin-left: auto;
      position: relative; } }
  .menu-block__open {
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    width: 320px;
    padding: 40px 10px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media (min-width: 1024px) {
      .menu-block__open {
        padding: 0;
        position: relative;
        -ms-flex-direction: row;
        flex-direction: row;
        width: auto; } }

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none; }
  @media (min-width: 1024px) {
    .menu {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center; } }
  .menu_item:not(:first-child) {
    border-top: 1px solid #E8E8E8; }
    @media (min-width: 1024px) {
      .menu_item:not(:first-child) {
        border-top: none; } }
  .menu_item:hover .menu_link {
    border-color: #C6BD7B;
    color: #C6BD7B; }
  .menu_item:hover .submenu {
    box-sizing: border-box;
    width: 100%;
    display: block; }
    @media (min-width: 1024px) {
      .menu_item:hover .submenu {
        background: #fff;
        border: 1px solid #C6BD7B;
        position: absolute;
        margin-top: -1px; } }
  .menu_item__submenu:hover .menu_link {
    background-image: url("../img/icons/minus.svg");
    border-color: #fff;
    position: relative;
    z-index: 1; }
    @media (min-width: 1024px) {
      .menu_item__submenu:hover .menu_link {
        background-image: none;
        border-color: #C6BD7B;
        border-bottom-color: #fff; } }
  .menu_link {
    border: 1px solid #fff;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    padding: 12px 0 9px; }
    @media (min-width: 1024px) {
      .menu_link {
        font-size: 14px;
        padding: 12px 30px 11px; } }
    .menu_link:hover {
      background-color: #fff;
      border-color: #C6BD7B;
      text-decoration: none; }
    .menu_link__active {
      border-color: #C6BD7B;
      color: #C6BD7B; }
    .menu_item__submenu .menu_link {
      background: url("../img/icons/plus.svg") no-repeat right center; }
      @media (min-width: 1024px) {
        .menu_item__submenu .menu_link {
          background: none; } }
  .menu-block__open .menu {
    display: block;
    width: 100%; }
    @media (min-width: 1024px) {
      .menu-block__open .menu {
        display: -ms-flexbox;
        display: flex; } }

.menu-button {
  background-color: #C6BD7B;
  border: 1px solid #C6BD7B;
  font-size: 14px;
  padding: 0 23px;
  white-space: nowrap;
  line-height: 28px; }
  @media (min-width: 1024px) {
    .menu-button {
      display: none;
      line-height: 30px;
      padding: 12px 30px 11px; } }
  .menu-button:hover {
    background-color: #fff;
    text-decoration: none; }
  @media (min-width: 1024px) {
    .menu-block .menu-button {
      display: block; } }
  .menu-block__open .menu-button {
    display: none; }
    @media (min-width: 1024px) {
      .menu-block__open .menu-button {
        display: block; } }

.submenu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  columns: 2;
  padding: 0 0 10px; }
  @media (min-width: 1024px) {
    .submenu {
      columns: 3;
      padding: 34px 0; } }
  .submenu li {
    padding: 0; }
    @media (min-width: 1024px) {
      .submenu li {
        padding: 0 34px; } }
    .submenu li a:hover {
      font-weight: bold;
      text-decoration: none; }

.footer {
  background: url("../img/mount_bottom.png") no-repeat center top/auto 45px;
  padding-top: 45px; }
  @media (min-width: 768px) {
    .footer {
      background-size: auto 90px;
      box-sizing: border-box;
      padding-top: 90px;
      height: 209px; } }
  .footer_wrapper {
    padding: 0 10px;
    background-color: #fafafa;
    height: 100%; }
    @media (min-width: 768px) {
      .footer_wrapper {
        padding: 0 15px; } }
  .footer_container {
    max-width: 1170px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 15px; }
    @media (min-width: 768px) {
      .footer_container {
        -ms-flex-direction: row;
        flex-direction: row;
        padding-bottom: 0; } }
  .footer_logo {
    background: url("../img/logo_footer.png") no-repeat 0 0;
    width: 78px;
    height: 66px;
    display: block; }
  .footer_copyright {
    font-size: 10px;
    text-align: center;
    margin-top: 15px; }

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px; }
  @media (min-width: 768px) {
    .footer-menu {
      -ms-flex-direction: row;
      flex-direction: row;
      margin-left: 122px;
      margin-top: 0; } }
  @media (min-width: 768px) {
    .footer-menu_item:not(:first-child) {
      margin-left: 21px; } }
  .footer-menu_link {
    font-size: 12px; }
    .footer-menu_link:hover {
      text-decoration: none; }
    .footer-menu_link__button {
      background-color: #C6BD7B;
      border: 1px solid #C6BD7B;
      display: block;
      padding: 4px 30px; }
      @media (min-width: 768px) {
        .footer-menu_link__button {
          margin-right: 35px; } }
      .footer-menu_link__button:hover {
        background-color: #fff; }
    .footer-menu_link__active {
      color: #C6BD7B; }

.hero {
  padding: 0 10px;
  background: url("../img/bg_header.jpg") no-repeat center 0;
  background-size: cover;
  height: 300px; }
  @media (min-width: 768px) {
    .hero {
      padding: 0 15px; } }
  @media (min-width: 1024px) {
    .hero {
      height: 455px; } }
  .hero_wrapper {
    max-width: 1170px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%; }

.slogan {
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  line-height: 36px; }
  @media (min-width: 768px) {
    .slogan {
      font-size: 41px; } }
  .slogan span {
    font-size: 52px;
    font-weight: bold;
    line-height: 53px;
    display: block;
    margin-bottom: 12px; }
    @media (min-width: 768px) {
      .slogan span {
        font-size: 56px;
        margin-bottom: 5px; } }

.hero-content {
  padding: 0 10px;
  background: #fff url("../img/mount_top.jpg") no-repeat center bottom/auto 45px;
  padding-top: 20px;
  padding-bottom: 45px; }
  @media (min-width: 768px) {
    .hero-content {
      padding: 0 15px; } }
  @media (min-width: 768px) {
    .hero-content {
      background-size: auto 90px;
      padding-top: 55px;
      padding-bottom: 90px; } }
  .hero-content_wrapper {
    max-width: 1170px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media (min-width: 1024px) {
      .hero-content_wrapper {
        -ms-flex-direction: row;
        flex-direction: row; } }
  @media (min-width: 1024px) {
    .hero-content_left {
      -ms-flex-positive: 1;
      flex-grow: 1;
      padding-right: 130px; } }
  .hero-content_right {
    font-weight: bold;
    font-size: 26px;
    line-height: 32px;
    color: #C6BD7B; }
    @media (min-width: 1024px) {
      .hero-content_right {
        width: 370px;
        -ms-flex-negative: 0;
        flex-shrink: 0; } }

.brands {
  display: -ms-grid;
  display: grid;
  grid-gap: 3px; }
  @media (min-width: 768px) {
    .brands {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) {
    .brands {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  .brands_item {
    background-color: #fff;
    position: relative;
    height: 200px; }
    .brands_item:hover .brands_info {
      display: -ms-flexbox;
      display: flex; }
    .brands_item img {
      position: absolute;
      max-width: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .brands_info {
    background: #1A1A1A;
    box-shadow: 0 0 15px rgba(106, 106, 106, 0.44);
    display: none;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1; }
  .brands_descr {
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    padding: 25px 30px 0;
    max-height: 105px;
    overflow: hidden; }
    .brands_descr b {
      font-size: 18px;
      color: #C6BD7B; }
  .brands_detail {
    background-color: #C6BD7B;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    display: block;
    padding: 16px 0;
    margin-top: auto;
    text-align: center; }
    .brands_detail:hover {
      color: #fff;
      text-decoration: none; }

.work {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 768px) {
    .work {
      -ms-flex-direction: row;
      flex-direction: row; } }
  .work_left {
    text-align: center; }
    @media (min-width: 768px) {
      .work_left {
        -ms-flex-preferred-size: 340px;
        flex-basis: 340px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        text-align: left; } }
  .work_right {
    margin-top: 20px; }
    @media (min-width: 768px) {
      .work_right {
        padding-left: 60px;
        margin-top: 0; } }
  .work_slogan {
    margin-bottom: 65px; }
    .work_slogan span {
      color: #C6BD7B;
      line-height: 38px;
      display: block; }
      .work_slogan span:nth-child(1) {
        font-size: 26px; }
      .work_slogan span:nth-child(2) {
        font-size: 30px; }
      .work_slogan span:nth-child(3) {
        font-size: 34px; }

.form {
  width: 100%;
  max-width: 470px; }
  .form_row:not(:first-child) {
    margin-top: 11px; }
  .form label {
    display: block;
    font-size: 12px;
    line-height: 23px; }
  .form input,
  .form textarea {
    box-sizing: border-box;
    border: 1px solid #E8E8E8;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #6A6A6A;
    padding: 9px 10px; }
  .form textarea {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 125px; }

.wide-button {
  background: #C6BD7B;
  border: 1px solid #C6BD7B;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  width: 270px;
  padding: 8px 0 7px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .wide-button:hover {
    background-color: #fff; }

.contacts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 1024px) {
    .contacts {
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media (min-width: 1024px) {
    .contacts_left {
      -ms-flex-preferred-size: 470px;
      flex-basis: 470px;
      -ms-flex-negative: 0;
      flex-shrink: 0; } }
  .contacts_right {
    margin-top: 40px; }
    @media (min-width: 1024px) {
      .contacts_right {
        -ms-flex-preferred-size: 470px;
        flex-basis: 470px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0; } }
  .contacts_info {
    margin-bottom: 20px; }
  .contacts_tel {
    background: url("../img/icons/tel.svg") no-repeat left center;
    padding-left: 25px;
    padding-right: 15px;
    border-right: 1px solid #C6BD7B;
    margin-right: 15px; }
  .contacts_email {
    background: url("../img/icons/mail.svg") no-repeat left center;
    padding-left: 26px; }

.city {
  font-size: 12px; }

.shops {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 1024px) {
    .shops {
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media (min-width: 1024px) {
    .shops_left {
      -ms-flex-preferred-size: 470px;
      flex-basis: 470px;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      margin-right: 30px; } }
  .shops_right {
    margin-top: 40px; }
    @media (min-width: 1024px) {
      .shops_right {
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-top: 0; } }

.shop-list-wrapper {
  margin-top: 30px; }

.shop-list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .shop-list_item {
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -1px;
    position: relative;
    padding: 13px 16px 6px 0; }
    .shop-list_item:hover {
      border-top: 1px solid #C6BD7B;
      border-bottom: 1px solid #C6BD7B;
      z-index: 1; }
    .shop-list_item:last-child {
      border-bottom: none; }
  .shop-list_name {
    font-size: 14px;
    line-height: 23px;
    cursor: pointer;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 31px;
    position: relative; }
    .shop-list_name::after {
      background: url("../img/icons/arrow.svg") no-repeat;
      content: "";
      width: 11px;
      height: 5px;
      position: absolute;
      top: 12px;
      right: 20px;
      transition: transform .4s; }
    .shop-list_name__active::after {
      transform: rotate(180deg); }
  .shop-list_info {
    display: none; }
    .shop-list_info a:hover {
      color: #1a1a1a; }
  .shop-list_pin {
    background: url("../img/icons/pin.svg") no-repeat center 0;
    color: #6a6a6a;
    font-size: 10px;
    line-height: 21px;
    padding-top: 31px;
    cursor: pointer; }

.brand {
  margin-bottom: 40px; }
  .brand_logo {
    margin-bottom: 30px; }
    .brand_logo img {
      display: block;
      margin: 0 auto; }
  .brand_picture {
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px; }
    @media (min-width: 1024px) {
      .brand_picture {
        height: 455px; } }

.brand-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 768px) {
    .brand-content {
      -ms-flex-direction: row;
      flex-direction: row; } }
  .brand-content_left {
    -ms-flex-positive: 1;
    flex-grow: 1; }
    @media (min-width: 768px) {
      .brand-content_left {
        padding-right: 130px; } }
  .brand-content_right {
    width: 170px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 auto; }
  .brand-content h1 {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #C6BD7B;
    margin-bottom: 20px; }

.brand-btn {
  background: #C6BD7B;
  border: 1px solid #C6BD7B;
  box-sizing: border-box;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  padding: 18px 0 17px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .brand-btn:hover {
    background-color: transparent;
    border-color: #1A1A1A;
    color: #1A1A1A;
    text-decoration: none; }
  .brand-btn:not(:first-child) {
    margin-top: 30px; }

.slider-wrapper {
  margin-bottom: 80px; }

.slider-title {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 43px;
  text-align: center;
  text-transform: uppercase; }

.slider {
  position: relative; }
  .slider_item {
    box-sizing: border-box;
    width: 300px;
    padding: 0 15px; }

.slick-slide:focus {
  outline: none; }

@media (min-width: 768px) {
  .slick-arrow {
    content: "";
    background-color: rgba(255, 255, 255, 0.3);
    background-repeat: no-repeat;
    border: none;
    font-size: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    width: calc((100% - 1170px) / 2);
    height: 100%;
    min-width: 50px;
    cursor: pointer; } }

@media (min-width: 768px) {
  .slick-arrow::after {
    background-position: center center;
    background-repeat: no-repeat;
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0; } }

.slick-prev {
  left: 0; }
  @media (min-width: 768px) {
    .slick-prev::after {
      background-image: url("../img/icons/prev.svg");
      right: -30px; } }

.slick-next {
  right: 0; }
  @media (min-width: 768px) {
    .slick-next::after {
      background-image: url("../img/icons/next.svg");
      left: -30px; } }

.dilers .form {
  margin: 0 auto; }
