@charset "UTF-8";
/* cyrillic */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Rubik Light"), local("Rubik-Light"), url(../fonts/Rubik-Light.ttf) format("truetype"); }

/* cyrillic */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Rubik Regular"), local("Rubik-Regular"), url(../fonts/Rubik-Regular.ttf) format("truetype"); }

/* cyrillic */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Rubik Medium"), local("Rubik-Medium"), url(../fonts/Rubik-Medium.ttf) format("truetype"); }

/* cyrillic */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Rubik Bold"), local("Rubik-Bold"), url(../fonts/Rubik-Bold.ttf) format("truetype"); }

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

body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 18px;
  padding-top: 120px;
  min-height: 100vh;
  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;
  line-height: 1.4; }
  body:before {
    content: ''; }

.img-wrap img {
  max-width: 100%;
  max-height: 100%; }

svg {
  max-width: 100%;
  max-height: 100%; }

.btn-reset, .btn-reset:focus, .btn-reset:hover, .btn-reset:active {
  border: none;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  background: none; }

.container {
  margin: 0 auto;
  width: 1200px;
  padding: 0 15px;
  max-width: calc(100% - 30px); }
  @media (max-width: 767px) {
    .container {
      max-width: 100%; } }

.header {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #ffffff; }
  .header > .container {
    height: 90px;
    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;
    background-color: #fff; }
  .header .top-line {
    width: 100%;
    background-color: #e3c1aa;
    position: relative;
    z-index: 1111; }
    .header .top-line .container {
      height: 30px;
      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; }
    .header .top-line__mail {
      text-decoration: none;
      color: #461202;
      font-family: Roboto;
      font-size: 14px;
      font-weight: 400; }
      @media (max-width: 500px) {
        .header .top-line__mail {
          display: none; } }
      .header .top-line__mail:hover {
        text-decoration: underline; }
    .header .top-line__phone {
      text-decoration: none;
      color: #461202;
      font-family: Roboto;
      font-size: 16px;
      font-weight: 700; }
      .header .top-line__phone:hover {
        text-decoration: underline; }
  .header__nav {
    width: 75%; }
    .header__nav ul {
      width: 100%;
      margin: 0;
      padding: 0;
      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;
      list-style-type: none;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .header__nav ul li a {
        color: #333333;
        font-family: Roboto;
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        display: inline-block;
        vertical-align: middle; }
        .header__nav ul li a:hover {
          text-decoration: underline; }
    @media (max-width: 767px) {
      .header__nav {
        position: absolute;
        z-index: -1;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 15px;
        background-color: #fff;
        -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .header__nav.open {
          -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
          transform: translateY(0); }
        .header__nav ul {
          -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; }
          .header__nav ul li {
            margin: 7px 15px; } }
  .header__mobile-btn {
    position: relative;
    z-index: 5;
    cursor: pointer; }
    .header__mobile-btn:active {
      opacity: 0.5; }
    .header__mobile-btn svg {
      width: 36px;
      height: 36px;
      fill: #774D31; }
    @media (min-width: 768px) {
      .header__mobile-btn {
        display: none; } }

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

.footer {
  background-image: url(../img/footer-bg.png);
  background-size: auto 100%;
  background-position: 50% 50%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); }
  .footer-margin {
    height: 120px; }
  .footer .container {
    padding-top: 45px;
    padding-bottom: 45px;
    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; }
    .footer .container .col {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 230px;
      -ms-flex: 0 0 230px;
      flex: 0 0 230px; }
      .footer .container .col:nth-child(2) {
        text-align: center; }
      .footer .container .col:nth-child(3) {
        text-align: right; }
  .footer__logo {
    margin-bottom: 30px; }
  .footer__address {
    color: #ffffff;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700; }
  .footer__nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .footer__nav ul li {
      margin: 5px 0; }
      .footer__nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-family: Roboto;
        font-size: 14px;
        font-weight: 700; }
        .footer__nav ul li a:hover {
          text-decoration: underline; }
  .footer__phone {
    text-decoration: none;
    color: #ffffff;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px; }
    .footer__phone:hover {
      text-decoration: underline; }
  .footer__mail {
    text-decoration: none;
    color: #ffffff;
    font-family: Roboto;
    font-size: 24px;
    font-size: 18px;
    display: inline-block; }
    .footer__mail:hover {
      text-decoration: underline; }
  @media (max-width: 991px) {
    .footer__phone {
      font-size: 20px;
      margin-bottom: 15px; }
    .footer__mail {
      font-size: 16px; } }
  @media (max-width: 767px) {
    .footer .container .col {
      -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
      flex-basis: auto; }
    .footer__nav {
      display: none; } }
  @media (max-width: 500px) {
    .footer .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      .footer .container .col {
        text-align: center; }
        .footer .container .col:nth-child(3) {
          text-align: center; }
    .footer__phone {
      margin-top: 30px; } }

h2 {
  color: #333333;
  font-family: Roboto;
  font-size: 36px;
  font-weight: 700; }

.mr-30 {
  margin-right: 30px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-60 {
  margin-bottom: 60px; }

.btn {
  display: inline-block;
  vertical-align: middle;
  min-width: 255px;
  height: 45px;
  border-radius: 6px;
  background-color: #774d31;
  color: #ffffff;
  font-family: Roboto;
  font-size: 18px;
  line-height: 25px;
  padding: 10px 15px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s; }
  .btn:hover {
    background-color: #8C694D; }

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

.main-about {
  padding: 45px 0 60px;
  text-align: center; }
  .main-about__description {
    margin: 10px 0 30px; }
  @media (max-width: 767px) {
    .main-about a.btn {
      margin: 7px 15px !important; } }

.contacts {
  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; }
  .contacts__map {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 70%;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
    padding-right: 30px; }
    .contacts__map iframe {
      width: 100%; }
  .contacts__info {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 30%;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%; }
  @media (max-width: 767px) {
    .contacts {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
      .contacts__map {
        padding-right: 0;
        margin-top: 30px; } }

.materials {
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  grid-column-gap: 30px;
  grid-row-gap: 45px; }
  .materials .material__img {
    width: 250px;
    height: 150px;
    margin-bottom: 15px; }
    .materials .material__img img {
      max-width: 100%;
      max-height: 100%; }
  .materials .material__title {
    text-align: center;
    color: #000000;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 700; }

.about img {
  max-width: 100%; }

.about .text-center, .about-text {
  width: 730px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; }
  .about .text-center p, .about-text p {
    text-indent: 45px; }

.about-1 {
  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; }
  .about-1 img {
    margin-right: 30px; }
  @media (max-width: 767px) {
    .about-1 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
      .about-1 img {
        margin-right: 0;
        margin-top: 30px; } }

.slide {
  position: relative; }
  .slide__img {
    height: 340px;
    width: 100%;
    overflow: hidden; }
    @media (max-width: 767px) {
      .slide__img {
        height: auto;
        max-height: 340px; } }
    .slide__img img {
      -o-object-fit: cover;
      object-fit: cover;
      width: 100%;
      -o-object-position: 50% 50%;
      object-position: 50% 50%;
      max-width: 100%;
      max-height: 100%; }
  .slide__text {
    display: none;
    text-align: center;
    padding: 30px 60px;
    position: absolute;
    z-index: 2;
    background-color: rgba(70, 18, 2, 0.8);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 400; }
    .slide__text big {
      color: #ffffff;
      font-size: 36px;
      font-weight: 700; }

.slick-dots {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .slick-dots li {
    line-height: 0; }
    .slick-dots li button {
      font-size: 0;
      padding: 0;
      margin: 4px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background-color: #F2E0D6;
      -webkit-box-shadow: 0 0 5px 0px #774D31;
      box-shadow: 0 0 5px 0px #774D31; }
  .slick-dots .slick-active {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4); }

.main-categories {
  margin-top: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .main-categories__item {
    width: 33.333%;
    height: 180px;
    position: relative;
    font-size: 0;
    overflow: hidden; }
    @media (max-width: 1200px) {
      .main-categories__item {
        width: 50%; } }
    @media (max-width: 767px) {
      .main-categories__item {
        width: 100%; } }
    .main-categories__item:hover .main-categories__item-inner {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0); }
    .main-categories__item img {
      -o-object-fit: cover;
      object-fit: cover;
      width: 100%;
      min-height: 100%;
      -o-object-position: 50% 50%;
      object-position: 50% 50%;
      max-width: 100%;
      max-height: 100%; }
    .main-categories__item-icon {
      position: absolute;
      z-index: 2;
      top: 30px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 100px;
      height: 90px;
      fill: white; }
    .main-categories__item-title {
      position: absolute;
      z-index: 3;
      bottom: 15px;
      left: 0;
      right: 0;
      text-align: center;
      color: #ffffff;
      font-family: Roboto;
      font-size: 24px;
      font-weight: 700;
      text-shadow: 0 0 15px #000; }
    .main-categories__item-inner {
      padding-top: 10px;
      padding-bottom: 20px;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 10;
      background-color: #E3C1AA;
      text-align: center;
      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: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
      transform: translateY(100%);
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .main-categories__item-inner-title {
        width: 100%;
        color: #ffffff;
        color: #774D31;
        font-family: Roboto;
        font-size: 14px;
        font-weight: 700; }
      .main-categories__item-inner-link {
        width: 50%;
        padding: 2px 10px;
        color: #ffffff;
        color: #774D31;
        font-family: Roboto;
        font-size: 13px;
        font-weight: 400;
        text-decoration: none; }
        .main-categories__item-inner-link:hover {
          text-decoration: underline; }

.benefits {
  background-image: url(../img/benefits-bg.png);
  background-position: 50% 50%;
  padding-top: 45px;
  padding-bottom: 45px; }
  .benefits h2 {
    color: #ffffff;
    font-family: Roboto;
    font-size: 36px;
    font-weight: 700;
    text-align: center; }
  .benefits__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-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;
    margin: 45px -15px 0; }
  .benefits .benefit {
    text-align: center;
    margin: 15px;
    position: relative;
    width: 255px;
    height: 240px;
    border-radius: 6px;
    background-color: #f2e0d6; }
    .benefits .benefit:before {
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      top: 30px;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 120px;
      height: 120px;
      background-color: #e3c1aa;
      border-radius: 50%; }
    .benefits .benefit__icon {
      text-align: center;
      position: relative;
      z-index: 5;
      margin: 30px auto;
      width: 130px;
      height: 130px; }
    .benefits .benefit__title {
      position: absolute;
      top: 200px;
      left: 15px;
      right: 15px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      color: #000000;
      font-family: Roboto;
      font-size: 18px;
      line-height: 20px;
      font-weight: 700; }

.catalog {
  margin: 30px 0;
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(250px, 270px));
  grid-auto-flow: dense;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .catalog-item {
    height: 315px;
    border-radius: 6px;
    background-color: #f2e0d6;
    text-align: left;
    padding: 15px;
    position: relative;
    overflow: hidden; }
    .catalog-item__toggle {
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transition: 0.15s;
      -o-transition: 0.15s;
      transition: 0.15s;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      z-index: 15;
      border-radius: 0 0 15px 15px;
      height: 30px;
      background-color: #461202;
      width: 120px;
      line-height: 30px;
      text-align: center;
      color: #ffffff;
      font-family: Roboto;
      font-size: 12px;
      font-weight: 700; }
      @media (min-width: 768px) {
        .catalog-item__toggle {
          -webkit-transform: translate(-50%, -100%);
          -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%); } }
      .catalog-item__toggle:before {
        content: 'Подробнее'; }
    .catalog-item__articule {
      position: absolute;
      z-index: 2;
      top: 195px;
      right: 15px;
      color: #000000;
      font-family: Roboto;
      font-size: 11px;
      font-weight: 300;
      padding: 0 5px;
      height: 15px;
      background-color: rgba(255, 255, 255, 0.25); }
    .catalog-item__img {
      height: 195px;
      border-radius: 6px;
      background-color: #ffffff; }
      .catalog-item__img .img-wrap {
        text-align: center;
        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; }
      .catalog-item__img img {
        max-width: 100%;
        max-height: 100%; }
      .catalog-item__img .slick-list,
      .catalog-item__img .slick-track {
        max-height: 100%;
        height: 100% !important; }
      .catalog-item__img .slick-arrow {
        position: absolute;
        width: 24px;
        height: 24px;
        z-index: 3;
        top: 50%;
        -webkit-transition: 0.15s;
        -o-transition: 0.15s;
        transition: 0.15s; }
        .catalog-item__img .slick-arrow.slick-disabled {
          pointer-events: none;
          opacity: 0.4; }
      .catalog-item__img .slick-prev {
        left: 5px;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg); }
        .catalog-item__img .slick-prev:hover {
          -webkit-transform: rotate(-90deg) scale(1.3);
          -ms-transform: rotate(-90deg) scale(1.3);
          transform: rotate(-90deg) scale(1.3); }
      .catalog-item__img .slick-next {
        right: 5px;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg); }
        .catalog-item__img .slick-next:hover {
          -webkit-transform: rotate(90deg) scale(1.3);
          -ms-transform: rotate(90deg) scale(1.3);
          transform: rotate(90deg) scale(1.3); }
    .catalog-item__title {
      margin-top: 10px;
      color: #000000;
      font-family: Roboto;
      font-size: 16px;
      font-weight: 700;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      max-height: 44px; }
    .catalog-item__old-price {
      color: #777777;
      font-family: Roboto;
      font-size: 14px;
      font-weight: 400;
      text-decoration: line-through;
      position: absolute;
      left: 15px;
      right: 15px;
      bottom: 30px; }
      .catalog-item__old-price + .catalog-item__price {
        color: #ff0000; }
    .catalog-item__price {
      color: #461202;
      font-family: Roboto;
      font-size: 18px;
      font-weight: 700;
      position: absolute;
      left: 15px;
      bottom: 8px;
      right: 15px; }
    .catalog-item__description {
      position: absolute;
      z-index: 11;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #fef2da;
      padding: 40px 15px 15px;
      overflow: auto;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
      transform: translateY(100%); }
      .catalog-item__description-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px; }
      .catalog-item__description-text {
        font-size: 12px;
        font-weight: 300; }
    .catalog-item:hover .catalog-item__toggle {
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
    .catalog-item.open .catalog-item__toggle:before {
      content: 'Скрыть'; }
    .catalog-item.open .catalog-item__description {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0); }

.categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .categories__item {
    width: 33.33%;
    padding-left: 75px;
    padding-right: 30px;
    margin-bottom: 60px;
    position: relative;
    text-align: left; }
    @media (max-width: 1200px) {
      .categories__item {
        width: 50%; } }
    @media (max-width: 767px) {
      .categories__item {
        width: 100%; } }
    .categories__item-icon {
      width: 60px;
      height: 60px;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2; }
      .categories__item-icon svg {
        width: 60px;
        height: 60px;
        fill: #774D31; }
      .categories__item-icon:before {
        content: '';
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 50%;
        background-color: #F2E0D6; }
    .categories__item-title {
      font-size: 24px;
      font-weight: bold;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      min-height: 60px;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
    .categories__item-list {
      margin-top: 15px;
      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-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .categories__item-list a {
        text-decoration: none;
        color: #000; }
        .categories__item-list a:hover {
          text-decoration: underline; }
