@charset "UTF-8";
.search, .menu {
  width: 100%;
  position: fixed;
  background-color: rgba(42, 43, 41, 0.92);
  left: 0;
  top: 0;
  height: 100%;
  color: #fff;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  padding: 50px 30px 30px;
  z-index: 2;
  font-weight: 300;
  pointer-events: none;
  transition: 0.1s;
  transform: translateY(-100%);
}

body.search-opened .search, body.menu-opened .menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search__input {
  border: none;
  outline: none;
  flex: 1;
  height: 50px;
  background-color: transparent;
}
.search__input::-moz-placeholder {
  color: #adadaa;
  opacity: 0.7;
}
.search__input::placeholder {
  color: #adadaa;
  opacity: 0.7;
}

.auth__row, label[for^=auth__] {
  display: flex;
  justify-content: space-between;
}

.auth__btn, .btn {
  background: #FFF;
  color: #4E5F16;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  flex: 0 0 100%;
  font-weight: bold;
  font-size: 12px;
  transition: 0.1s;
  border: 1px solid #93af2a;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.2s;
  padding: 2px 0 0;
}
.auth__btn:hover, .btn:hover {
  background-color: #FFF;
  color: #93af2a;
}
@media (min-width: 767px) {
  .auth__btn, .btn {
    height: 50px;
  }
}

.auth__close:before, .auth__close:after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.auth__close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.auth__close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

::root {
  --treez-primary-color: map-get($color, white);
  --treez-accent-color: map-get($color, green);
  --treez-accent-color-shade: map-get($color, lightGreen);
  --treez-contrast-color: #000000;
  --treez-space-normal: 15px;
  --treez-fs-normal: 14px;
  --treez-lh-normal: 1.15em;
  --treez-font-condensed: map-get($font, condensed);
  --treez-font-heading: map-get($font, heading);
  --treez-font-default: map-get($font, default);
}

body {
  font-size: 14px;
  font-family: "Verdana", "Arial", "sans-serif";
  margin: 0;
  color: #000;
  font-weight: 400;
  background-color: #FFF;
  overflow-x: hidden;
}
body a {
  color: inherit;
}

* {
  font-size: inherit;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: inherit;
  line-height: 1.4em;
  text-decoration: none;
  z-index: -1;
  position: relative;
}

input,
textarea {
  font-family: "Verdana", "Arial", "sans-serif";
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
}

li {
  display: inline-block;
}

img {
  height: auto;
  -o-object-position: center;
     object-position: center;
  max-width: 100%;
}

figure {
  max-width: 100%;
  width: 100%;
}

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

.d-none {
  display: none;
}

