html {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: inherit;
  height: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

span {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

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

/* Revert styles for lists within divs with class "content__space" */
div.content__space ul,
div.content__space li,
div.content__space ol {
  list-style: initial;
  margin: initial;
  padding: initial;
}

*:not(.content__space) a,
*:not(.content__space) h1,
*:not(.content__space) h2,
*:not(.content__space) h3,
*:not(.content__space) h4,
*:not(.content__space) h5,
*:not(.content__space) h6,
*:not(.content__space) p {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  padding: 0;
}

/* Ensure these styles are not applied to any descendant of .content__space */
.content__space * {
  margin: initial;
  font-size: initial;
  font-family: initial;
  font-weight: initial !important;
  padding: initial;
}
.content__space * strong {
  font-weight: 700 !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

main {
  display: block;
  margin: 0;
}

::placeholder {
  color: inherit;
}

select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

button {
  font-family: inherit;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 810px) {
  .container {
    padding: 0 5px;
  }
}

html {
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857143;
  background-color: #fff;
}

button {
  cursor: pointer;
}

main {
  flex: 1 1 0;
}

a {
  transition: 0.35s;
  display: block;
}

.fa {
  color: #fff;
  background-color: #666;
  padding: 3px;
}

.blue__box-title {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  top: 21px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  z-index: 10;
}
.blue__box-title a {
  padding: 5px 26px;
  font-size: 26px;
  line-height: 1.42857143;
  background-color: #a21121;
  transition: background-color 0.4s;
  text-align: center;
  color: #fff;
}
@media (max-width: 750px) {
  .blue__box-title a {
    padding: 3px 18px;
    font-size: 19px;
    line-height: 25px;
  }
}
@media (max-width: 650px) {
  .blue__box-title a {
    padding: 3px 5px;
    font-size: 17px;
    line-height: 23px;
  }
}

input, textarea {
  outline: none;
  resize: none;
}

.blue__box-content {
  border: 2px solid #e3e3e3;
}

.modal {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  opacity: 1;
  display: block;
  background-color: #fff;
  width: 100%;
  max-width: 850px;
  right: 0 !important;
  left: 0 !important;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 15px;
  max-height: calc(100vh - 40px); /* Adjust the padding if necessary */
  overflow-y: auto;
}

.modal__cross {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
}
.modal__cross img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.modal__wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.modal__left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.modal__title {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 1.6em;
  margin-left: 15px;
  text-transform: uppercase;
}

.modal__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.modal__group-title {
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 1px;
  color: #a21121;
}
.modal__group-input {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #333 !important;
  display: block;
  font-size: 1.2em;
  font-weight: 400;
  margin: 0 0 15px;
  padding: 0.5rem;
  height: 33px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s linear;
  min-width: 370px;
}
.modal__group-input::placeholder {
  opacity: 0.5;
}
.modal__group-input.textarea {
  padding: 0.5rem;
  height: 251px;
}

@media (max-width: 700px) {
  .modal__title {
    text-align: center;
  }
}
@media (max-width: 410px) {
  .modal__group-input {
    min-width: 100%;
  }
}
.btn {
  display: block;
  padding: 7px 22px 7px;
  color: #fff;
  font-size: 1.6em;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #a21121;
  border: none;
  z-index: 10;
  transition: background-color 0.5s;
}

.modal__btn {
  margin-top: 6px;
  margin-inline: auto;
  width: fit-content;
}

.home__flex_box {
  display: flex;
  flex-direction: column;
}
@media (max-width: 750px) {
  .home__flex_box {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
  }
}
@media (max-width: 470px) {
  .home__flex_box {
    flex-direction: column;
  }
}

.content {
  padding: 0px 0 50px;
}

.breadcrambs {
  margin: 10px 0;
}

.breadcrambs__list {
  display: flex;
  align-items: center;
  gap: 7px;
}

.breadcrambs__list_item {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  color: #a21121;
  display: flex;
  align-items: center;
  gap: 7px;
}
.breadcrambs__list_item::before {
  content: ">";
  color: #a21121;
  font-size: 1.3em;
  margin-top: -3px;
}
.breadcrambs__list_item:first-child::before {
  display: none;
}

table {
  margin: 20px 0;
  width: 100%;
  color: #000;
  border: 3px solid #e3e3e3;
  border-collapse: collapse;
  font-size: 1.4em;
  font-weight: 400;
  text-align: center;
}
table th {
  padding: 30px 0;
  border: 1px solid #e3e3e3;
}
table td {
  padding: 20px 0;
  border: 2px solid #e3e3e3;
}

.actions__title {
  font-size: 1.8em;
  font-weight: bold;
  text-transform: uppercase;
  color: #a21121;
}

@media (max-width: 700px) {
  .table {
    font-size: 3vw;
  }
}
.breadcrambs__list {
  flex-wrap: wrap;
}

.news__inner_item .brend {
  padding-inline: 35px;
}

input.error {
  border: 1px solid red;
  box-shadow: 0px 0px 5px red;
}

.header__top_contacts .fa {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 15px;
  text-align: center;
}

.language-elem {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  width: 32px;
  /*padding: 4px 0 6px;*/
  color: #fff;
  text-align: center;
  overflow: hidden;
  /*background-color: #666;*/
  opacity: 1;
  transition: opacity 0.3s;
}

.language-elem.lang-active {
  z-index: 99;
  overflow: visible;
}

.language-elem input {
  position: absolute;
  top: 50%;
  left: -28px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.language-elem a.language-tpl {
  margin-right: 0;
}

.language-elem a.language-tpl:not(.active) {
  position: absolute;
  left: 0;
  bottom: -40px;
}

.language-elem a.language-tpl img {
  float: left;
  width: 30px;
  height: 30px;
}

.header__top_social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__top_wrapper-btn {
  margin-right: 1px !important;
  padding: 3px 15px 4px 15px;
  background-color: #666;
  color: #fff;
  /* font-size: 1.1em; */
  font-size: 1em;
  text-align: center;
  text-transform: uppercase;
  opacity: 1;
  border: 2px solid #666;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}

.header__top_social-item .fa {
  font-size: 19px;
  width: 30px;
  height: 30px;
  vertical-align: bottom;
  text-align: center;
  padding-top: 6px;
  opacity: 1;
  transition: opacity 0.3s;
}

.header__top_wrapper {
  display: flex;
  gap: 6px;
}

.header__top {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__top_contacts {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__top_contacts-item {
  gap: 6px;
  display: flex;
  align-items: center;
  color: #333;
  transition: color 0.4s;
  font-size: 1.1em;
}
.header__top_contacts-item:hover {
  color: #a21121;
}

.header__inner {
  position: relative;
}

.header__bottom {
  background-color: #efefef;
  min-height: 42px;
  margin-bottom: 3px;
}
.header__bottom_nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__bottom_nav-link {
  color: #a21121;
  font-size: 18px !important;
  padding: 15px !important;
  display: block;
  transition: color 0.5s, background-color 0.5s;
}
.header__bottom_nav-link:hover, .header__bottom_nav-link.active {
  background: #a21121;
  color: #fff;
}
.header__mobile {
  display: none;
  position: relative;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  min-height: 42px;
  padding: 0px 12px;
}

.header__burger {
  position: relative;
  height: 100%;
  font-size: 1.2em;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  width: 66px;
  color: rgba(0, 0, 0, 0) !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 500ms;
  z-index: 20;
}
.header__burger::after {
  content: "";
  display: block;
  position: relative;
  bottom: 12px;
  width: 35px;
  box-shadow: 0 0 0 3px #fff, 0 12px 0 3px #fff, 0 24px 0 3px #fff;
  transition: all 500ms;
}
.header__burger.active {
  background-color: #60a6d3 !important;
  left: 160px;
}

.header__mobile_nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.header__mobile_nav-item .fa {
  font-size: 19px;
  width: 30px;
  height: 30px;
  vertical-align: bottom;
  text-align: center;
  padding-top: 6px;
  color: #0071b9;
  background-color: #efefef;
  opacity: 1;
  transition: opacity 0.3s;
}

.header__top_wrapper_outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1050px) {
  .header__bottom_nav-link {
    font-size: 15px;
    padding: 10px;
  }
}
@media (max-width: 1000px) {
  .header__top_wrapper {
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  .header__top_wrapper_outer .header__search {
    display: none;
  }
  .header__top_contacts {
    gap: 20px;
  }
  .header__top_contacts_wrapper .header__search {
    margin-top: 10px;
    display: flex !important;
    max-width: 240px;
    width: 100%;
  }
  .header__top_wrapper {
    display: none;
  }
  .header__top {
    flex-wrap: wrap;
  }
  .header__bottom_nav {
    display: none;
  }
  .header__bottom {
    background: #a21121;
  }
  .header__mobile {
    display: flex;
  }
}
.header__mobile_list {
  z-index: 20;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  transition: all 500ms;
  left: -100%;
  opacity: 0;
  visibility: visible;
}
.header__mobile_list.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.header__mobile_list-item {
  border-bottom: 1px solid #60a6d3;
  width: 100%;
}
.header__mobile_list-item.active a {
  font-size: 18px;
}
.header__mobile_list-item:hover a {
  background: rgba(162, 17, 33, 0.8);
}
.header__mobile_list-item--link {
  width: 100%;
  font-size: 14px;
  background: #a21121;
  padding: 9px 8px 8px;
  white-space: nowrap;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}

.header__top_logo {
  display: flex;
  flex-direction: column;
  padding-bottom: 7px;
}
.header__top_logo span {
  text-align: center;
  color: #a21121;
  font-size: 18px;
}

.header__search {
  display: flex;
  align-items: center;
  position: relative;
}
.header__search-btn {
  width: 30px;
  height: 30px;
  background-color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-left: -2px;
  cursor: pointer;
}
.header__search-input {
  width: 100%;
  height: 30px;
  padding: 5px 10px;
  border-radius: 3px;
  outline: none;
  font-size: 16px;
}

@media (max-width: 600px) {
  .header__top {
    flex-direction: column;
    gap: 30px;
  }
}
.footer {
  padding: 20px 0;
}

.footer__inner {
  display: flex;
  gap: 50px;
}

.footer__content {
  display: flex;
  flex-direction: column;
}

.footer__content-title {
  position: relative;
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer__content-title hr {
  display: inline-block;
  margin-left: 30px;
  width: 70px;
  font-weight: 700;
  border-color: #000;
}

.footer__content_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__content_list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.footer__content_list-item > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__content_list-item a {
  font-weight: 600;
}

.footer__content-text {
  max-width: 200px;
}

.footer__content_social {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__content_social .fa {
  font-size: 19px;
  width: 30px;
  height: 30px;
  vertical-align: bottom;
  text-align: center;
  padding-top: 6px;
  opacity: 1;
  transition: opacity 0.3s;
}

.general_swiper-next, .general_swiper-prev {
  z-index: 10;
}
.general_swiper-next::after, .general_swiper-prev::after {
  font-weight: 900;
  color: black;
}

.general__swiper-img {
  width: 100%;
}

@media (max-width: 500px) {
  .general_swiper {
    display: none;
  }
}
@media (max-width: 700px) {
  .general_swiper .swiper-pagination {
    display: none;
  }
}
.general_swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #a21121;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.general_swiper .swiper-pagination-bullet-active {
  background: #a21121;
}

.hero {
  margin-top: 15px;
}

.hero__banner img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.equipment__content {
  padding: 35px 0 5px;
}

.equipment__content_list {
  display: flex;
  justify-content: space-between;
}

.equipment__content_list-item {
  position: relative;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.equipment__content_list-item:hover {
  color: #a21121;
}
.equipment__content_list-item:nth-child(2)::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 77%;
  background-color: #efefef;
  position: absolute;
  top: -18px;
  right: 0;
  z-index: 0;
}
.equipment__content_list-item--img {
  z-index: 2;
  width: 100%;
  height: 100%;
}
.equipment__content_list-item--title {
  z-index: 2;
  font-size: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 12px 0 6px;
}

@media (max-width: 750px) {
  .equipment {
    width: 100%;
  }
  .equipment .blue__box-title {
    max-width: 140px;
    margin: 0 auto;
  }
  .equipment__content_list-item--img {
    display: none;
  }
  .equipment__content_list {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .equipment__content_list-item:nth-child(2) {
    background: #efefef;
  }
  .equipment__content_list-item:nth-child(2)::after {
    display: none;
  }
  .equipment__content_list-item--title {
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: 500;
  }
  .equipment__content {
    padding: 25px 0 5px;
  }
}
@media (max-width: 520px) {
  .equipment__content_list-item--title {
    font-size: 1.1em;
  }
}
.professional__content_list {
  padding-bottom: 10px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
}

.professional__content_list-item {
  padding: 5px 10px 2px;
}
.professional__content_list-item:nth-child(2n+1) {
  background-color: #e9e9e9;
}
.professional__content_list-item--title {
  display: none;
  font-size: 1.3em;
  line-height: 25px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .professional__content_list-item {
    width: 33%;
  }
  .professional__content_list-item--img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
  }
}
@media (max-width: 750px) {
  .professional {
    text-align: center;
    width: 100%;
  }
  .professional .blue__box-title {
    max-width: 140px;
    margin: 0 auto;
  }
  .professional__content_list {
    padding: 25px 0 5px;
    flex-direction: column;
  }
  .professional__content_list-item {
    width: 100%;
  }
  .professional__content_list-item--img {
    display: none;
  }
  .professional__content_list-item--title {
    margin: 0;
    padding: 8px 0;
    display: block;
    width: 100%;
  }
  .professional__content_list-item--text {
    display: none;
  }
  .professional__content_list-item:nth-child(2n+1) {
    background: none;
  }
  .professional__content_list-item:nth-child(2) {
    background-color: #e9e9e9;
  }
}
@media (max-width: 520px) {
  .professional__content_list-item--title {
    font-size: 1.1em;
    padding: 6px 0;
  }
}
.news_preview {
  position: relative;
  margin: 35px 0 15px;
}
.news_preview .blue__box-title {
  top: 0;
  margin-bottom: 35px;
}
.news_preview .swiper-button-prev::after, .news_preview .swiper-button-next::after {
  content: url("../img/icons/news-arrow.png");
}
.news_preview .swiper-button-prev {
  transform: rotate(180deg);
  left: -40px;
  top: 60%;
}
.news_preview .swiper-button-next {
  top: 60%;
  right: -40px;
}

.news_previev__item {
  max-width: 520px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.news_previev__item img {
  width: 100%;
  height: 100%;
  max-width: 204px;
}

.news_preview__swiper .swiper-slide {
  display: flex !important;
  justify-content: center;
}

.news_previev__item_content {
  position: relative;
}
.news_previev__item_content-title {
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  color: #a21121;
}
.news_previev__item_content-text {
  margin: 3px 0 16px;
  font-size: 1.15em;
}
.news_previev__item_content-btn {
  font-size: 1.3em;
  text-transform: capitalize;
  color: #a21121;
  position: absolute;
  bottom: 0;
  font-weight: 700;
}

@media (max-width: 1240px) {
  .news_preview__swiper {
    width: 800px;
  }
  .news_previev__item img {
    display: none;
  }
  .news_previev__item_content-text {
    margin: 3px 0 16px;
  }
  .news_previev__item_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .news_previev__item_content-btn {
    position: relative;
  }
  .news_preview .swiper-button-next {
    right: 0;
  }
  .news_preview .swiper-button-prev {
    left: 0;
    z-index: 10;
  }
}
@media (max-width: 910px) {
  .news_preview__swiper {
    width: 100%;
  }
}
@media (max-width: 660px) {
  .news_previev__item_content {
    max-width: calc(100vw - 100px);
  }
}
@media (max-width: 380px) {
  .news_previev__item_content-title {
    font-size: 1.3em;
  }
  .news_previev__item_content-text {
    font-size: 1.05em;
  }
  .news_previev__item_content-btn {
    font-size: 1.3em;
  }
}
.contacts {
  margin: 10px 0 30px;
}
.contacts .blue__box-title {
  top: unset !important;
  bottom: 45px;
}

.contacts__title {
  margin: 12px 0 10px;
  color: #a21121;
  font-size: 1.6em;
  text-transform: uppercase;
}

.contacts__text {
  margin: 5px 0;
  font-size: 1.8em;
  line-height: 32px;
  text-align: center;
  opacity: 0.9;
}
@media (max-width: 600px) {
  .contacts__text {
    font-size: 1.4em;
  }
}

.contacts__box_content {
  margin: 15px 0 20px;
  padding: 15px 15px 35px;
  border: 2px solid #ccc;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .contacts__box_content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

.contacts__box_info {
  color: #a21121;
}

.contacts__box_info-title {
  font-size: 1.6em;
  font-weight: bold;
  text-transform: uppercase;
  font-weight: 700;
}

.contacts__box_info-subtitle {
  font-size: 1.4em;
  text-transform: uppercase;
  margin: 20px 0;
}

.contacts__box_info-subsubtitle {
  font-size: 1.4em;
  text-transform: uppercase;
}

.contacts__box_info-list {
  margin-left: 30px;
  margin-block: 18px 15px;
  list-style: disc;
}
.contacts__box_info-list--item {
  list-style: disc;
}

.contacts__box_info-row {
  display: flex;
  gap: 5px;
}
.contacts__box_info-row span {
  font-size: 1.2em;
}

.contacts__box_info, .contacts__box_map {
  flex-basis: 50%;
}
.contacts__box_info iframe, .contacts__box_map iframe {
  width: 100%;
}

.contacts__representetives-title {
  font-size: 1.4em;
  text-transform: uppercase;
  margin: 12px 0 10px;
  text-align: center;
  color: #a21121;
}

.contacts__representetives_list {
  display: flex;
  flex-direction: column;
}

.contacts__representetives_list-item:nth-child(2n) {
  background-color: rgba(162, 17, 33, 0.2);
}
.contacts__representetives_list-item p {
  padding: 6px 10px 6px;
  color: #a21121;
  font-size: 1.3em;
  letter-spacing: 1px;
  font-weight: 400;
}

.action {
  margin: 20px 0;
  background-color: rgb(120, 94, 181);
}

.action__inner {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 810px) {
  .action__inner {
    padding: 0 5px;
  }
}

.action__content {
  width: 55%;
  background-color: rgba(255, 255, 255, 0.9019607843);
  padding: 40px;
}

.action__img {
  height: 100%;
  width: 45%;
}

.action__content-title {
  font-size: 30px;
}

.action__content-text {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
}

.action__content_box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
}
.action__content_box svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .action__inner {
    padding: 0;
  }
  .action__content-title {
    font-size: 25px;
  }
}
@media (max-width: 815px) {
  .action__inner {
    flex-direction: column;
  }
  .action__img {
    width: 100%;
  }
  .action__content {
    width: 100%;
  }
}
.catalog {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 20px 0;
}

.catalog__title {
  font-size: 1.8em;
  font-weight: bold;
  text-transform: uppercase;
  color: #a21121;
  margin: 10px 0;
}

.catalog__aside {
  width: 27%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog__aside_box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog__aside_box-title {
  display: inline-block;
  width: 100%;
  font-weight: 500;
  padding: 15px 5px 15px 20px;
  background-color: #a21121;
  font-size: 1.3em;
  font-weight: bold;
  color: #fefefe;
  text-transform: uppercase;
}
.catalog__aside_list {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  gap: 6px;
}

.catalog__aside_list-item a {
  padding: 16px 5px 16px 15px;
  font-size: 1.2em;
  text-transform: uppercase;
  background-color: rgba(162, 17, 33, 0.2);
  color: #a21121;
  transition: background-color 0.3s, color 0.3s;
}
.catalog__aside_list-item.active a {
  background-color: #a21121 !important;
  color: #fff !important;
}

.catalog__content {
  width: 73%;
}

.catalog__head {
  background: #a21121;
}

.catalog__head_wrapper {
  margin-top: 8px;
  margin-left: 7px;
  padding: 7px 7px 8px;
  cursor: pointer;
  transition: margin-left 0.5s;
}

.catalog__head_wrapper-btn {
  font-size: 1.2em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: margin-left 0.5s;
}
.catalog__head_wrapper-btn::before {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 17px;
  left: 2px;
  width: 39px;
  margin-right: 16px;
  box-shadow: 0 0 0 2px #fff, 0 11px 0 2px #fff, 0 22px 0 2px #fff;
}

.catalog__head_nav, .catalog__head {
  display: none;
}

@media (max-width: 900px) {
  .catalog__aside {
    display: none;
  }
  .catalog__head_nav {
    display: block;
  }
  .catalog__head {
    display: block;
  }
  .catalog__content {
    width: 100%;
  }
  .catalog__aside_box-title {
    padding: 14px 5px 14px 15px;
    font-size: 1.1em;
  }
  .catalog__aside_list-item a {
    padding: 12px 5px 11px 15px;
    font-size: 1em;
  }
  .catalog__aside_list {
    margin-left: 20px;
  }
}
.catalog__head_wrapper.active .catalog__head_wrapper-btn {
  margin-left: 210px;
}

.catalog__head_nav {
  width: 200px;
  position: absolute;
  margin-left: -250px;
  padding-right: 10px;
  padding-bottom: 20px;
  background-color: #fff;
  z-index: 100;
  transition: margin-left 0.5s;
}
.catalog__head_nav.active {
  margin-left: 0;
}

@media (max-width: 450px) {
  .catalog__head_wrapper-btn span {
    display: none;
  }
}
.brend {
  display: flex;
  align-items: start;
  margin-bottom: 12px;
  border: 2px solid rgba(204, 204, 204, 0.8);
  padding: 15px 10px 30px;
  gap: 25px;
  position: relative;
}

.brend__media {
  width: 29%;
  position: relative;
  display: flex;
  justify-content: center;
}
.brend__media::after {
  content: "";
  display: none;
  width: 100%;
  height: 80%;
  background-color: #efefef;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: -1;
}

.brend__media-img {
  max-width: 155px;
  width: 100%;
  height: 100%;
}

.brend__content {
  padding-bottom: 50px;
  width: 67%;
  display: flex;
  flex-direction: column;
}
.brend__content-title {
  font-size: 1.3em;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.brend__content-text {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.4;
}
.brend__content-btn {
  display: inline-block;
  position: absolute;
  bottom: 22px;
  right: 42px;
  padding: 8px 12px;
  color: #333;
  font-size: 1.1em;
  text-transform: uppercase;
  background-color: #e3e3e3;
  transition: background-color 0.3s, color 0.3s;
  width: fit-content;
}
.brend__content-btn:hover {
  background: #a21121;
  color: #fff;
}

@media (max-width: 470px) {
  .brend {
    flex-direction: column;
  }
  .brend__content {
    width: 100%;
  }
  .brend__content-btn {
    left: 10px;
    right: auto;
  }
  .brend__media::after {
    display: none;
  }
  .brend__media {
    width: 50%;
  }
  .brend {
    gap: 10px;
  }
  .brend__content {
    padding-bottom: 40px;
  }
}
.problema {
  font-size: 1.3em;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 15px;
  background-color: #fff;
  color: #a21121;
}
.problema:nth-child(2n+1) {
  background-color: #cce3f1;
}

.metodika__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  width: 100%;
}

.metodika_card {
  width: 32%;
  min-height: 295px;
  padding: 25px 10px 0px 10px;
  border: 2px solid rgba(204, 204, 204, 0.8);
  background-color: #fff;
  color: #666;
  transition: border 0.4s, background-color 0.4s, color 0.4s;
  position: relative;
}
.metodika_card::after {
  content: "";
  display: none;
  height: 145px;
  width: 213px;
  background-color: #efefef;
  position: absolute;
  top: 14px;
  right: 10px;
}
.metodika_card:hover {
  background: #a21121;
  color: #fff;
}

.metodika_card-img {
  width: 218px;
  height: 142px;
  object-fit: contain;
  z-index: 5;
  position: relative;
}

.metodika_card-title {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 25px 0;
  z-index: 5;
  position: relative;
}

@media (max-width: 1100px) {
  .metodika__row {
    justify-content: center;
  }
  .metodika_card {
    width: 48% !important;
  }
  .metodika_card-img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .metodika_card {
    width: 100% !important;
    text-align: center;
    min-height: 251px;
  }
  .metodika_card::after {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
.product__nav {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.product__nav-item {
  display: inline-block;
  margin-right: 4px;
  padding: 8px 9px;
  font-size: 1.2em;
  text-transform: uppercase;
  background-color: #f2f8fb;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  background-color: #f2f8fb;
}
.product__nav-item.active, .product__nav-item:hover {
  color: #fefefe;
  background-color: #a21121;
}

.product__info {
  display: flex;
  gap: 15px;
}

.product__info_box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 55%;
}

.product__info_media {
  width: 45%;
}
.product__info_media img {
  width: 100%;
}

.product__info_gallery {
  user-select: none;
  position: relative;
}
.product__info_gallery img {
  width: 106px;
  height: 112px;
  cursor: pointer;
}

.product__info_nav {
  display: flex;
  gap: 5px 15px;
  height: fit-content;
  flex-wrap: wrap;
}

.product__info_nav-btn {
  width: 48%;
  padding: 4px 0 4px 5px;
  background-color: #f2f8fb;
  cursor: pointer;
  transition: background-color 0.4s, color 0.4s;
  height: fit-content;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.product__info_nav-btn:hover {
  background: #a21121;
}
.product__info_nav-btn:hover .fa {
  background: #fff;
  color: #a21121;
}
.product__info_nav-btn span {
  margin-left: 8px;
  font-size: 0.9em;
  word-wrap: nowrap;
  text-transform: uppercase;
  line-height: 35px;
  vertical-align: top;
}
.product__info_nav-btn .fa {
  width: 35px;
  height: 35px;
  text-align: center;
  background-color: #a21121;
  border-radius: 50%;
  transition: background-color 0.4s, color 0.4s;
}
.product__info_nav-btn .fa-phone {
  padding-top: 6px;
  font-size: 25px;
}
.product__info_nav-btn .fa-credit-card-alt {
  padding-top: 9px;
  font-size: 18px;
}
.product__info_nav-btn .fa-calculator {
  padding-top: 7px;
  padding-left: 4px;
  font-size: 21px;
}
.product__info_nav-btn .fa-comment-o {
  padding-top: 4px;
  font-size: 23px;
}

.product__info_gallery-page {
  display: none;
}
.product__info_gallery-page.active {
  display: flex;
  flex-wrap: wrap;
}

.product__info_gallery-arrow {
  z-index: 5;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 100px;
  cursor: pointer;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: url(../img/icons/product-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}
.product__info_gallery-arrow.prev {
  transform: rotate(180deg);
}
.product__info_gallery-arrow.next {
  left: auto;
  right: -20px;
}

.product__tabs {
  margin: 5px 0 30px;
}

.product__tab {
  display: none;
}
.product__tab.active {
  display: block;
}

.product__results_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__results_list-item {
  width: 100%;
  display: flex;
}
.product__results_list-item--box {
  display: flex;
  justify-content: center;
  width: 50%;
}
.product__results_list-item--box:last-child {
  background-color: #f7f7f7;
}
.product__results_list-item img {
  max-width: 240px;
  max-height: 240px;
  height: 100%;
  width: 100%;
}

@media (max-width: 1200px) {
  .product__nav {
    flex-wrap: wrap;
  }
  .product__nav-item {
    width: 49%;
  }
  .product__info_nav {
    flex-direction: column;
  }
  .product__info_nav-btn {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .product__info_box {
    display: contents;
  }
  .product__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .product__info_media {
    width: 100%;
  }
  .product__info_gallery {
    grid-column: span 2;
  }
  .product__info_gallery img {
    width: 25%;
    object-fit: contain;
  }
  .product__info_gallery-arrow.next {
    right: 0;
  }
  .product__info_gallery-arrow.prev {
    left: 0;
  }
}
@media (max-width: 600px) {
  .product__info {
    display: flex;
    flex-direction: column;
  }
  .product__tab {
    white-space: wrap;
  }
}
@media (max-width: 450px) {
  .product__nav-item {
    width: 100%;
  }
  .catalog__title {
    font-size: 1.4em;
  }
}
.news__bottom {
  margin-top: 50px;
  border-top: 1px solid gray;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.news__bottom-link {
  font-size: 1.3em;
  text-transform: uppercase;
  color: #a21121;
}

.search {
  padding: 50px 0;
}
.search__title {
  font-size: 35px !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: 30px !important;
}
.search__empty {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}
.search__results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search__item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 20px !important;
  font-weight: 500 !important;
  padding: 10px 7px !important;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  width: fit-content;
  border-radius: 10px;
}
.search__item:hover {
  color: #a21121;
}

.header__top_contacts_wrapper .header__search {
  display: none;
}

/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}