@charset "UTF-8";
@import url("/assets/fonts/stylesheet.css");
@import url("/assets/libraries/bootstrap-grid/bootstrap-grid.min.css");
@import url("/assets/libraries/normalize/normalize.css");
:root {
  --black: #0d0e0f;
  --white: #ffffff;
  --grey: #6c6c6c;
  --red: #ff9900;
  --swiper-theme-color: var(--black) !important;
}

.notifications {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: notification 5s forwards;
    padding-top: 20px;
}

.notification {
    border-radius: 10px;
    background: #5ed35e;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 70px;
}

.notification_error {
    background: #e87964;
}

@keyframes notification {
    0% {
        transform: translateY(-100%);
    }
    20% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}


.arr {
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  transition: 0.3s ease;
}
.arr-toBottom {
  transform: rotate(90deg);
}
.arr-toTop {
  transform: rotate(-90deg);
}
.arr-toLeft {
  transform: rotate(180deg);
}
.arr-toRight {
  transform: rotate(0deg);
}

.title {
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 47.6px */
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hoverTriangle {
  --cardAfterSize: 34px;
  --cardAfterGipotenusa: 48px;
  position: relative;
  overflow: hidden;
}
.hoverTriangle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%) rotate(45deg);
  width: var(--cardAfterGipotenusa);
  height: var(--cardAfterGipotenusa);
  background: var(--red);
  transition: 0.3s ease;
  z-index: 2;
}
.hoverTriangle:hover::after {
  transform: translate(calc(100% - var(--cardAfterGipotenusa) / 2), calc(-100% + var(--cardAfterGipotenusa) / 2)) rotate(45deg);
}