.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.disabled {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

.dt,
.dd {
  display: inline;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 14px;
}

.dt {
  color: #717171;
}

.table {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 12px;
  text-align: left;
  width: 100%;
}
.table thead {
  font-size: 12px;
  text-transform: uppercase;
}
.table thead th {
  padding: 10px 7px;
}
.table thead th:not(:last-child) {
  border-right: 1px solid #ebebeb;
}
.table tbody td {
  padding: 10px 7px;
  border-top: 1px solid #ebebeb;
}
.table tbody td:not(:last-child) {
  border-right: 1px solid #ebebeb;
}
.table a {
  z-index: 1;
}
.table a:not(.btn) {
  font-weight: bold;
  color: #93af2a;
}
.table a.btn {
  font-size: 0.8em;
  padding: 0 10px;
  color: #FFF;
  background-color: #93af2a;
  height: 32px;
}

body.header-fixed:not(.header-showed, .search-opened) header {
  position: fixed;
  transform: translateY(-100%);
}
body.header-fixed.menu-opened header, body.header-fixed.header-showed header {
  transform: translateY(0);
  background-color: #373836;
}

.header {
  position: fixed;
  display: flex;
  padding: 0 15px;
  z-index: 3;
  width: 100%;
  justify-content: space-between;
  height: 50px;
  align-items: center;
  left: 0;
  top: 0;
  transition: 1s;
}

.header__logo-image {
  max-width: 45px;
}

.header__catalog,
.header__phone {
  display: none;
}

.header__menu-btn {
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: relative;
  margin: 0 0 0 10px;
}
.header__menu-btn:before, .header__menu-btn:after {
  content: "";
  width: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: block;
  transition: 0.1s;
}
.header__menu-btn:before {
  height: 2px;
  background-color: #d5fe67;
}
.header__menu-btn:after {
  height: 10px;
  border-top: 2px solid #d5fe67;
  border-bottom: 2px solid #d5fe67;
}
.header__menu-btn:hover:before {
  background-color: #FFF;
}
.header__menu-btn:hover:after {
  border-top: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}

.header__left,
.header__right {
  display: flex;
  align-items: center;
}
.header__left > *,
.header__right > * {
  transition: 0.3s;
}

.header__left {
  font-size: 0;
}
.header__left .icon-phone {
  display: none;
}

.header__cart,
.header__search,
.header__heart,
.header__user {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 2px;
  cursor: pointer;
  padding: 4px;
}
.header__cart svg,
.header__search svg,
.header__heart svg,
.header__user svg {
  fill: #fff;
  transition: 0.1s;
}
.header__cart svg use,
.header__search svg use,
.header__heart svg use,
.header__user svg use {
  transform: translateX(3px) translateY(3px);
}
.header__cart:hover svg,
.header__search:hover svg,
.header__heart:hover svg,
.header__user:hover svg {
  fill: #d5fe67;
}

.header__heart svg use {
  transform: translateX(2px) translateY(2px);
}

.header__heart,
.header__cart {
  font-size: 0;
}

.header__lang-switcher {
  text-transform: uppercase;
  font-family: "Verdana", "Arial", "sans-serif";
  font-size: 12px;
  display: flex;
  color: #93af2a;
  font-weight: bold;
  margin: 0 4px;
  pointer-events: none;
}
.header__lang-switcher a, .header__lang-switcher span {
  color: #FFF;
  font-weight: normal;
  padding: 0 4px;
  transition: 0.2s;
}
.header__lang-switcher span {
  opacity: 0.5;
}
.header__lang-switcher a {
  pointer-events: auto;
}
.header__lang-switcher a:hover {
  color: #93af2a;
}

a.header__user {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.2s;
}
a.header__user .icon-user {
  fill: #d5fe67;
}
a.header__user:hover {
  background-color: #93af2a;
}
a.header__user:hover .icon-user {
  fill: #FFF;
}

.header__heart:after,
.header__cart:after {
  content: attr(data-count);
  position: absolute;
  top: 3px;
  font-size: 9px;
  right: 0;
  display: block;
  font-weight: bold;
  color: #d5fe67;
}

@media (min-width: 420px) {
  .header__menu-btn {
    margin: 0 0 0 25px;
  }
  .header__cart,
.header__search,
.header__heart,
.header__user {
    margin: 0 6px;
  }
  .header__lang-switcher {
    margin: 0 15px;
  }
}
@media (min-width: 767px) {
  .header .icon-phone {
    width: 20px;
    fill: #adadaa;
    margin: 0 0 0 38px;
    display: block;
  }
  .header .icon-phone use {
    transform: translateX(4px) translateY(4px);
  }
  .header__catalog {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    margin: 0 0 0 15px;
    color: #d5fe67;
    font-size: 12px;
  }
  .header__catalog .icon-flower {
    width: 36px;
    height: 36px;
    fill: #FFF;
  }
  .header__catalog .icon-flower use {
    transform: translateX(7px) translateY(6px);
  }
  .header__catalog:hover {
    color: #FFF;
  }
  .header__left {
    font-size: 12px;
    color: #adadaa;
    font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
    letter-spacing: 0.04em;
    font-weight: 300;
  }
  .header__phone {
    display: inline-block;
    white-space: pre;
    margin: 0 5px;
    color: #FFF;
    transition: 0.3s;
  }
  .header__phone:hover {
    color: #d5fe67;
  }
}
@media (min-width: 1240px) {
  .header {
    padding: 0 30px;
    height: 70px;
  }
  .header .icon-phone {
    width: 24px;
  }
  .header__logo-image {
    max-width: 60px;
    width: 60px;
  }
  .header__menu-btn:before, .header__menu-btn:after {
    width: 20px;
  }
  .header__menu-btn:after {
    height: 11px;
  }
  .header__cart,
.header__search,
.header__heart,
.header__user {
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
  .header__lang-switcher {
    font-size: 14px;
  }
  .header__left {
    font-size: 14px;
  }
  a.header__user {
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 1580px) {
  .header {
    padding: 0 80px;
  }
}
.page-heading {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  padding: 30px 15px 0;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  line-height: 1.15em;
}

@media (min-width: 767px) {
  .page-heading {
    font-size: 24px;
    padding: 45px 60px 0;
  }
}
@media (min-width: 1241px) {
  .page-heading {
    font-size: 28px;
    padding: 60px 130px 0;
  }
}
@media (min-width: 1580px) {
  .page-heading {
    padding: 80px 180px 0;
  }
}
@media (min-width: 1601px) {
  .page-heading {
    font-size: 34px;
  }
}
.screen-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.screen-slider .slider-container {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
}
.screen-slider .slider-nav {
  display: none;
}
.screen-slider .slider-indicators {
  display: flex;
  justify-content: flex-start;
  left: 10px;
  margin: 0;
  bottom: 30px;
}
.screen-slider .slider-indicators > * {
  border: none !important;
  box-sizing: border-box;
  background-color: transparent;
  width: auto;
  height: auto;
  color: #FFF;
  padding: 5px !important;
  font-weight: 700;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  opacity: 1 !important;
}
.screen-slider .slider-indicators > *.active {
  color: #d5fe67;
}
.screen-slider .slider-indicators > *:hover {
  color: #d5fe67;
}

.screen-slider__image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.7;
  pointer-events: none;
}

.screen-slider__item {
  min-height: 100vh;
  max-height: 100vh;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  background-color: rgb(0, 0, 0);
  color: #fff;
  z-index: 1;
}

.screen-slider__title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: left;
}

.screen-slider__desc {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-weight: 400;
  font-size: 24px;
  text-align: left;
  margin: 15px 0 0;
  letter-spacing: 0.01em;
}
.screen-slider__desc br {
  display: none;
}

.screen-slider__link {
  text-align: left;
  margin: 15px 0 0;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: #d5fe67;
  letter-spacing: 0.05em;
}
.screen-slider__link .icon-flower {
  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
  fill: #FFF;
}
.screen-slider__link a {
  z-index: 1;
  transition: 0.2s;
  padding: 15px 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: table;
}
.screen-slider__link a:hover {
  color: #FFF;
}

@media (min-width: 767px) {
  .screen-slider .slider-indicators {
    left: 60px;
  }
  .screen-slider__desc {
    font-size: 36px;
  }
  .screen-slider__content {
    padding: 0 130px 0 0;
  }
  .screen-slider__link {
    margin: 40px 0 0;
  }
  .screen-slider__link a {
    padding: 15px 60px 0 0;
  }
  .screen-slider__title {
    font-size: 14px;
  }
  .screen-slider__item {
    padding: 0 60px;
  }
}
@media (min-width: 991px) {
  .screen-slider .slider-indicators {
    left: auto;
    right: 78px;
  }
  .screen-slider .slider-indicators > * {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 15px;
  }
  .screen-slider .slider-indicators > *:after {
    content: "";
    display: block;
    width: 1px;
    height: 0;
    background-color: #FFF;
    margin: 0 auto;
    transition: 0.3s;
    opacity: 0.5;
  }
  .screen-slider .slider-indicators > *.active:after {
    height: 45px;
    margin: 5px auto;
  }
  .screen-slider__item {
    padding: 0 100px;
  }
  .screen-slider__content {
    padding: 0 270px 0 0;
  }
  .screen-slider__content:after {
    right: -30px;
  }
}
@media (min-width: 1241px) {
  .screen-slider__item {
    padding: 0 130px;
  }
  .screen-slider__desc {
    font-size: 44px;
  }
  .screen-slider__title {
    font-size: 16px;
  }
  .screen-slider .slider-indicators {
    left: auto;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    margin: 0;
  }
  .screen-slider .slider-indicators > * {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: 10px 0;
    align-items: center;
  }
  .screen-slider .slider-indicators > *:after {
    content: "";
    display: block;
    height: 1px;
    width: 0;
    margin: 0;
  }
  .screen-slider .slider-indicators > *.active:after {
    height: 1px;
    width: 120px;
    margin: 0 0 0 8px;
  }
}
@media (min-width: 1580px) {
  .screen-slider__item {
    padding: 0 180px;
  }
  .screen-slider__title {
    font-size: 18px;
  }
}
@media (min-width: 1601px) {
  .screen-slider__desc {
    font-size: 72px;
  }
  .screen-slider__title {
    font-size: 20px;
  }
  .screen-slider__link {
    margin: 85px 0 0;
  }
}
.about {
  padding: 45px 15px;
}
.about > * {
  z-index: 0;
}

.about__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
}

.about__left,
.about__subtitle,
.about__title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-weight: 400;
}

.about__title {
  font-size: 13px;
  text-transform: uppercase;
}

.about__subtitle {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.2em;
  opacity: 0.85;
}

.about__left {
  font-size: 18px;
  margin: 20px 0 0;
}
.about__left ul {
  font-style: italic;
  margin: 5px 0 0;
}
.about__left ul li {
  display: flex;
}
.about__left ul li:before {
  content: "";
  height: 1px;
  min-width: 12px;
  max-width: 12px;
  background-color: #000;
  margin: 12px 5px 0 0;
  display: block;
}
.about__left a {
  display: table;
  margin: 20px 0 0;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.1s;
}
.about__left a:hover {
  color: #93af2a;
}
.about__left a:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 6px solid #93af2a;
  border-bottom: 5px solid transparent;
  margin: 0 15px 0 0;
  display: inline-block;
}

.about__right {
  margin: 20px 0 0;
}
.about__right li {
  display: flex;
  line-height: 1.6em;
  margin: 5px 0;
}
.about__right li:before {
  content: "";
  height: 1px;
  min-width: 12px;
  max-width: 12px;
  background-color: #000;
  margin: 12px 5px 0 0;
  display: block;
}

.about__desc {
  line-height: 1.6em;
  margin: 20px 0 0;
  font-size: 14px;
  opacity: 0.8;
}