@media (max-width: 991.98px) {
  .title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .title {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
}
html,
body {
  height: 100%;
}

html {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

main {
  flex: 1 0 auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: transparent;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  transition: 0.3s ease;
}
.header.scrolled {
  top: calc(-1 * var(--headerTopHeight));
  border-bottom: 1px solid #ebebeb;
}
.header__wrapper {
  display: flex;
  flex-direction: column;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  padding: 9px 0;
  border-bottom: 1px solid #ebebeb;
}
.header__top_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.header__top_info_link {
  position: relative;
  transition: 0.4s ease;
}
.header__top_info_link::before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: 0.3s ease;
}
.header__top_info_link:hover {
  color: var(--black);
}
.header__top_info_link:hover::before {
  left: 0;
  width: 100%;
}
.header__top_info_link-mail {
  text-align: center;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 19.2px */
}
.header__top_info_link-tel {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header .lang__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .lang__item {
  color: var(--grey);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.header .lang__item-active {
  color: var(--black);
}
.header .lang__item:hover {
  color: var(--black);
}
.header .lang span {
  color: var(--black);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}
.header__logo svg {
  width: 180px;
  height: 46px;
}
.header .navigation__close {
  display: none;
  justify-content: flex-end;
  width: 100%;
}
.header .navigation__close svg {
  cursor: pointer;
}
.header .navigation__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .navigation__list_link {
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  transition: 0.4s ease;
}
.header .navigation__list_link::before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: 0.3s ease;
}
.header .navigation__list_link:hover {
  color: var(--red);
}
.header .navigation__list_link:hover::before {
  left: 0;
  width: 100%;
}
.header .navigation__list_link-active {
  color: var(--red);
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__buttons_search {
  position: relative;
  transition: 0.3s ease;
}
.header__buttons_search .searchInput {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
}
.header__buttons_search .searchInput .searchInput_input {
  max-width: 0;
  opacity: 0;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}
.header__buttons_search .searchInput .searchInput__icon {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header__buttons_search_svg {
  cursor: pointer;
  transition: 0.3s ease;
}
.header__buttons_search_svg:hover {
  color: var(--red);
}
.header__buttons_search.active .searchInput .searchInput_input {
  opacity: 1;
  max-width: 360px;
}
.header__buttons_search.active .searchInput .searchInput__icon {
  opacity: 1;
  pointer-events: none;
}
.header__buttons_search.active .searchInput .searchInput__input-notNull .searchInput__icon {
  pointer-events: all;
}
.header .burger {
  cursor: pointer;
  display: none;
}
.header .btn {
  padding: 10px;
}

@media (max-width: 1299.98px) {
  .header .navigation__list {
    gap: 20px;
  }
}
@media (max-width: 1199.98px) {
  .header.scrolled {
    top: 0;
    border-bottom: 1px solid #ebebeb;
  }
  .header .navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(54, 50, 50, 0.38);
    z-index: 101;
    transition: 0.3s ease-in-out;
    transform: translateX(100%);
  }
  .header .navigation.active {
    transform: translateX(0);
  }
  .header .navigation__close {
    display: flex;
    transition: 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
  }
  .header .navigation__close:hover {
    color: var(--red);
  }
  .header .navigation__wrapper {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    position: relative;
  }
  .header .navigation__wrapper__container {
    overflow-y: auto;
    background: var(--white);
    width: 100%;
    max-width: 350px;
    height: 100%;
    padding: 80px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
  }
  .header .navigation__list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .header .navigation__list_link {
    font-size: 0.7rem;
  }
  .header .burger {
    cursor: pointer;
    display: flex;
    transition: 0.3s ease;
  }
  .header .burger:hover {
    color: var(--red);
  }
  .header .btn {
    padding: 10px;
  }
}
@media (max-width: 575.98px) {
  .header__bottom {
    gap: 5px;
    background: #fff;
  }
  .header__logo svg {
    width: 35vw;
  }
  .header__buttons {
    gap: 20px;
  }
  .header__buttons_search .searchInput {
    z-index: -1;
    position: fixed;
    top: 0;
    right: 20px;
    left: 20px;
    width: calc(100% - 40px);
    transition: 0.3s ease;
  }
  .header__buttons_search .searchInput .searchInput_input {
    width: 100%;
    max-width: 100%;
  }
  .header__buttons_search_svg svg {
    width: 20px;
    height: 20px;
  }
  .header__buttons_search.active .searchInput {
    top: var(--headerHeight);
  }
  .header__buttons_search.active .searchInput .searchInput_input {
    max-width: 100%;
  }
}
.footer {
  color: var(--white);
  background: var(--black);
  padding: 40px 0;
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 45px;
}
.footer__left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.footer__logo svg {
  width: 180px;
  height: 46px;
}
.footer__text {
  color: var(--grey);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  max-width: 325px;
}
.footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__list_link {
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.footer__list_link:hover {
  color: var(--red);
}

@media (max-width: 1399.98px) {
  .footer__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .footer {
    padding: 30px 0;
  }
  .footer__left {
    flex-direction: column;
    gap: 15px;
  }
  .footer__logo svg {
    width: 140px;
    height: 36px;
  }
  .footer__text {
    font-size: 0.65rem;
    max-width: 100%;
    text-align: center;
  }
  .footer__list {
    justify-content: flex-start;
    gap: 20px;
  }
  .footer__list_item {
    width: calc(50% - 10px);
  }
}
@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes scale {
  0% {
    scale: 0.8;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
.form {
  color: var(--white);
}
.form .label {
  color: #fff;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
}
.form .input {
  position: relative;
  width: 100%;
  margin-bottom: 35px;
}
.form .input input,
.form .input select,
.form .input textarea {
  display: flex;
  width: 100%;
  padding: 17px 22px;
  border: 1px solid #747474;
  background: rgba(217, 217, 217, 0);
  resize: none;
  outline: none;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 0.7rem;
  transition: 0.3s ease;
}
.form .input input:focus,
.form .input select:focus,
.form .input textarea:focus {
  border-color: var(--red);
}
.form .input input:hover,
.form .input select:hover,
.form .input textarea:hover {
  border-color: var(--red);
}
.form .iti {
  width: 100%;
  color: var(--black);
}
.form .iti__flag-container {
  background: transparent;
}
.form .iti__selected-dial-code {
  color: var(--white);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form .iti__arrow {
  border-top-color: var(--white);
}

@media (max-width: 575.98px) {
  .form .input {
    margin-bottom: 25px;
  }
  .form .input input,
  .form .input select,
  .form .input textarea {
    padding: 14px 18px;
  }
}
.btn {
  border: 1px solid var(--red);
  color: var(--white);
  text-align: center;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 20px;
  background: var(--red);
  transition: 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: var(--red);
}
.btn.w-full {
  width: 100%;
}
.btn.blackBorder {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn.blackBorder:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 575.98px) {
  .btn {
    padding: 15px;
  }
}
.modal {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: rgba(4, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal.modal--active {
  opacity: 1;
  pointer-events: all;
}
.modal.modal--active .modal-content .close-modal-btn {
  opacity: 1;
}
.modal .component {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background: url("/assets/images/modalBg.png") no-repeat center center/cover;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.modal .modal-content .close-modal-btn {
  transition: 0.4s ease;
  opacity: 0;
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f3f4f7;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  top: 30px;
  right: 30px;
  position: absolute;
  cursor: pointer;
}
.modal .close-modal {
  cursor: pointer;
}
.modal.mainModal .component {
  height: 100%;
}
.modal.mainModal .modal-content {
  height: 100%;
}

@media (max-width: 575.98px) {
  .modal .modal-content {
    height: 100%;
    width: 100%;
    padding: 0;
  }
  .modal .modal-content .close-modal-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .modal .modal-content .close-modal-btn svg {
    width: 20px;
    height: 20px;
  }
}
.searchInput__input {
  position: relative;
}
.searchInput__input input {
  width: 360px;
  height: 50px;
  border: 1px solid #e1e1e1;
  background: #f5f6f6;
  outline: none;
  padding: 15px 55px 15px 15px;
  transition: 0.3s ease;
  caret-color: var(--red);
  color: var(--black);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.searchInput__input input:hover, .searchInput__input input:focus {
  border-color: var(--red);
}
.searchInput__input input::placeholder {
  color: #707070;
}
.searchInput__input-notNull .searchInput__icon {
  pointer-events: all;
}
.searchInput__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.searchInput__icon:hover svg, .searchInput__icon:active svg, .searchInput__icon:focus svg {
  animation: scale 0.3s ease;
}

.news {
  --newsBackground: var(--white);
  --newsColor: var(--black);
  background: var(--newsBackground);
  color: var(--newsColor);
  padding: 60px 0;
}
.news.index {
  --newsBackground: var(--black);
  --newsColor: var(--white);
}
.news__wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.news__wrapper_container {
  padding-left: 30px;
}
.news__wrapper_container .row {
  row-gap: 30px;
}
.news__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 30px 65px;
}
.news__top_text {
  max-width: 440px;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.news__top_link {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s ease;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.news__top_link svg {
  width: 20px;
  height: 20px;
}
.news__top_link:hover {
  color: var(--red);
}
.news .swiper-slide {
  width: auto;
  height: 100%;
}
.news .card {
  width: 560px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news .card__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news .card__img {
  z-index: 1;
  aspect-ratio: 4/3;
}
.news .card__img img {
  width: 100%;
  height: 100%;
}
.news .card__name {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  text-transform: uppercase;
  transition: 0.3s ease;
}
.news .card__name p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .card__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.news .card__bottom_item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #9e9e9e;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.news .card__bottom_item--tag::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.news .card:hover .card__name {
  color: var(--red);
}

.contacts__wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.contacts__top {
  background: var(--black);
  display: flex;
}
.contacts__top_item {
  width: calc(50% - 0px);
}
.contacts__top .map {
  flex: 1;
}
.contacts__top .map iframe {
  width: 100%;
  height: 100%;
}
.contacts__top .mainForm {
  padding: 50px 80px;
}
.contacts__top .mainForm__title, .contacts__top .mainForm__subtitle {
  text-align: left;
}
.contacts__center {
  background: var(--black);
  padding: 60px 0;
  color: var(--white);
}
.contacts__center .info {
  display: flex;
  gap: 30px;
}
.contacts__center .info__item {
  width: calc(33.3333333333% - 20px);
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.contacts__center .info__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--white);
  position: absolute;
  top: 0;
  right: -15px;
  transform: translateX(50%);
}
.contacts__center .info__item_svg {
  margin-bottom: 15px;
}
.contacts__center .info__item_svg svg {
  width: 34px;
  height: 34px;
}
.contacts__center .info__item_title {
  text-align: center;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contacts__center .info__item_link {
  text-align: center;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  transition: 0.3s ease;
}
.contacts__center .info__item_link:hover {
  color: var(--red);
}
.contacts__bottom {
  display: flex;
}
.contacts__bottom_social {
  width: 370px;
  background: var(--red);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #fff;
}
.contacts__bottom_social_title {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  text-transform: uppercase;
  text-align: center;
}
.contacts__bottom_social .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.contacts__bottom_social .socials__item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  transition: 0.3s ease;
}
.contacts__bottom_social .socials__item:hover {
  border: 1px solid var(--red);
  color: var(--red);
  background: var(--white);
}
.contacts__bottom_post {
  flex: 1;
}
.contacts__bottom_post .posts {
  width: 100%;
  height: 100%;
  display: flex;
}
.contacts__bottom_post .posts__item {
  height: 100%;
  width: calc(25% - 0px);
  position: relative;
}
.contacts__bottom_post .posts__item__img {
  width: 100%;
  height: 100%;
  z-index: 2;
}
.contacts__bottom_post .posts__item__img img {
  width: 100%;
  height: 100%;
}
.contacts__bottom_post .posts__item__svg {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--black);
  padding: 9px;
  z-index: 3;
  color: var(--white);
}
.contacts__bottom_post .posts__item__svg svg {
  transition: 0.3s ease;
  width: 16px;
  height: 16px;
}
.contacts__bottom_post .posts__item:hover .posts__item__svg {
  color: var(--red);
}
.contacts__bottom_post .posts__item:hover .posts__item__svg svg {
  width: 24px;
  height: 24px;
}

.contactsPage .contacts {
  padding-top: 30px;
}
.contactsPage .contacts .title {
  padding: 0 30px;
}
.contactsPage .contacts .mainForm__title {
  display: none;
}

.mainForm {
  color: var(--white);
}
.mainForm__wrapper {
  display: flex;
  flex-direction: column;
}
.mainForm__title {
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 47.6px */
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}
.mainForm__subtitle {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

.page {
  padding: 50px 0;
}

.search .searchInput {
  margin-bottom: 50px;
}
.search .searchInput input {
  width: 100%;
}
.search .searchQuery {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  text-transform: uppercase;
  margin-bottom: 15px;
}
.search .searchQuery span {
  color: var(--red);
}

.products__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.products .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #ebebeb;
}
.products .card__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.products .card__img {
  width: 100%;
  z-index: 2;
  margin-bottom: 5px;
}
.products .card__img img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 4/3;
}
.products .card__name {
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 19.5px */
  text-transform: uppercase;
  padding: 0 20px;
  transition: 0.3s ease;
}
.products .card__contentItem {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
}
.products .card__contentItem p {
  color: #707070;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
.products .card__contentItem span {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.products .card__btn {
  padding: 0 20px 20px;
}
.products .card__btn .btn {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}
.products .card:hover .card__name {
  color: var(--red);
}
.products .card:hover .btn {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.products .empty__text {
  color: var(--grey, #9e9e9e);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin-bottom: 60px;
}
.products .empty__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .empty__img svg {
  width: 224px;
  height: 172px;
}
.products-search .card {
  width: calc(25% - 22.5px);
}
.products-search .products__wrapper {
  padding-top: 15px;
}

.catalogCategory__wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.catalogCategory__content {
  display: flex;
  flex-wrap: wrap;
}
.catalogCategory .title {
  padding: 0 30px;
}
.catalogCategory .card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: calc(25% - 0px);
  padding: 15px;
  border-bottom: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}
.catalogCategory .card__img {
  width: 100%;
}
.catalogCategory .card__img img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: contain;
}
.catalogCategory .card__text {
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 19.5px */
  text-transform: uppercase;
  transition: 0.3s ease;
}
.catalogCategory .card:nth-child(n-4) {
  border-top: 1px solid #e1e1e1;
}
.catalogCategory .card:nth-child(4n) {
  border-right: none;
}
.catalogCategory .card:hover {
  color: var(--red);
}

.categoryBanner {
  padding: 20px 30px 290px;
  color: var(--white);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.categoryBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.categoryBanner .breadcrumbs {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0;
}
.categoryBanner .breadcrumbs .crumb:nth-last-child(1) {
  color: var(--white);
}

.categoryInner {
  padding: 50px 0;
}
.categoryInner__wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.categoryInner__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 35px;
  padding: 0 30px;
}
.categoryInner__title .title {
  margin: 0;
}
.categoryInner__title .openMobileFilter {
  display: none;
}
.categoryInner__content {
  display: flex;
  position: relative;
  gap: 30px;
}
.categoryInner__content .aside {
  width: 25vw;
}
.categoryInner__content .aside__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.categoryInner__content .aside__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.categoryInner__content .aside__top .close {
  display: none;
}
.categoryInner__content .aside__title {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  text-transform: uppercase;
}
.categoryInner__content .aside__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.categoryInner__content .aside__content button {
  border: 1px solid var(--black-new, #1B1B1B);
  padding: 15px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
  color: #1B1B1B;
}
.categoryInner__content .aside__content button:hover {
  background: #ff9900;
  border: none;
  color: #fff;
  transition: 0.3s;
}
.categoryInner__content .aside__content__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.categoryInner__content .aside__content__item_title {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  text-transform: uppercase;
}
.categoryInner__content .aside__content__item_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.categoryInner__content .aside__content__item_list .range-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.categoryInner__content .aside__content__item_list .irs::before {
  content: "";
  display: block;
  height: 20px;
  width: 1px;
  position: absolute;
  left: 0;
  top: 27px;
  z-index: 100;
}
.categoryInner__content .aside__content__item_list .irs::after {
  content: "";
  display: block;
  height: 20px;
  width: 1px;
  position: absolute;
  right: 0;
  top: 27px;
  z-index: 100;
}
.categoryInner__content .aside__content__item_list .irs-line {
  background-color: #EBEBEB !important;
  height: 1px !important;
}
.categoryInner__content .aside__content__item_list .irs-handle {
  border: none !important;
  background: #ff9900 !important;
}
.categoryInner__content .aside__content__item_list .irs-bar {
  background: #ff9900 !important;
  height: 2px !important;
}
.categoryInner__content .aside__content__item_list .irs-single {
  background: #ff9900 !important;
}
.categoryInner__content .aside__content__item_list .irs-to,
.categoryInner__content .aside__content__item_list .irs-from,
.categoryInner__content .aside__content__item_list .irs-max,
.categoryInner__content .aside__content__item_list .irs-min {
  display: none !important;
}
.categoryInner__content .aside__content__item_input {
  max-width: 40%;
  width: 100%;
}
.categoryInner__content .aside__content__item_input p {
  color: #1B1B1B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.categoryInner__content .aside__content__item_input input {
  border: 1px solid #E1E1E1;
  background: #F5F6F6;
  padding: 15px;
  width: 100%;
}
.categoryInner__content .aside__content__item_checkbox {
  display: flex;
  align-items: center;
  gap: 15px;
}
.categoryInner__content .aside__content__item_checkbox input {
  accent-color: var(--red);
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.categoryInner__content .aside__content__item_checkbox label {
  cursor: pointer;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
.categoryInner__content .products {
  flex: 1;
}
.categoryInner__content .products .card {
  width: calc(33.3333333333% - 20px);
}

.categoryPageSlider__wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.categoryPageSlider .swiper-slide {
  width: auto;
  height: 100%;
}
.categoryPageSlider .swiper-button-next, .categoryPageSlider .swiper-button-prev {
  margin-top: 0;
  top: 0;
  height: 100%;
  width: 80px;
  transition: 0.3s ease;
  z-index: 3;
  background: linear-gradient(272deg, #fff 10.6%, rgba(255, 255, 255, 0.8) 98.14%);
}
.categoryPageSlider .swiper-button-next svg, .categoryPageSlider .swiper-button-prev svg {
  width: 20px;
  height: 20px;
}
.categoryPageSlider .swiper-button-next:hover, .categoryPageSlider .swiper-button-prev:hover {
  color: var(--red);
}
.categoryPageSlider .swiper-button-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 30px;
}
.categoryPageSlider .swiper-button-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 30px;
}
.categoryPageSlider .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
}
.categoryPageSlider .card__img {
  z-index: 2;
}
.categoryPageSlider .card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/0.8;
}
.categoryPageSlider .card__text p {
  text-align: center;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 16.5px */
  text-transform: uppercase;
  transition: 0.3s ease;
}
.categoryPageSlider .card:hover {
  color: var(--red);
}

.articleBanner {
  padding: 20px 0 60px;
}
.articleBanner__wrapper {
  max-width: 1920px;
  margin: 0 auto;
}
.articleBanner__img.img {
  z-index: 2;
}
.articleBanner__img img {
  height: 550px;
  width: 100%;
}
.articleBanner__img::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(0deg, #0d0e0f 0%, rgba(13, 14, 15, 0) 35.84%);
}
.articleBanner__head {
  width: calc(100% - 60px);
  margin: -100px auto 0;
  position: relative;
  z-index: 5;
  background: #f5f6f6;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.articleBanner__name {
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 47.6px */
  text-transform: uppercase;
}
.articleBanner__info {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--grey, #9e9e9e);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.articleBanner__info p {
  display: flex;
  align-items: center;
  gap: 15px;
}
.articleBanner__info p:nth-child(1)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.article {
  margin-bottom: 60px;
}

@media (max-width: 1199.98px) {
  .contacts__top .mainForm {
    padding: 40px 60px;
  }
  .contacts__top .mainForm__title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .contacts__top .mainForm__subtitle {
    margin-bottom: 30px;
    font-size: 0.7rem;
  }
  .products-search .card {
    width: calc(33.3333333333% - 20px);
  }
  .categoryInner__content .products .card {
    width: calc(50% - 15px);
  }
}
@media (max-width: 991.98px) {
  .categoryPageSlider .card {
    width: 140px;
  }
  .categoryPageSlider .swiper-button-next, .categoryPageSlider .swiper-button-prev {
    display: none;
  }
  .article {
    margin-bottom: 50px;
  }
  .contactsPage .contacts .title {
    padding: 0 20px;
  }
  .news {
    padding: 50px 0;
  }
  .news__wrapper_container {
    padding-left: 20px;
  }
  .news__top {
    padding: 0 20px 50px;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .news__top_text {
    order: 3;
  }
  .contacts__center {
    padding: 50px 0;
  }
  .contacts__center .info {
    flex-wrap: wrap;
  }
  .contacts__center .info__item {
    width: calc(50% - 15px);
  }
  .contacts__center .info__item:nth-child(2)::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: var(--white);
    position: absolute;
    top: 0;
    right: -15px;
    transform: translateX(50%);
  }
  .contacts__center .info .info__item--loaction {
    order: 3;
    width: 100%;
    padding: 0 20px;
  }
  .contacts__center .info .info__item--loaction::after {
    width: calc(100% - 40px);
    height: 1px;
    top: -15px;
    right: 20px;
    transform: translateX(0) translateY(50%);
  }
  .contacts__bottom {
    flex-direction: column;
  }
  .contacts__bottom_social {
    width: 100%;
  }
  .contacts__bottom_post .posts__item {
    height: 20vh;
  }
  .products-search .card {
    width: calc(50% - 15px);
  }
  .catalogCategory .title {
    padding: 0 20px;
  }
  .catalogCategory .card {
    width: calc(33.3333333333% - 0px);
  }
  .catalogCategory .card:nth-child(n-4) {
    border-top: none;
  }
  .catalogCategory .card:nth-child(4n) {
    border-right: 1px solid #e1e1e1;
  }
  .catalogCategory .card:nth-child(n-3) {
    border-top: 1px solid #e1e1e1;
  }
  .catalogCategory .card:nth-child(3n) {
    border-right: none;
  }
  .categoryInner {
    padding: 40px 0;
  }
  .categoryInner__title {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .categoryInner__title .openMobileFilter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    text-transform: uppercase;
  }
  .categoryInner__content {
    gap: 25px;
  }
  .categoryInner__content .aside {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(54, 50, 50, 0.38);
    inset: 0;
    z-index: 103;
    transform: translateX(-100%);
    transition: 0.3s ease;
  }
  .categoryInner__content .aside.active {
    transform: translateX(0);
  }
  .categoryInner__content .aside__wrapper {
    max-width: 350px;
    width: 100%;
    background: var(--white);
    height: 100%;
    padding: 30px 20px;
  }
  .categoryInner__content .aside__top .close {
    display: flex;
    cursor: pointer;
  }
  .categoryInner__content .aside__title {
    font-size: 0.8rem;
  }
  .categoryInner__content .aside__content {
    overflow-y: auto;
  }
  .categoryInner__content .products {
    flex: 1;
  }
  .categoryInner__content .products .card {
    width: calc(33.3333333333% - 20px);
  }
  .categoryBanner {
    padding: 20px 20px 290px;
  }
  .articleBanner {
    padding: 20px 0 50px;
  }
  .articleBanner__head {
    width: calc(100% - 40px);
    padding: 35px;
  }
  .articleBanner__name {
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) {
  .news__top_link {
    order: 4;
  }
  .news .card {
    width: 460px;
  }
  .contacts__top {
    display: flex;
    flex-direction: column;
  }
  .contacts__top_item {
    width: calc(100% - 0px);
  }
  .contacts__top .map {
    height: 50vh;
    flex: auto;
  }
  .contacts__top .mainForm {
    padding: 50px 20px;
  }
  .contacts__top .mainForm__title {
    margin-bottom: 30px;
  }
  .contacts__top .mainForm__subtitle {
    margin-bottom: 40px;
  }
  .contacts__bottom_post .posts {
    flex-wrap: wrap;
  }
  .contacts__bottom_post .posts__item {
    width: calc(50% - 0px);
  }
  .catalogCategory .card {
    width: calc(50% - 0px);
  }
  .catalogCategory .card:nth-child(n-3) {
    border-top: none;
  }
  .catalogCategory .card:nth-child(3n) {
    border-right: 1px solid #e1e1e1;
  }
  .catalogCategory .card:nth-child(n-2) {
    border-top: 1px solid #e1e1e1;
  }
  .catalogCategory .card:nth-child(2n) {
    border-right: none;
  }
  .categoryInner__content .products .card {
    width: calc(50% - 15px);
  }
  .articleBanner {
    padding: 20px 0 40px;
  }
  .articleBanner__img img {
    height: 350px;
    width: 100%;
  }
  .articleBanner__head {
    padding: 30px;
  }
  .articleBanner__name {
    font-size: 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .news {
    padding: 30px 0;
  }
  .news__top {
    gap: 20px;
  }
  .news__top_text {
    max-width: 100%;
    font-size: 0.7rem;
  }
  .news .card {
    width: 100%;
  }
  .news .card__name {
    font-size: 0.6rem;
  }
  .news .card__bottom_item {
    font-size: 0.6rem;
  }
  .contacts__top .map {
    height: 30vh;
  }
  .contacts__top .mainForm {
    padding: 30px 20px;
  }
  .contacts__top .mainForm__title {
    margin-bottom: 25px;
    font-size: 1.2rem;
  }
  .contacts__top .mainForm__subtitle {
    margin-bottom: 30px;
    font-size: 0.7rem;
  }
  .contacts__center {
    padding: 30px 0;
  }
  .contacts__center .info__item {
    width: 100%;
  }
  .contacts__center .info__item::after {
    display: none !important;
  }
  .contacts__center .info .info__item--loaction {
    padding: 0;
  }
  .contacts__bottom_social .socials__item {
    width: 42px;
    height: 42px;
  }
  .contacts__bottom_social .socials__item__svg svg {
    width: 16px;
    height: 16px;
  }
  .products-search .card {
    width: calc(100% - 0px);
  }
  .page {
    padding: 30px 0;
  }
  .article {
    margin-bottom: 40px;
  }
  .search .searchInput {
    margin-bottom: 30px;
  }
  .search .searchQuery {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  .catalogCategory .card {
    width: calc(100% - 0px);
  }
  .catalogCategory .card:nth-child(n-2) {
    border-top: none;
  }
  .catalogCategory .card:nth-child(2n) {
    border-right: 1px solid #e1e1e1;
  }
  .catalogCategory .card:nth-child(n-1) {
    border-top: 1px solid #e1e1e1;
  }
  .catalogCategory .card:nth-child(1n) {
    border-right: none;
  }
  .categoryInner__content .products .card {
    width: calc(100% - 0px);
  }
  .categoryPageSlider .card {
    width: 120px;
  }
  .articleBanner {
    padding: 20px 0 30px;
  }
  .articleBanner__head {
    padding: 15px;
    gap: 10px;
  }
  .articleBanner__name {
    font-size: 0.9rem;
  }
  .articleBanner__info {
    gap: 10px;
  }
  .articleBanner__info p {
    gap: 10px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

body {
  font-family: "Montserrat";
  color: var(--black);
  background: var(--white);
}

svg {
  width: 24px;
  height: 24px;
}

html,
body {
  font-size: 20px;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.accordion .accordion-item {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s ease;
}
.accordion .accordion-item.active .accordion-collapse {
  max-height: 1000px;
}
.accordion .accordion-item.active .accordion-header .g {
  transform: rotate(-180deg);
}
.accordion-header {
  display: flex;
  width: 100%;
}
.accordion-header .g {
  transition: 0.3s ease;
}
.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  cursor: pointer;
  border: none;
  outline: none;
}
.accordion-collapse {
  transition: 0.5s ease;
  max-height: 0;
  overflow: hidden;
}
.accordion-body {
  padding-top: 20px;
}

.relative {
  position: relative;
}

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

.t-l {
  text-align: left !important;
}

.or {
  order: 0;
}

.contentCkeditor {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.contentCkeditor a {
  color: var(--red);
}
.contentCkeditor ul {
  list-style: disc;
  list-style-position: inside;
}
.contentCkeditor ul li::marker {
  color: var(--red);
}

.img {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.img.loaded::after {
  display: none;
}
.img::after {
  position: absolute;
  content: "";
  top: 0;
  left: -100%; /* Начинаем за пределами видимости */
  width: 100%;
  height: 150%;
  background: linear-gradient(270deg, #676767 -383.92%, rgba(199, 199, 199, 0) 75.73%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide 1s infinite;
}
.img .video {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.img .video .g {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 30px;
  margin-bottom: 30px;
}
.breadcrumbs .crumb {
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}
.breadcrumbs .crumb:not(:last-child):hover {
  color: var(--red);
}
.breadcrumbs .crumb:nth-last-child(1) {
  cursor: default;
  color: var(--grey);
}

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

.w-100 {
  width: 100%;
}

.footer {
  flex: 0 0 auto;
}

main {
  margin-top: var(--headerHeight, 109px);
}
main.main {
  margin-top: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 1920px) {
  .container-fluid {
    max-width: 1920px;
  }
}
@media (max-width: 991.98px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .contentCkeditor {
    font-size: 0.7rem;
  }
  .breadcrumbs {
    gap: 5px;
    padding: 0 20px;
  }
  .breadcrumbs .crumb {
    font-size: 0.7rem;
    gap: 5px;
  }
  .breadcrumbs svg {
    width: 16px;
    height: 16px;
  }
  .accordion {
    gap: 20px;
  }
  .accordion .accordion-item {
    padding: 15px;
  }
  .accordion-button {
    gap: 10px;
  }
  .accordion-button svg {
    width: 16px;
    height: 16px;
  }
  .accordion-body {
    padding-top: 15px;
  }
}

/*# sourceMappingURL=global.css.map */