@media (min-width: 767px) {
  .about {
    padding: 60px 30% 60px 60px;
    display: flex;
    flex-wrap: wrap;
  }
  .about:before {
    content: "";
    position: absolute;
    box-shadow: inset 600px 13px 125px 71px #FFF;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
  }
  .about__image {
    width: 50%;
    opacity: 1;
  }
  .about__subtitle {
    font-size: 26px;
  }
  .about__desc,
.about__title,
.about__subtitle {
    min-width: 100%;
  }
  .about__right,
.about__left {
    width: 50%;
    margin: 45px 0 0;
  }
  .about__desc {
    margin: 45px 0 0;
  }
  .about__title {
    font-size: 14px;
  }
}
@media (min-width: 991px) {
  .about:before {
    box-shadow: inset 900px 13px 125px 71px #FFF;
  }
  .about__subtitle {
    font-size: 32px;
  }
}
@media (min-width: 1241px) {
  .about {
    padding: 80px 45% 80px 130px;
  }
  .about:before {
    box-shadow: inset 1000px 13px 125px 71px #FFF;
  }
}
@media (min-width: 1580px) {
  .about {
    padding: 120px 45% 120px 180px;
  }
}
@media (min-width: 1601px) {
  .about__subtitle {
    font-size: 48px;
  }
}
.heading {
  padding: 18% 15px 15%;
}

.breadcrumbs {
  bottom: 30px;
}

@media (min-width: 420px) {
  .heading {
    padding: 15% 15px;
  }
}
@media (min-width: 767px) {
  .heading {
    padding: 10% 15px;
  }
}
.categories-cards {
  display: flex;
  overflow: auto;
  padding: 0 0 4px;
  gap: 2px;
  position: relative;
  scrollbar-width: thin;
}
.categories-cards::-webkit-scrollbar {
  width: 5px;
  height: 5px; /* ширина всей полосы прокрутки */
}
.categories-cards::-webkit-scrollbar-track {
  background: #FFF; /* цвет дорожки скроллбара */
}
.categories-cards::-webkit-scrollbar-thumb {
  background: #adadaa; /* цвет ползунка скроллбара */
  border-radius: 20px;
}
.categories-cards::-webkit-scrollbar-thumb:hover {
  background: #93af2a; /* цвет ползунка скроллбара при наведении */
}

.category-card {
  position: relative;
  min-width: 270px;
}
.category-card:last-child {
  margin: 0;
}
.category-card .icon-flower {
  position: absolute;
  z-index: 1;
  width: 15px;
  height: 15px;
  fill: #d5fe67;
  top: 50%;
  margin: -30px 0 0;
  left: 50%;
  transform: translateX(-50%);
}
.category-card:hover .category-card__name {
  color: #d5fe67;
}
.category-card:hover .category-card__image {
  transform: scale(1.1);
}

.category-card__link {
  display: block;
  background-color: #373836;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 40% 0;
}

.category-card__image {
  display: block;
  opacity: 0.4;
  transition: 2s;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-card__name {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  width: 100%;
  color: #FFF;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 18px;
  font-weight: 400;
  pointer-events: none;
  transition: 1s;
  padding: 0 15px;
  line-height: 1.1em;
}

.category-card__count {
  position: absolute;
  color: #FFF;
  display: block;
  padding: 15px;
  right: 0;
  top: 0;
  pointer-events: none;
}

.icon-arrow-right {
  position: absolute;
  right: 15px;
  bottom: 10px;
  width: 20px;
  height: 20px;
  fill: #d5fe67;
  cursor: pointer;
}
.icon-arrow-right use {
  transform: translateY(5px);
}

@media (min-width: 1024px) {
  .categories-cards {
    flex-wrap: wrap;
    gap: 0;
    padding: 0 30px;
  }
  .categories-cards:hover .category-card > *:not(a) {
    opacity: 1;
  }
  .categories-cards:hover .category-card a img {
    opacity: 0.4;
  }
  .categories-cards .category-card {
    flex: 1;
    min-width: 25%;
  }
  .categories-cards .category-card > *:not(a) {
    transition: 0.3s;
    opacity: 0;
  }
  .categories-cards .category-card a img {
    transition: 0.2s;
    opacity: 1;
  }
  .categories-cards .category-card:hover a img {
    transition: 0.2s;
    opacity: 0.1;
  }
  .categories-cards .category-card:nth-last-of-type(1) .category-card__link, .categories-cards .category-card:nth-last-of-type(2) .category-card__link {
    padding: 27% 0;
  }
  .category-card__name {
    padding: 0 30px;
    font-size: 20px;
  }
}
@media (min-width: 1580px) {
  .categories-cards {
    padding: 0 80px;
  }
  .category-card__name {
    font-size: 24px;
  }
  .icon-arrow-right {
    right: 30px;
    bottom: 25px;
  }
}
.post-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
}
@media (min-width: 769px) {
  .post-item {
    padding: 30px 15px;
  }
}
.post-item:hover .post-item__title {
  color: #93af2a;
}

.post-item__image {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 25% 0;
}
.post-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: 0.3s;
}
.post-item__image:hover img {
  transform: scale(1.1);
}

.post-item__date {
  display: block;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: rgb(147, 147, 144);
  text-transform: uppercase;
  font-size: 12px;
  padding: 15px 0;
  cursor: default;
}

.post-item__link {
  display: block;
  text-decoration: none;
}

.post-item__title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 22px;
  color: #373836;
  line-height: 1.3em;
  transition: 0.2s;
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  font-weight: 400;
}
@media (min-width: 521px) {
  .post-item__title {
    font-size: 26px;
  }
}
.post-item__title:hover {
  color: #93af2a;
}

.post-item__excerpt {
  font-size: 14px;
  color: rgb(147, 147, 144);
  margin: auto 0 0;
  display: block;
  line-height: 1.65;
  font-family: "Verdana", "Arial", "sans-serif";
}
@media (min-width: 521px) {
  .post-item__excerpt {
    font-size: 13px;
  }
}

.footer {
  padding: 75px 0 0;
  color: #717171;
  font-size: 12px;
}

.footer__main {
  padding: 0 15px 30px;
}

.footer__other-menu,
.footer__about-company-menu,
.footer__categories-menu {
  margin: 30px 0;
}
.footer__other-menu li,
.footer__about-company-menu li,
.footer__categories-menu li {
  display: block;
  text-align: center;
  margin: 15px 0;
}
.footer__other-menu li a,
.footer__about-company-menu li a,
.footer__categories-menu li a {
  transition: 0.3s;
  z-index: 1;
}
.footer__other-menu li a:hover,
.footer__about-company-menu li a:hover,
.footer__categories-menu li a:hover {
  color: #93af2a;
}

.footer__about-company-menu li:first-child,
.footer__categories-menu li:first-child {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer__logo {
  max-width: 70px;
  display: block;
  margin: 45px auto 20px;
}

.footer__email,
.footer__phone {
  display: table;
  margin: 10px auto;
  font-size: 12px;
  color: #373836;
  transition: 0.1s;
}
.footer__email:hover,
.footer__phone:hover {
  color: #93af2a;
}

.footer__email {
  color: #717171;
  margin: 20px auto;
}

.footer__socials-title,
.footer__working-days,
.footer__working-hours,
.footer__address {
  color: #373836;
  font-size: 12px;
  font-style: normal;
  text-align: center;
  display: table;
  margin: 0 auto;
}

.footer__working-days {
  color: #717171;
}

.footer__address {
  margin: 15px auto;
}

.footer__socials-title {
  text-transform: uppercase;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  margin: 30px auto 10px;
  min-width: 100%;
  line-height: 1.2em;
}

.footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer__social {
  margin: 0 5px;
  font-size: 0;
}
.footer__social svg {
  max-width: 20px;
  fill: #adadaa;
  opacity: 0.7;
  transition: 0.2s;
}
.footer__social svg.icon-vkontakte {
  max-width: 25px;
}
.footer__social svg.icon-vkontakte use {
  transform: translateY(3px) translateX(2px);
}
.footer__social svg.icon-telegram use {
  transform: translateY(1px);
}
.footer__social:hover svg {
  opacity: 1;
  fill: #93af2a;
}

.footer__bottom {
  padding: 0 15px 15px;
}

.footer__service-menu li {
  display: table;
  margin: 15px auto;
  font-size: 12px;
}
.footer__service-menu a {
  transition: 0.3s;
  z-index: 1;
}
.footer__service-menu a:hover {
  color: #93af2a;
}

.footer__caption {
  color: #373836;
  text-align: center;
  display: block;
  margin: 30px 0 0;
  font-size: 12px;
}

.popup-message {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px;
  background-color: #93af2a;
  color: #FFF;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  opacity: 0.9;
  z-index: 2;
}

@media (min-width: 1024px) {
  .footer {
    padding: 150px 0 0;
  }
  .footer__logo {
    margin: 0 0 20px;
  }
  .footer__main {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
    justify-content: space-between;
  }
  .footer__main > * {
    min-width: 33.3%;
    max-width: 33.3%;
    flex: 1;
  }
  .footer__bottom {
    padding: 30px;
    display: flex;
    justify-content: space-between;
  }
  .footer__bottom > * {
    min-width: 33.3%;
    max-width: 33.3%;
    flex: 1;
  }
  .footer__caption {
    text-align: left;
    margin: 0;
  }
  .footer__caption br {
    display: none;
  }
  .footer__service-menu {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
  }
  .footer__service-menu li {
    margin: 0;
  }
  .footer__col {
    order: -4;
  }
  .footer__col > * {
    margin-left: 0;
    text-align: left;
  }
  .footer__socials,
.footer__other-menu,
.footer__about-company-menu,
.footer__categories-menu {
    margin: 0;
  }
  .footer__socials li,
.footer__other-menu li,
.footer__about-company-menu li,
.footer__categories-menu li {
    text-align: left;
  }
  .footer__socials {
    justify-content: flex-start;
    height: 86px;
  }
  .footer__socials .footer__socials-title {
    text-align: left;
  }
}
@media (min-width: 1580px) {
  .footer {
    padding: 200px 0 0;
  }
  .footer__main {
    padding: 0 80px;
  }
  .footer__bottom {
    padding: 15px 80px 30px;
  }
}
.menu {
  padding: 50px 30px 30px;
  font-size: 14px;
  overflow: auto;
}
.menu ul {
  margin: 15px 0 0;
}
.menu > li:first-child {
  margin: 15px 0;
}
.menu li {
  display: block;
  display: flex;
}
.menu a {
  transition: 0.2s;
  padding: 10px 0;
}
.menu a:hover {
  color: #d5fe67;
}
.menu span {
  font-size: 12px;
  padding: 5px;
  opacity: 0.7;
}

@media (min-width: 767px) {
  .menu {
    display: flex;
    gap: 100px;
    font-size: 18px;
    padding: 50px 110px 30px;
  }
  .menu ul {
    margin: 30px 0 0;
  }
}
@media (min-width: 1024px) {
  .menu {
    padding: 50px 140px 30px;
  }
}
@media (min-width: 1580px) {
  .menu {
    padding: 70px 190px 30px;
  }
}
body.search-opened, body.menu-opened {
  overflow: hidden;
}
body.search-opened .header__menu-btn:before, body.search-opened .header__menu-btn:after, body.menu-opened .header__menu-btn:before, body.menu-opened .header__menu-btn:after {
  border: none;
  width: 25px;
  height: 2px;
  background-color: #d5fe67;
  left: 0;
}
body.search-opened .header__menu-btn:before, body.menu-opened .header__menu-btn:before {
  transform: rotate(45deg);
}
body.search-opened .header__menu-btn:after, body.menu-opened .header__menu-btn:after {
  transform: rotate(-45deg);
}
body.search-opened .header__menu-btn:hover:before, body.search-opened .header__menu-btn:hover:after, body.menu-opened .header__menu-btn:hover:before, body.menu-opened .header__menu-btn:hover:after {
  background-color: #FFF;
}
body.search-opened .header__right > *:not(.header__menu-btn) {
  opacity: 0;
  pointer-events: none;
}

.search {
  display: block;
  padding: 50px 15px;
  overflow: auto;
}

.search__title {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #FFF;
  flex: 0 0 100%;
  opacity: 0.8;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.02em;
  align-items: flex-start;
  display: block;
  margin: 25px 0;
}

.search__input {
  height: 40px;
  display: block;
  min-width: 100%;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  border-bottom: 1px solid #adadaa;
  color: #FFF;
}
.search__input::-moz-placeholder {
  opacity: 1;
  color: #FFF;
}
.search__input::placeholder {
  opacity: 1;
  color: #FFF;
}

.search__button {
  font-size: 0;
  width: 40px;
  height: 40px;
  margin: 0 0 0 auto;
  display: block;
  transform: translateY(-100%);
  padding: 6px;
  cursor: pointer;
}
.search__button svg {
  transition: 0.3s;
  fill: #d5fe67;
}
.search__button svg use {
  transform: translateX(2px) translateY(2px);
}
.search__button:hover svg {
  fill: #FFF;
}

.live-search__item {
  display: block;
  margin: 15px 0;
  font-size: 14px;
  color: #c9c9c9;
  transition: 0.2s;
}
.live-search__item span {
  color: #d5fe67;
}
.live-search__item:hover {
  color: #FFF;
}

@media (min-width: 421px) {
  .search {
    padding: 50px 15%;
  }
  .live-search__item {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .search {
    padding: 90px 25% 15px;
  }
  .search__input {
    height: 52px;
    font-size: 28px;
  }
  .live-search__item {
    font-size: 18px;
  }
}
body.register-opened .auth__login .auth__title, body.login-opened .auth__register .auth__title {
  background-color: #373836;
  color: #FFF;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  pointer-events: auto;
  opacity: 1;
}
body.register-opened .auth__login .auth__title:hover, body.login-opened .auth__register .auth__title:hover {
  background-color: #93af2a;
}

body.register-opened .auth__login, body.login-opened .auth__register {
  pointer-events: none;
}

body.register-opened .auth__login > *, body.login-opened .auth__register > * {
  opacity: 0;
}

body.register-opened .auth__register > *:not(.auth__title), body.login-opened .auth__login > *:not(.auth__title) {
  opacity: 1;
}

body.auth-opened {
  overflow: hidden;
}
body.auth-opened .auth {
  transform: none;
}
body.login-pass-showed .auth__show-password {
  color: #373836;
}
body.login-pass-showed .auth__show-password:after {
  margin: 0 0 0 -5px;
}
body.reset-pass-opened .auth__reset {
  opacity: 1;
  pointer-events: auto;
}
body.reset-pass-opened .auth__reset > * {
  pointer-events: auto;
}
@media (min-width: 767px) {
  body.reset-pass-opened .auth__reset {
    padding: 50px 30px 30px;
  }
}
body.reset-pass-opened .auth__login > *:not(.auth__title) {
  opacity: 0 !important;
  pointer-events: none !important;
}
body .auth__reset {
  opacity: 0;
  pointer-events: none;
  margin: 50px 0 0 -50%;
}

.auth {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  width: 100%;
  position: fixed;
  background-color: #FFF;
  left: 0;
  top: 0;
  height: 100%;
  color: #373836;
  padding: 50px 15px 30px;
  z-index: 4;
  font-weight: 300;
  transition: 0.1s;
  transform: translateY(-100%);
  display: flex;
  overflow: auto;
}
.auth .error {
  color: red;
  text-transform: none;
  display: block;
}
.auth.data-sended .auth__btn,
.auth.data-sended .auth__row,
.auth.data-sended label {
  pointer-events: none !important;
  opacity: 0.7 !important;
}

.auth__checkbox {
  width: 14px;
  height: 14px;
  margin: 0 5px 0 0;
}

label[for^=auth__] {
  text-transform: uppercase;
  font-size: 12px;
  color: #adadaa;
  flex-wrap: wrap;
}

.auth__close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  cursor: pointer;
  z-index: 2;
}
.auth__close:before, .auth__close:after {
  background-color: #373836;
}
.auth__close:hover:before, .auth__close:hover:after {
  background-color: #93af2a;
}

.auth__title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  padding: 0 15px;
  line-height: 1em;
  height: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.auth__input {
  height: 32px;
  display: block;
  min-width: 100%;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ebebeb;
  text-transform: none;
  outline: none !important;
  color: #373836;
  max-width: 100%;
}

.auth__notice,
.auth__description {
  font-size: 12px;
  font-family: "Verdana", "Arial", "sans-serif";
}

.auth__description {
  color: #373836;
}

.auth__notice {
  color: #93af2a;
}

.auth__reset,
.auth__login,
.auth__register {
  max-width: 50%;
  min-width: 50%;
}
.auth__reset > *:not(.auth__title),
.auth__login > *:not(.auth__title),
.auth__register > *:not(.auth__title) {
  transition: 0.2s;
  width: 200%;
  max-width: 200%;
  min-width: 200%;
  overflow: hidden;
  margin: 15px 0;
}
@media (min-width: 767px) {
  .auth__reset > *:not(.auth__title),
.auth__login > *:not(.auth__title),
.auth__register > *:not(.auth__title) {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

.auth__register > *:not(.auth__title) {
  margin: 15px 0 15px -100%;
}

.auth__show-password {
  transform: translateY(-100%);
  height: 32px;
  line-height: 32px;
  margin: 0 0 0 auto;
  display: inline-block;
  cursor: pointer;
}
.auth__show-password:before {
  content: "";
  height: 8px;
  display: block;
  position: absolute;
  width: 16px;
  border-radius: 4px;
  left: 0;
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
  margin: 0 0 0 -5px;
  background-color: #adadaa;
  opacity: 0.4;
}
.auth__show-password:after {
  content: "";
  height: 8px;
  display: block;
  position: absolute;
  width: 8px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
  margin: 0 0 0 -13px;
  background-color: #373836;
  transition: 0.2s;
}
.auth__show-password:after::-moz-placeholder {
  background-color: #adadaa;
}
.auth__show-password:after::placeholder {
  background-color: #adadaa;
}

.auth__back-login,
.auth__reset-password,
label[for=auth__login-remember] {
  font-family: "Verdana", "Arial", "sans-serif";
  font-size: 12px;
  text-transform: none;
  cursor: pointer;
  transition: 0.2s;
}

label[for=auth__login-remember] {
  color: #373836;
}
label[for=auth__login-remember]:hover {
  color: #93af2a;
}

.auth__btn {
  background-color: #93af2a;
  color: #FFF;
}

.auth__back-login,
.auth__reset-password {
  color: #93af2a;
  cursor: pointer;
  display: block;
  margin: 0 0 0 auto;
}
.auth__back-login:hover,
.auth__reset-password:hover {
  color: #373836;
}

#auth__login-password {
  margin: 0 15px 0 0;
}

label[for=auth__register-terms],
label[for=auth__register-subscribe] {
  display: block;
  text-transform: none;
  color: #adadaa;
}
label[for=auth__register-terms] input,
label[for=auth__register-subscribe] input {
  margin: 0 2px 0 0;
  top: 3px;
}

@media (min-width: 767px) {
  body.auth-opened:before {
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(42, 43, 41, 0.8);
    z-index: 4;
  }
  body.auth-opened .auth {
    transform: translateX(-50%);
    left: 50%;
    top: 45px;
    bottom: 45px;
    height: auto;
  }
  .auth {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    max-height: 650px;
  }
  .auth__register > *:not(.auth__title) {
    margin: 15px 0;
  }
  .auth__title {
    text-align: left;
    justify-content: flex-start;
    padding: 0;
    font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
    font-weight: 400;
    font-size: 24px;
  }
  .auth__login,
.auth__register {
    padding: 50px 30px 30px;
  }
  .auth__login > *,
.auth__register > * {
    opacity: 1 !important;
  }
  .auth__title {
    background-color: transparent !important;
    color: #373836 !important;
    pointer-events: none !important;
  }
  .auth__register {
    background-color: #FAFBFD;
    pointer-events: auto !important;
  }
  .auth__input {
    background-color: transparent;
  }
}
.categories-cards {
  padding: 0;
  margin: 30px 0;
}

body.customize-support .header {
  top: 46px;
}
body.customize-support #wpadminbar {
  position: fixed;
}
body.customize-support .search {
  padding: 96px 15px;
}
body.customize-support .menu {
  padding: 96px 30px 30px;
}

html {
  margin: 0 !important;
}

.breadcrumbs {
  padding: 15px;
}

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

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.justify-center {
  justify-content: center;
}

.post-item {
  min-width: 100%;
  max-width: 100%;
}
@media (min-width: 769px) {
  .post-item {
    min-width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.post-item__title {
  font-size: 17px;
}
@media (min-width: 420px) {
  .post-item__title {
    font-size: 22px;
  }
}

.posts-list {
  display: flex;
}
@media (min-width: 1024px) {
  .posts-list {
    padding: 15px;
  }
}
@media (min-width: 1580px) {
  .posts-list {
    padding: 15px 65px;
  }
}

@media (min-width: 1024px) {
  .categories-cards {
    padding: 0px 60px;
    margin: 30px 0;
  }
}
@media (min-width: 1241px) {
  .categories-cards {
    padding: 0 130px;
    margin: 45px 0 0;
  }
}
@media (min-width: 1580px) {
  .categories-cards {
    padding: 0 180px;
  }
}
@media (min-width: 783px) {
  body.customize-support .header {
    top: 32px;
  }
  body.customize-support #wpadminbar {
    position: fixed;
  }
  body.customize-support .search {
    padding: 82px 15px;
  }
  body.customize-support .menu {
    padding: 82px 30px 30px;
  }
}
@media (min-width: 1580px) {
  body.customize-support .header {
    top: 32px;
  }
  body.customize-support #wpadminbar {
    position: fixed;
  }
  body.customize-support .search {
    padding: 122px 25% 15px;
  }
  body.customize-support .menu {
    padding: 82px 80px 30px;
  }
}
