@import url(https://fonts.googleapis.com/css?family=ABeeZee:regular,italic);
@charset "UTF-8";

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #d9d9d9;
  background-color: #000;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0px 15px;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.select__value:before {
  content: "";
  align-self: stretch;
  flex: 0 0 10px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}

._select-open .select__value:before {
  transform: rotate(-180deg);
}

.select__text {
  flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #fff;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #000;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #000;
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #000;
  }
}

.select__row {
  display: inline-flex;
  align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  background: #000;
  height: 100%;
  min-width: 320px;
}

body {
  color: #fff;
  line-height: 1;
  font-family: "";
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wrapper>main {
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  max-width: 64.375rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

/*
.icon-menu {
	display: none;
	@media (max-width: $mobile) {
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span,
		&::before,
		&::after {
			content: "";
			transition: all 0.3s ease 0s;
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
		}
		&::before {
			top: 0px;
		}
		&::after {
			bottom: 0px;
		}
		span {
			top: calc(50% - 1px);
		}
		.menu-open & {
			span {
				transform: scale(0);
			}
			&::before {
				transform: rotate(-45deg);
				top: calc(50% - 1px);
			}
			&::after {
				transform: rotate(45deg);
				bottom: calc(50% - 1px);
			}
		}
	}
}
*/
.header {
  background-color: #000;
  padding: 0px;
}

.container-header {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  position: relative;
  justify-content: space-between;
  display: flex;
  padding: 12px 32px 10px 32px;
}

.container-header__social {
  position: absolute;
  left: 40%;
}

@media (max-width: 61.99875em) {
  .container-header__social {
    left: 30%;
  }
}

.country-header {
  display: flex;
  gap: 18px;
  color: #fff;
}

.country-header__country {
  opacity: 33%;
  font-family: ABeeZee;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: center;
}

@media (max-width: 47.99875em) {
  .country-header__country {
    display: none;
  }
}

.country-header__country-name {
  opacity: 60%;
  font-family: ABeeZee;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: center;
}

.icon-social {
  display: flex;
  align-items: center;
  gap: 27px;
}

@media (max-width: 61.99875em) {
  .icon-social {
    gap: 5px;
  }
}

@media (max-width: 47.99875em) {
  .icon-social {
    display: none;
  }
}

.icon-social__img {
  transition: 0.2s;
}

.icon-social__img:hover {
  transform: scale(1.2);
}

.time-header {
  display: flex;
  gap: 24px;
  color: #fff;
  opacity: 60%;
}

@media (max-width: 47.99875em) {
  .time-header {
    gap: 10px;
  }
}

.time-header__img {
  padding-right: 8px;
}

@media (max-width: 47.99875em) {
  .time-header__text {
    display: none;
  }
}

@media (max-width: 47.99875em) {
  .time-header__time {
    display: none;
  }
}

.header__container {
  display: flex;
  justify-content: center;
}

.footer__body {
  display: flex;
}

@media (max-width: 837px) {
  .footer__body {
    flex-direction: column-reverse;
  }
}

.footer__left {
  flex: 0 1 50%;
}

.footer__right {
  flex: 0 1 50%;
}

.left-footer {
  display: flex;
  flex-direction: column;
}

.left-footer__body {
  display: flex;
  flex-direction: column;
  max-width: 410px;
}

@media (max-width: 837px) {
  .left-footer__body {
    max-width: 100%;
  }
}

.left-footer__wrap-logo {
  margin-bottom: 60px;
}

@media (max-width: 837px) {
  .left-footer__img {
    display: none;
  }
}

.left-footer__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: #C4C4C4;
  margin-bottom: 62px;
}

@media (max-width: 837px) {
  .left-footer__text {
    display: none;
  }
}

.left-footer__question {
  font-family: ABeeZee;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: #C4C4C4;
}

.left-footer__call {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 30px;
}

.left-footer__time {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: #C4C4C4;
}

.left-footer__info {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 30px;
}

.left-footer__wrap-icon {
  display: flex;
  align-items: center;
}

.left-footer__soc {
  margin-bottom: 30px;
  display: flex !important;
}

@media (max-width: 837px) {
  .left-footer__soc {
    align-items: center;
    order: 1;
    justify-content: center;
    margin-top: 43px;
  }
}

.left-footer__title-buy {
  color: #C4C4C4;
}

.left-footer__buy {
  margin-bottom: 160px;
}

.left-footer__rights-1 {
  color: #C4C4C4;
}

@media (max-width: 837px) {
  .left-footer__rights-1 {
    display: none;
  }
}

.left-footer__rights-2 {
  color: #C4C4C4;
}

@media (max-width: 837px) {
  .left-footer__rights-2 {
    display: none;
  }
}

@media (max-width: 837px) {
  .buy-footer {
    display: none;
  }
}

.right-footer {
  display: flex;
  flex-direction: column;
}

.right-footer__img {
  height: 70%;
  width: 70%;
}

.right-footer__wrap-txt {
  display: flex;
  justify-content: space-around;
  margin-bottom: 92px;
}

@media (max-width: 837px) {
  .right-footer__wrap-txt {
    margin-bottom: 30px;
  }
}

.right-footer__wrap-logo {
  display: none;
}

@media (max-width: 837px) {
  .right-footer__wrap-logo {
    display: flex;
  }
}

.right-footer__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
  margin-bottom: 11px;
}

.right-footer__ul {
  color: #C4C4C4;
}

@media (max-width: 837px) {
  .right-footer__img-phone {
    width: 300px;
  }
}

@media (max-width: 837px) {
  .right-footer__img-phone {
    display: none;
  }
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #d9d9d9;
  background-color: #000;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0px 15px;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.select__value:before {
  content: "";
  align-self: stretch;
  flex: 0 0 10px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}

._select-open .select__value:before {
  transform: rotate(-180deg);
}

.select__text {
  flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #fff;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #000;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #000;
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #000;
  }
}

.select__row {
  display: inline-flex;
  align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}

.button._fw {
  width: 100%;
}

.icon-menu {
  display: none;
}

@media (max-width: 47.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 20;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0px;
  }

  .icon-menu::after {
    bottom: 0px;
  }

  .icon-menu span {
    top: calc(50% - 1px);
  }

  .menu-open .icon-menu {
    display: flex;
  }

  .menu-open .icon-menu span {
    transform: scale(0);
  }

  .menu-open .icon-menu::before {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .menu-open .icon-menu::after {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

.page {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.header-logo {
  margin-bottom: 22px;
  color: #fff;
}

.header-logo__about {
  padding: 0px 30px;
}

@media (max-width: 47.99875em) {
  .header-logo__about {
    flex-direction: column !important;
  }
}

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

.searchLogo__src {
  opacity: 70%;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
}

@media (max-width: 47.99875em) {
  .searchLogo__search {
    order: 2;
  }
}

@media (max-width: 47.99875em) {
  .searchLogo__logo {
    order: 1;
  }
}

@media (max-width: 47.99875em) {
  .searchLogo__logo_header-two {
    margin-left: -70px;
  }
}

.searchLogo__icon_about {
  gap: 8px !important;
  display: flex;
  order: 3;
}

@media (max-width: 47.99875em) {
  .searchLogo__icon {
    order: 3;
  }
}

.icon-search {
  cursor: pointer;
}

@media (max-width: 47.99875em) {
  .icon-search {
    margin-right: 5px;
  }
}

.icon-search__wrap-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 47.99875em) {
  .icon-search__text {
    display: none;
  }
}

.icon-logo {
  display: flex;
  gap: 37px;
}

.icon-logo__search-form {
  display: none;
  position: relative;
  z-index: 22;
}

.icon-logo__form-input {
  background: #131218;
  border: #cc7408 1px solid;
  border-radius: 5px;
  padding: 10px 0px 10px 5px;
  color: #fff;
}

@media (max-width: 47.99875em) {
  .header__menu {
    flex: 0 1 10%;
    align-items: center;
  }
}

.menu {
  display: flex;
  justify-content: center;
}

@media (max-width: 440px) {
  .menu__icon {
    margin-left: -120px;
  }
}

.menu__body {
  z-index: 11;
}

@media (max-width: 47.99875em) {
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: left 0.3 ease 0s;
    padding-bottom: 1.875rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 66.25em) {
  .menu__body {
    padding-top: 1.375rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20em) and (max-width: 66.25em) {
  .menu__body {
    padding-top: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
  }
}

@media (max-width: 47.99875em) and (max-width: 20em) {
  .menu__body {
    padding-top: 1.375rem;
  }
}


.menu__body::before {
  content: "";
  top: 0;
  position: fixed;
  width: 100%;
  left: -100%;
  transition: left 0.3s ease 0s;
  background-color: #000;
  height: clamp(31.25rem, 31.25rem + 0vw, 31.25rem)
}


@media (max-width: 47.99875em) {
  .menu__body::before {
    content: "";
    top: 0;
    position: fixed;
    width: 100%;
    left: -100%;
    transition: left 0.3s ease 0s;
    background-color: #000;
  }
}

@media (max-width: 47.99875em) and (min-width: 66.25em) {
  .menu__body::before {
    height: 31.25rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20emf) and (max-width: 66.25em) {
  .menu__body::before {
    height: clamp(31.25rem, 31.25rem + 0vw, 31.25rem) !important;
  }
}

@media (max-width: 47.99875em) and (max-width: 20em) {
  .menu__body::before {
    height: 31.25rem;
  }
}

@media (max-width: 47.99875em) {
  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }
}

.menu__list {
  display: flex;
  gap: 18px;
}

.menu__list_about {
  align-items: center;
}

@media (max-width: 47.99875em) {
  .menu__list {
    visibility: hidden;
  }

  .menu-open .menu__list {
    position: relative;
    visibility: visible;
    display: flex;
    flex-direction: column;
    z-index: 33;
  }
}

.menu__item {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
}

.menu__link {
  cursor: pointer;
}

.menu__link:hover {
  text-decoration: underline;
}

@media (max-width: 47.99875em) {
  .searchLogo {
    flex-direction: row;
  }
}

.searchLogo__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex: 0 1 90%;
}

.searchLogo__body_about {
  gap: 10px;
}

@media (max-width: 441px) {
  .searchLogo__body {
    justify-content: space-between;
    padding-right: 30px;
  }
}

@media (max-width: 47.99875em) {
  .icon-logo {
    gap: 5px;
  }
}

._searchlogomobile {
  display: none;
}

@media (max-width: 47.99875em) {
  ._searchlogomobile {
    display: flex;
  }
}

.main-sld {
  position: relative;
  padding: 0px;
}

.main-sld__slider {
  height: 400px;
  margin-bottom: 142px;
}

.slide-main {
  position: relative;
}

.slide-main__button {
  border-radius: 6px;
  padding: 15px 45px 12px 45px;
  background: rgba(216, 119, 0, 0.74);
}

.slide-main__wrap-text {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30%;
  left: 50%;
}

@media (max-width: 61.99875em) {
  .slide-main__wrap-text {
    top: 0px;
  }
}

@media (max-width: 61.99875em) {
  .slide-main__wrap-text {
    left: 25%;
  }
}

@media (max-width: 400px) {
  .slide-main__wrap-text {
    left: 20%;
  }
}

.slide-main__title {
  font-family: ABeeZee;
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
}

@media (min-width: 66.25em) {
  .slide-main__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .slide-main__title {
    font-size: clamp(0.9375rem, 0.3699324324rem + 2.8378378378vw, 2.25rem);
  }
}

@media (max-width: 20em) {
  .slide-main__title {
    font-size: 0.9375rem;
  }
}

@media (max-width: 47.99875em) {
  .slide-main__title {
    color: #fff;
  }
}

.slide-main__name {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  color: #8f8f8f;
  margin-bottom: 35px;
}

@media (min-width: 66.25em) {
  .slide-main__name {
    font-size: 1.4375rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .slide-main__name {
    font-size: clamp(0.75rem, 0.4527027027rem + 1.4864864865vw, 1.4375rem);
  }
}

@media (max-width: 20em) {
  .slide-main__name {
    font-size: 0.75rem;
  }
}

@media (max-width: 47.99875em) {
  .slide-main__name {
    margin-bottom: 4px;
    color: #fff;
  }
}

.slide-main__type {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  color: #8f8f8f;
  margin-bottom: 30px;
}

@media (min-width: 66.25em) {
  .slide-main__type {
    font-size: 1.4375rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .slide-main__type {
    font-size: clamp(0.75rem, 0.4527027027rem + 1.4864864865vw, 1.4375rem);
  }
}

@media (max-width: 20em) {
  .slide-main__type {
    font-size: 0.75rem;
  }
}

@media (max-width: 47.99875em) {
  .slide-main__type {
    color: #fff;
  }
}

@media (max-width: 47.99875em) {
  .slide-main__bg {
    height: 200px;
  }
}

.slide-main__bg img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev-popular {
  position: absolute !important;
  top: 40% !important;
}

@media (max-width: 47.99875em) {
  .swiper-button-prev-popular {
    position: absolute !important;
    top: 30% !important;
  }
}

.swiper-button-next-popular {
  position: absolute !important;
  top: 40% !important;
}

@media (max-width: 47.99875em) {
  .swiper-button-next-popular {
    position: absolute !important;
    top: 30% !important;
  }
}

._active {
  display: flex;
}

@media (max-width: 61.99875em) {
  .main-card {
    padding: 0px;
  }
}

.main-card__body {
  margin-bottom: 20px;
}

.card-main {
  row-gap: 20px;
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 47.99875em) {
  .card-main {
    flex: 0 1 50%;
    gap: 0px;
  }
}

.items-card {
  background-color: #000;
  overflow: hidden;
  flex: 0 1 48%;
  height: 305px;
  position: relative;
}

@media (max-width: 47.99875em) {
  .items-card {
    flex: 0 1 45%;
  }
}

@media (min-width: 66.25em) {
  .items-card {
    height: 19.0625rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .items-card {
    height: clamp(6.375rem, 0.8885135135rem + 27.4324324324vw, 19.0625rem);
  }
}

@media (max-width: 20em) {
  .items-card {
    height: 6.375rem;
  }
}

@media (min-width: 66.25em) {
  .items-card {
    width: 30.875rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .items-card {
    width: clamp(19.0625rem, 13.9543918919rem + 25.5405405405vw, 30.875rem);
  }
}

@media (max-width: 20em) {
  .items-card {
    width: 19.0625rem;
  }
}

.items-card::before {
  content: "";
  background: url("../img/main-card/icons/mediator.svg") 0 0 no-repeat;
  width: 165px;
  height: 150px;
  position: absolute;
  z-index: 33;
  top: 20%;
  left: 30%;
  object-fit: cover;
  background-size: contain;
}

@media (min-width: 66.25em) {
  .items-card::before {
    width: 10.3125rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .items-card::before {
    width: clamp(2.1875rem, -1.3260135135rem + 17.5675675676vw, 10.3125rem);
  }
}

@media (max-width: 20em) {
  .items-card::before {
    width: 2.1875rem;
  }
}

@media (min-width: 66.25em) {
  .items-card::before {
    height: 9.375rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .items-card::before {
    height: clamp(2.625rem, -0.2939189189rem + 14.5945945946vw, 9.375rem);
  }
}

@media (max-width: 20em) {
  .items-card::before {
    height: 2.625rem;
  }
}

@media (min-width: 20em) and (max-width: 68.75em) {
  .items-card::before {
    top: clamp(2.5rem, 2.7564102564rem + -1.2820512821vw, 1.875rem);
  }
}

@media (max-width: 20em) {
  .items-card::before {
    top: 2.5rem;
  }
}

@media (min-width: 20em) and (max-width: 25em) {
  .items-card::before {
    left: clamp(3.125rem, 8.125rem + -25vw, 1.875rem);
  }
}

@media (max-width: 20em) {
  .items-card::before {
    left: 3.125rem;
  }
}

.items-card__text {
  position: absolute;
  z-index: 22;
  top: 80%;
  left: 40%;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
}

@media (min-width: 66.25em) {
  .items-card__text {
    font-size: 1.5rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .items-card__text {
    font-size: clamp(0.75rem, 0.4256756757rem + 1.6216216216vw, 1.5rem);
  }
}

@media (max-width: 20em) {
  .items-card__text {
    font-size: 0.75rem;
  }
}

.items-card__bg {
  opacity: 56%;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orange {
  margin-bottom: 40px;
  margin-top: -100px;
  background-color: #cc7408;
  height: 500px;
}

@media (max-width: 47.99875em) {
  .orange {
    padding: 0px;
  }
}

@media (min-width: 20em) and (max-width: 48em) {
  .orange {
    height: clamp(18.75rem, 5.3571428571rem + 66.9642857143vw, 37.5rem);
  }
}

@media (max-width: 20em) {
  .orange {
    height: 18.75rem;
  }
}

.orange__body {
  padding-top: 90px;
}

.logo-orange {
  display: flex;
  flex-wrap: wrap;
  gap: 62px;
  align-items: center;
}

@media (min-width: 43.75em) and (max-width: 68.75em) {
  .logo-orange {
    gap: clamp(0.625rem, -5.0625rem + 13vw, 3.875rem);
  }
}

@media (max-width: 47.99875em) {
  .logo-orange {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
  }
}

@media (max-width: 47.99875em) {
  .logo-orange__hide {
    display: none;
  }
}

.logo-orange__logo {
  width: 108px;
  height: 64px;
}

@media (max-width: 47.99875em) {
  .logo-orange__logo {
    flex: 0 1 31%;
    gap: 0px;
  }
}

.logo-orange__logo_2 {
  width: 109px;
  height: 113px;
}

.logo-orange__logo_3 {
  width: 177px;
  height: 140px;
}

.logo-orange__logo_4 {
  width: 189px;
  height: 84px;
}

.logo-orange__logo_5 {
  width: 162px;
  height: 155px;
}

.logo-orange__logo_6 {
  width: 160px;
  height: 106px;
}

.logo-orange__logo_7 {
  width: 180px;
  height: 139px;
}

.logo-orange__logo_8 {
  width: 180px;
  height: 37px;
}

.logo-orange__logo_9 {
  width: 126px;
  height: 27px;
}

.logo-orange__logo_10 {
  width: 191px;
  height: 64px;
}

@media (max-width: 47.99875em) {
  .logo-orange__img {
    height: 70%;
    width: 70%;
  }
}

.popular-product__container {
  position: relative;
}

.popular-product__body {
  margin-bottom: 150px;
}

.popular-product__slider {
  margin-bottom: 65px;
}

.popular-product__slider_with-buy {
  margin-bottom: 30px;
}

.body-product {
  position: relative;
}

@media (max-width: 61.99875em) {
  .body-product {
    flex-direction: column;
    align-items: center;
  }
}

.slider-popular__swiper {
  gap: 20px;
  margin-bottom: 100px;
}

.card {
  display: flex;
  justify-content: center;
  border-radius: 20% 20% 0px 0px;
}

.card__wrap {
  width: 220px;
  background-color: #3B3A40;
}

.text-card {
  display: flex;
  flex-direction: column;
  padding: 11px 13px;
}

.text-card__title-1 {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-card__title-1__title-1_catalog {
  padding: 0px 23px !important;
}

.text-card__title-2 {
  font-family: ABeeZee;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-card__wrap-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.wrap-price__not-price {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: -19px;
  opacity: 60%;
}

.wrap-price__price {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: -4px;
}

.wrap-star {
  display: flex;
  flex-direction: column;
}

.wrap-star__review {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  opacity: 60%;
}

.gitar-photo__body {
  display: flex;
  gap: 19px;
  margin-bottom: 20px;
}

.gitar-photo__body_category {
  margin-bottom: 160px;
}

.card-gitar-photo {
  display: flex;
  position: relative;
  display: flex;
  justify-content: center;
}

@media (max-width: 47.99875em) {
  .card-gitar-photo {
    flex-direction: column;
    align-items: center;
  }
}

.card-gitar-photo__title {
  position: relative;
  z-index: 50;
  color: #fff;
  transform: translateY(-30px);
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
}

.card-gitar-photo__wrap-a {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.card-gitar-photo::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 2px;
  background-color: #cc7408;
  z-index: 33;
  top: -20px;
}

.card-gitar-photo__bg {
  overflow: hidden;
  height: 400px;
  width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.card-gitar-photo__bg:hover {
  height: 400px;
}

.card-gitar-photo__bg::before {
  z-index: 33;
  content: "";
  display: flex;
  position: absolute;
  height: 99px;
  width: 300px;
  background-color: #131218;
  opacity: 80%;
}

.guitar-form__body {
  display: flex;
  position: relative;
  margin-bottom: 100px;
}

.guitar-form__bg {
  display: flex;
  position: relative;
}

.guitar-form__bg::before {
  content: "";
  position: absolute;
  width: 1010px;
  height: 343px;
  background-color: #cc7408;
  opacity: 60%;
  border-radius: 0px 171.5px 171.5px 0px;
}

@media (min-width: 66.25em) {
  .guitar-form__bg::before {
    width: 63.125rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .guitar-form__bg::before {
    width: clamp(17.25rem, -2.5878378378rem + 99.1891891892vw, 63.125rem);
  }
}

@media (max-width: 20em) {
  .guitar-form__bg::before {
    width: 17.25rem;
  }
}

@media (max-width: 1063px) {
  .guitar-form__img {
    visibility: hidden;
  }
}

.guitar-form__lavka-form {
  position: absolute;
  left: 50%;
  z-index: 33;
  top: 70px;
}

@media (max-width: 991px) {
  .guitar-form__lavka-form {
    left: 25%;
  }
}

@media (max-width: 991px) {
  .guitar-form__lavka-form {
    left: 25%;
  }
}

@media (max-width: 661px) {
  .guitar-form__lavka-form {
    left: 5%;
  }
}

@media (max-width: 320px) {
  .guitar-form__lavka-form {
    top: 30px;
  }
}

.card-form {
  margin-right: 20px;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  padding: 11px 35px 11px 45px;
  color: #000;
  background-color: #fff;
  border-radius: 30px;
}

@media (max-width: 47.99875em) {
  .card-form {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.card-form__title-1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: center;
}

@media (min-width: 66.25em) {
  .card-form__title-1 {
    font-size: 1.4375rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .card-form__title-1 {
    font-size: clamp(0.875rem, 0.6317567568rem + 1.2162162162vw, 1.4375rem);
  }
}

@media (max-width: 20em) {
  .card-form__title-1 {
    font-size: 0.875rem;
  }
}

.card-form__title-2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 0em;
  text-align: center;
  color: #CC7408;
}

@media (min-width: 66.25em) {
  .card-form__title-2 {
    font-size: 3rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .card-form__title-2 {
    font-size: clamp(2.25rem, 1.9256756757rem + 1.6216216216vw, 3rem);
  }
}

@media (max-width: 20em) {
  .card-form__title-2 {
    font-size: 2.25rem;
  }
}

.card-form__title-3 {
  font-family: Doppio One;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  color: #BFB9B1;
}

@media (min-width: 66.25em) {
  .card-form__title-3 {
    font-size: 0.875rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .card-form__title-3 {
    font-size: clamp(0.75rem, 0.6959459459rem + 0.2702702703vw, 0.875rem);
  }
}

@media (max-width: 20em) {
  .card-form__title-3 {
    font-size: 0.75rem;
  }
}

.card-form__email-input {
  display: flex;
  flex: 1;
  background: #F2EAE0;
  padding: 15px 10px 12px 22px;
}

@media (min-width: 66.25em) {
  .card-form__email-input {
    font-size: 0.875rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .card-form__email-input {
    font-size: clamp(0.75rem, 0.6959459459rem + 0.2702702703vw, 0.875rem);
  }
}

@media (max-width: 20em) {
  .card-form__email-input {
    font-size: 0.75rem;
  }
}

.card-form__email-button {
  background-color: #cc7408;
}

.card-form__img {
  padding: 10px 26px 6px 23px;
}

.card-form__wrap-input {
  gap: 11px;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.card-form__accept {
  font-family: ABeeZee;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(196, 196, 196, 0.6);
  opacity: 80%;
}

@media (min-width: 66.25em) {
  .card-form__accept {
    font-size: 0.875rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .card-form__accept {
    font-size: clamp(0.625rem, 0.5168918919rem + 0.5405405405vw, 0.875rem);
  }
}

@media (max-width: 20em) {
  .card-form__accept {
    font-size: 0.625rem;
  }
}

@media (max-width: 320px) {
  .card-form__accept {
    max-width: 150px;
    align-self: center;
    margin-bottom: 29px;
  }
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@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: #fff;
}

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

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

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

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

.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-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.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,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.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-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-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

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

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

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

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

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

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

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.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-popular,
.swiper-button-prev-popular {
  position: absolute !important;
  top: 50% !important;
  position: absolute;
  top: 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-popular.swiper-button-disabled,
.swiper-button-prev-popular.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

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

.swiper-button-prev-popular,
.swiper-rtl .swiper-button-next-popular {
  left: 10px;
  right: auto;
}

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

.swiper-button-next-popular,
.swiper-rtl .swiper-button-prev-popular {
  right: 10px;
  left: auto;
}

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

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

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

.swiper-horizontal>.swiper-pagination-popular-bullets,
.swiper-pagination-popular-bullets.swiper-pagination-popular-horizontal,
.swiper-pagination-popular-custom,
.swiper-pagination-popular-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-popular-vertical.swiper-pagination-popular-bullets,
.swiper-vertical>.swiper-pagination-popular-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

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

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

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

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

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

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

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

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

.swiper-pagination-popular-progressbar .swiper-pagination-popular-progressbar-fill {
  background: var(--swiper-pagination-popular-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-popular-progressbar .swiper-pagination-popular-progressbar-fill {
  transform-origin: right top;
}

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

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

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

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

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  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;
}

.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%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

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

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

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.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,
.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-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

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

.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-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-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-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;
}

.swiper-pagination-popular-bullet {
  width: 40px;
  height: 5px;
  border-radius: 0px;
  background-color: #c0c0c0;
}

.swiper-pagination-popular-bullet-active {
  background-color: #fff;
}

.title-pop-body-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  font-family: ABeeZee;
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 40px;
}

.title-pop-body-product::after {
  margin-top: 10px;
  content: "";
  display: flex;
  height: 2px;
  width: 200px;
  background-color: #cc7408;
  margin-bottom: 22px;
}

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

.people {
  position: relative;
}

.people::before {
  content: "";
  display: block;
  width: 773px;
  height: 455px;
  position: absolute;
  background-color: #cc7408;
  opacity: 60%;
  border-radius: 0px 227.5px 227.5px 0px;
  top: 30%;
}

.people__container {
  margin-bottom: 80px;
}

.people__we::after {
  width: 300px !important;
}

.people__we_reviews {
  margin-bottom: 0px !important;
}

.cards-people {
  justify-content: center;
  align-items: center;
  display: flex;
  column-gap: 17px;
  row-gap: 30px;
  flex-wrap: wrap;
}

.cards-people__item {
  position: relative;
  z-index: 44;
}

.item-people {
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

.item-people__bg {
  width: 300px;
  height: 400px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0px 24px 50px 17px;
  position: relative;
}

.item-people__bg:hover .item-people__name-bg {
  opacity: 1;
}

.item-people__bg:hover .item-people__text-bg {
  opacity: 60%;
}

.item-people__bg:hover::before {
  opacity: 45%;
}

.item-people__bg::before {
  content: "";
  display: flex;
  background-color: #000;
  opacity: 0%;
  transition: 0.5s;
  position: absolute;
  width: 300px;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 44;
}

.item-people__bg::before:hover {
  opacity: 30%;
}

.item-people__name-bg {
  margin-bottom: 20px;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  transition: 0.5s;
  opacity: 0;
  z-index: 55;
}

.item-people__text-bg {
  z-index: 55;
  position: relative;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}

.item-people__name {
  position: relative;
  z-index: 4;
  align-self: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
}

.we-are-here {
  content: "";
  position: relative;
}

@media (max-width: 580px) {
  .we-are-here {
    display: none;
  }
}

.we-are-here::before {
  content: "";
  display: block;
  width: 1167px;
  height: 725px;
  position: absolute;
  background-color: #cc7408;
  opacity: 60%;
  border-radius: 0px 370.5px 386.5px 0px;
  top: -40%;
}

.we-are-here__container {
  margin-bottom: 200px;
}

.we-are-here__body {
  display: flex;
}

.we-are-here__body_select {
  margin-bottom: 115px;
}

.body-here {
  display: flex;
}

.body-here__left {
  position: relative;
  z-index: 33;
  justify-content: center;
}

.left-body-here {
  display: flex;
  flex-direction: column;
  flex: 0 1 50%;
  align-items: flex-start;
  padding: 0px 50px 0px 100px;
}

.left-body-here__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 20px;
}

.left-body-here__text {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.left-body-here__text_select {
  background: #131218;
  box-shadow: -5px 5px 20px rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  position: relative;
  padding: 18px;
}

.left-body-here__text_select::before {
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  display: flex;
  height: 100%;
  width: 6px;
  background-color: #cc7408;
  border-radius: 5px 0px 0px 5px;
}

.left-body-here__icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.right-body-here {
  position: relative;
  gap: 32px;
  display: flex;
  flex-direction: column;
  flex: 0 1 50%;
  padding: 0px 50px;
}

.right-body-here::before {
  content: "";
  display: flex;
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #fff;
  left: 0px;
}

.right-body-here__wrap-text_wholesale {
  margin-bottom: 90px;
}

.right-body-here__wrap-text_contact {
  max-width: 600px;
  margin-bottom: 50px;
}

.text-block-body-productk-common__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 15px;
}

.text-block-body-productk-common__title_wholesale {
  font-size: 36px;
  max-width: 637px;
}

.text-block-body-productk-common__title_contact {
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-block-body-productk-common__txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.text-block-body-productk-common__txt_wholesale {
  max-width: 610px;
}

@media (max-width: 580px) {
  .adress {
    display: none;
  }
}

.adress__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 50px;
}

.adress__container_new {
  max-width: 1042px;
  box-shadow: -5px 5px 20px rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  padding: 40px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  margin-bottom: 100px;
}

.adress__body {
  display: flex;
}

.body-adress {
  gap: 50px;
  display: flex;
}

@media (max-width: 580px) {
  .body-adress {
    display: none;
  }
}

.body-adress__address-street {
  display: flex;
  flex-direction: column;
  flex: 0 1 23%;
}

.body-adress__transport {
  flex: 0 1 38%;
}

.body-adress__car {
  flex: 0 1 38%;
}

.text-block-common__txt_addres {
  margin-bottom: 50px;
}

@media (max-width: 580px) {
  .how-look {
    display: none;
  }
}

.how-look__container {
  margin-bottom: 115px;
}

.body-slider-look__pagination {
  margin-bottom: 32px;
}

.body-slider-look__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #3B3A40;
}

.body-slider-look__pagination {
  display: flex;
  justify-content: center;
}

.body-slider-look__swiper {
  margin-bottom: 22px;
}

img-logo__img .select-tool__container {
  margin-bottom: 100px;
}

.how-to-contact__container_contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 125px;
}

.how-to-contact__line-buttom {
  display: flex;
  flex-direction: column;
}

.how-to-contact__line-buttom::after {
  content: "";
  background-color: #242424;
  width: 90%;
  height: 3px;
  margin-top: -80px;
}

.how-to-contact__block {
  justify-content: space-between;
}

.block-contact {
  display: flex;
}

@media (max-width: 47.99875em) {
  .block-contact {
    flex-direction: column;
    align-items: center;
  }
}

.block-contact__left {
  flex: 0 1 50%;
}

.block-contact__right {
  flex: 0 1 50%;
}

.right-contact {
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 29.99875em) {
  .right-contact {
    padding-left: 70px;
    padding-right: 50px;
  }
}

.right-contact__column-one {
  flex: 0 1 30%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.right-contact__column-two {
  flex: 0 1 70%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.right-contact__item_contact {
  gap: 10px;
}

.item-contact {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.item-contact__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0em;
}

@media (max-width: 29.99875em) {
  .item-contact__title::before {
    display: none !important;
  }
}

.item-contact__title_call {
  position: relative;
}

.item-contact__title_call::before {
  content: "";
  display: flex;
  position: absolute;
  left: -40px;
  top: 0;
  width: 22px;
  height: 24px;
  background: url("../img/contact/icons/phone.svg") 0 0 no-repeat;
}

.item-contact__title_map {
  position: relative;
}

.item-contact__title_map::before {
  content: "";
  display: flex;
  position: absolute;
  left: -40px;
  top: 0;
  width: 22px;
  height: 24px;
  background: url("../img/contact/icons/place.svg") 0 0 no-repeat;
}

.item-contact__title_email {
  position: relative;
}

.item-contact__title_email::before {
  content: "";
  display: flex;
  position: absolute;
  left: -40px;
  top: 0;
  width: 22px;
  height: 24px;
  background: url("../img/contact/icons/mail.svg") 0 0 no-repeat;
}

.item-contact__title_inst {
  position: relative;
}

.item-contact__title_inst::before {
  content: "";
  display: flex;
  position: absolute;
  left: -40px;
  top: 0;
  width: 22px;
  height: 24px;
  background: url("../img/contact/icons/inst.svg") 0 0 no-repeat;
}

.item-contact__title_vk {
  position: relative;
}

.item-contact__title_vk::before {
  content: "";
  display: flex;
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  background: url("../img/contact/icons/vk.svg") 0 0 no-repeat;
}

.item-contact__title_youtube {
  position: relative;
}

.item-contact__title_youtube::before {
  content: "";
  display: flex;
  position: absolute;
  left: -40px;
  top: 0;
  width: 22px;
  height: 24px;
  background: url("../img/contact/icons/youtube.svg") 0 0 no-repeat;
}

.item-contact__link {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-decoration: underline;
}

@media (max-width: 47.99875em) and (min-width: 66.25em) {
  .item-contact__link {
    font-size: 0.875rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20em) and (max-width: 66.25em) {
  .item-contact__link {
    font-size: clamp(0.625rem, 0.5168918919rem + 0.5405405405vw, 0.875rem);
  }
}

@media (max-width: 47.99875em) and (max-width: 20em) {
  .item-contact__link {
    font-size: 0.625rem;
  }
}

.how-to-get-there__container {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.how-to-get-there__body {
  display: flex;
}

.body-there {
  display: flex;
  gap: 50px;
}

@media (max-width: 900px) {
  .body-there {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
}

.body-there__text {
  flex: 0 1 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.body-there__gallery {
  flex: 0 1 54%;
}

.people__we_there {
  align-self: flex-start !important;
}

.gallery-there {
  display: grid;
  grid-template-columns: 259px 259px;
  grid-template-rows: 252px 252px;
  gap: 8px;
}

@media (max-width: 545px) {
  .gallery-there {
    grid-template-columns: 150px 150px;
    grid-template-rows: 150px 150px;
  }
}

@media (max-width: 545px) {
  .gallery-there__img {
    width: 100%;
    height: 100%;
  }
}

.with-buy__container {
  margin-bottom: 100px;
}

.delivery__wrap-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delivery__wrap-card-body_product {
  display: none;
}

.delivery__container {
  margin-bottom: 150px;
}

.body-delivery {
  padding: 25px;
  border: 1px solid #FFFFFF;
  border-radius: 0px;
}

.body-delivery:last-child {
  border-radius: 0px 0px 20px 20px;
}

.body-delivery:first-child {
  border-radius: 20px 20px 0px 0px;
}

.body-delivery__title {
  font-family: ABeeZee;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 0px;
}

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

@media (max-width: 47.99875em) {
  .cards-delivery {
    flex-direction: column;
    align-items: center;
  }
}

.cards-delivery__title {
  font-family: ABeeZee;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.item-delivery {
  flex: 0 1 33.3333%;
}

.item-delivery__title {
  font-family: ABeeZee;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.wrap-txt-delivery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 47.99875em) {
  .wrap-txt-delivery {
    align-items: center;
  }
}

.wrap-txt-delivery__title {
  color: #C4C4C4;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.wrap-txt-delivery__txt {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

@media (max-width: 47.99875em) {
  .wrap-txt-delivery__txt {
    align-items: center;
    text-align: center;
  }
}

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

@media (max-width: 47.99875em) {
  .body-delivery {
    align-items: center;
  }
}

.video-deliery {
  position: relative;
}

.video-deliery::before {
  content: "";
  background-color: #D87700;
  width: 50%;
  height: 725px;
  display: flex;
  position: absolute;
  border-radius: 0px 370.5px 386.5px 0px;
  opacity: 60%;
  top: -200px;
  left: 0;
  z-index: -2;
}

.video-deliery__body {
  margin-bottom: 45px;
}

.video-deliery__container {
  display: flex;
  flex-direction: column;
  margin-bottom: 200px;
}

.video-deliery__body {
  display: flex;
}

.body-video-delivery {
  gap: 20px;
}

@media (max-width: 61.99875em) {
  .body-video-delivery {
    flex-direction: column;
    align-items: center;
  }
}

.body-video-delivery__text {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.body-video-delivery__text-block {
  flex: 0 1 50%;
}

.text-block-video-delivery {
  display: flex;
  flex-direction: column;
}

.text-block-video-delivery__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-block-video-delivery__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
  display: flex;
  align-items: center;
}

.text-block-video-delivery__text::before {
  content: "";
  width: 68px;
  height: 3px;
  background-color: #cc7408;
  margin: 0px 12px 0px 0px;
}

.body-reviews__button-txt {
  margin-bottom: 20px;
}

.button-reviews {
  gap: 5px;
  display: flex;
  justify-content: center;
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
}

.button-reviews__right {
  color: #cc7408;
}

.button-reviews__block-comment {
  margin-bottom: 83px;
  position: relative;
  z-index: 33;
}

.comment-block {
  gap: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  padding: 50px 90px;
}

.comment-block__wrap-button-person {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(196, 196, 196, 0.6);
}

.comment-block__person-data {
  flex: 0 1 240px;
  text-decoration: underline;
}

.comment-block__button {
  background-color: #cc7408;
  color: #fff;
  padding: 13px 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  border-radius: 5px;
}

.comment-block__title-form {
  color: #cc7408;
}

@media (min-width: 66.25em) {
  .comment-block {
    padding-left: 5.625rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .comment-block {
    padding-left: clamp(0.625rem, -1.5371621622rem + 10.8108108108vw, 5.625rem);
  }
}

@media (max-width: 20em) {
  .comment-block {
    padding-left: 0.625rem;
  }
}

@media (min-width: 66.25em) {
  .comment-block {
    padding-right: 5.625rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .comment-block {
    padding-right: clamp(0.625rem, -1.5371621622rem + 10.8108108108vw, 5.625rem);
  }
}

@media (max-width: 20em) {
  .comment-block {
    padding-right: 0.625rem;
  }
}

.item-comment {
  display: flex;
}

.wrap-item-comment {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wrap-item-comment__name {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  margin-left: 25px;
}

.wrap-item-comment__txt {
  padding: 16px 26px 17px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
  background: #2A292E;
  border-radius: 15px;
}

.wrap-item-comment__button-txt {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  opacity: 13%;
  margin-left: 25px;
}

.comment-block__reviews-star {
  margin-bottom: 32px;
}

.comment-block__form-reviews {
  margin-bottom: 20px;
}

.form-reviews-comment-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-reviews-comment-block__input {
  box-shadow: 0px 4px 15px 1px rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  background: #131218;
  padding: 25px;
  color: #fff;
}

.form-reviews-comment-block__input_reviews {
  height: 180px;
}

.reviews-star-comment {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviews-star-comment__txt {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.video-reviews-slider {
  position: relative;
}

.video-reviews-slider::before {
  content: "";
  background-color: #D87700;
  width: 50%;
  height: 725px;
  display: flex;
  position: absolute;
  border-radius: 0px 370.5px 386.5px 0px;
  opacity: 60%;
  top: -200px;
  left: 0;
}

.video-reviews-slider__container {
  margin-bottom: 150px;
}

.message-input::after {
  position: absolute;
  content: "";
  background-color: #242424;
  width: 90%;
  height: 3px;
  margin-top: -35px;
}

.message-input__container {
  display: flex;
  flex-direction: column;
  margin-bottom: 115px;
}

.message-input__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 9px;
}

.form-message {
  display: flex;
  gap: 13px;
}

@media (max-width: 545px) {
  .form-message {
    flex-direction: column;
  }
}

.form-message__input {
  color: #fff;
  padding: 10px 38px;
  background: #131218;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}

.form-message__wrap-right {
  flex: 1;
}

.left-message {
  gap: 9px;
  display: flex;
  flex-direction: column;
}

.right-message {
  gap: 9px;
  display: flex;
  flex-direction: column;
}

.right-message__text-wrap {
  max-width: 240px;
  color: #C4C4C4;
  opacity: 60%;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.right-message__text {
  flex: 1;
}

.right-message__wrap-button-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  gap: 11px;
}

.right-message__button {
  color: #949396;
}

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

.catalog__header-product {
  margin-bottom: 30px;
}

.header-product-catalog {
  display: flex;
  gap: 90px;
}

@media (min-width: 64em) {
  .header-product-catalog {
    gap: 5.625rem;
  }
}

@media (min-width: 48em) and (max-width: 64em) {
  .header-product-catalog {
    gap: clamp(1.25rem, -11.875rem + 27.34375vw, 5.625rem);
  }
}

@media (max-width: 48em) {
  .header-product-catalog {
    gap: 1.25rem;
  }
}

.header-product-catalog__count-product-wrap {
  display: flex;
  gap: 5px;
  align-items: center;
}

.header-product-catalog__count {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.header-product-catalog__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.form-catalog {
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  display: flex;
  gap: 30px;
}

@media (min-width: 66.25em) {
  .form-catalog {
    gap: 1.875rem;
  }
}

@media (min-width: 20em) and (max-width: 66.25em) {
  .form-catalog {
    gap: clamp(0.3125rem, -0.3631756757rem + 3.3783783784vw, 1.875rem);
  }
}

@media (max-width: 20em) {
  .form-catalog {
    gap: 0.3125rem;
  }
}

.form-catalog__wrap-availability {
  display: flex;
  gap: 15px;
  align-items: center;
}

.form-catalog__availability-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.form-catalog__availability-button {
  background-color: #000 !important;
  border-radius: 0px !important;
  border: 2px solid #fff !important;
  width: 24px;
  height: 24px;
}

.form-catalog__sort-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-catalog__sort-name {
  opacity: 60%;
}

.form-catalog__show-wrap {
  display: flex;
  gap: 5px;
  align-items: center;
}

.form-catalog__show-name {
  opacity: 60%;
}

.many-type-rectangle {
  flex-wrap: wrap;
  display: flex;
  max-width: 26px;
  gap: 1px;
}

.many-type-rectangle__item {
  width: 7px;
  height: 7px;
  background-color: #cc7408;
}

.many-type-rectangle__item_long {
  background-color: #fff;
}

.one-type-rectangle {
  display: flex;
  gap: 4px;
  display: flex;
  flex-wrap: wrap;
  display: flex;
}

.one-type-rectangle__wrap-long {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.one-type-rectangle__wrap-short {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.one-type-rectangle__item {
  width: 27px;
  height: 7px;
  background-color: #fff;
}

.form-catalog__availability-button {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-catalog__availability-button+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.form-catalog__availability-button+label::before {
  content: "";
  display: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.form-catalog__availability-button:not(:disabled):not(:checked)+label:hover::before {
  border-color: #b3d7ff;
}

/* стили для активного состояния чекбокса (при нажатии на него) */
.form-catalog__availability-button:not(:disabled):active+label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.form-catalog__availability-button:focus+label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.form-catalog__availability-button:focus:not(:checked)+label::before {
  border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.form-catalog__availability-button:disabled+label::before {
  background-color: #e9ecef;
}

/* для элемента input c type="checkbox" */
.form-catalog__availability-button {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* для элемента label, связанного с .form-catalog__availability-button */
.form-catalog__availability-button+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
.form-catalog__availability-button+label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.form-catalog__availability-button:not(:disabled):not(:checked)+label:hover::before {
  border-color: #b3d7ff;
}

/* стили для активного чекбокса (при нажатии на него) */
.form-catalog__availability-button:not(:disabled):active+label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.form-catalog__availability-button:focus+label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.form-catalog__availability-button:focus:not(:checked)+label::before {
  border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии checked */
.form-catalog__availability-button:checked+label::before {
  border-color: #cc7408;
  background-color: #cc7408;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.form-catalog__availability-button:disabled+label::before {
  background-color: #e9ecef;
}

.checkbox {
  margin-bottom: 1em;
}

.wrap-rectangle-form-catalog {
  display: flex;
  gap: 7px;
}

.products__container {
  margin-bottom: 200px;
}

.products__wrap-text-block-card {
  padding: 0px 20px;
}

.products__wrap-text-content {
  padding: 20px;
}

.products__items {
  column-gap: 30px;
  row-gap: 30px;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(220px, 220px));
  margin-bottom: 50px;
  justify-content: center;
}

.products__item {
  background-color: #3B3A40;
  display: grid;
  grid-auto-flow: row;
  grid-template: auto 1fr minmax(40px, auto)/1fr;
}

.products__image {
  position: relative;
  padding: 0px 0px 100% 0px;
  margin: 0px 0px 20px 0px;
  height: 284px;
}

.products__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.products__name {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  margin: 0px 0px 20px 0px;
}

.products__buttons {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  line-height: 40px;
  justify-self: start;
  background-color: #77608d;
  padding: 0px 20px;
}

.bottom-page-products {
  align-items: center;
  display: flex;
  justify-content: center !important;
  display: flex;
  justify-content: space-between;
}

.bottom-page-products__first-arrow {
  cursor: pointer;
}

.bottom-page-products__last-arrow {
  cursor: pointer;
}

.bottom-page-products__first-arrow img {
  transform: rotate(180deg);
}

.bottom-page-products__wrap {
  align-items: center;
  display: flex;
  flex: 0 1 520px;
  justify-content: space-between;
}

.bottom-page-products__first {
  color: #A1A0A3;
  cursor: pointer;
}

.bottom-page-products__last {
  color: #A1A0A3;
  cursor: pointer;
}

.items-number {
  display: flex;
  gap: 8px;
}

.items-number__item {
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  opacity: 60%;
  position: relative;
  border: 2px solid #000;
  padding: 1px 10px;
  border-radius: 5px;
}

.items-number__item:hover {
  border: 2px solid #cc7408;
  padding: 1px 10px;
}

.one-type-products {
  gap: 15px;
  display: none;
  flex-direction: column;
}

.card-one-type-products {
  display: flex;
  gap: 14px;
}

.text-block-card-one-type-products {
  flex: 1;
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  background-color: #323136;
  border-radius: 0px 0px 40px 0px;
}

.text-block-card-one-type-products__wrap-title-favorite {
  display: flex;
  justify-content: space-between;
}

.text-block-card-one-type-products__wrap-title {
  display: flex;
  flex-direction: column;
}

.text-block-card-one-type-products__title-1 {
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-block-card-one-type-products__title-2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-block-card-one-type-products__price {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-block-card-one-type-products__wrap-img-button {
  display: flex;
}

.text-block-card-one-type-products__img-wrap {
  flex: 1;
}

.text-block-card-one-type-products__buttons {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.text-block-card-one-type-products__button {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  background-color: #AD9416;
  padding: 14px 5px;
  border-radius: 5px;
}

.text-block-card-one-type-products__button_add {
  font-family: ABeeZee;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  background-color: #323136;
}

.text-block-card-one-type-products__in-stock {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  color: #FFD600;
  opacity: 60%;
}

._active-one-product {
  display: flex;
}

.filter-products__wrap-title {
  display: flex;
  justify-content: space-between;
}

._active-products-item {
  display: grid;
}

._no-active-many-rectangle {
  background-color: #fff;
}

._no-active-one-rectangle {
  background-color: #fff;
}

._active-one-type-rectangle {
  background-color: #cc7408;
}

.product__body {
  margin-bottom: 70px;
}

.body-image {
  display: flex;
  gap: 20px;
}

.column-body-image {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.text-block-body-product {
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
}

.text-block-body-product__title-1 {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-block-body-product__title-2 {
  font-family: ABeeZee;
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.text-block-body-product__text {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

.text-block-body-product__in-stock {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(255, 214, 0, 0.6);
}

.bottom-text-block-body-product {
  display: flex;
  gap: 35px;
}

.wrap-left-product__price {
  font-family: ABeeZee;
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

.wrap-left-product__txt {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(255, 214, 0, 0.6);
}

.wrap-left-product__button {
  padding: 15px 35px;
  background-color: rgba(255, 214, 0, 0.6);
  flex: 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}

.wrap-right-product {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wrap-right-product__button {
  padding: 15px 10px;
  background: rgba(196, 196, 196, 0.13);
  opacity: 60%;
}

.body-bottom-product {
  display: flex;
  flex-direction: column;
}

.body-bottom-product__head {
  display: flex;
  justify-content: space-around;
}

.body-bottom-product__item {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
  padding: 10px 20px;
}

.parametr-product {
  padding: 40px;
  border: 2px #fff solid;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}

.parametr-product__li {
  font-family: ABeeZee;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  opacity: 60%;
}

._active-li {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px #fff solid;
  border-bottom: 0px;
}

._active-li::after {
  position: absolute;
  content: "";
  display: flex;
  background-color: #000;
  height: 5px;
  width: 100%;
  top: 100%;
  left: 0px;
}

._active-delivery {
  display: flex;
}

._lastClick {
  display: none !important;
}

.description-body-bottom-product {
  display: none;
}

.description-body-bottom-product__text {
  opacity: 60%;
}

.return-body-bottom-product {
  display: none;
}

.return-body-bottom-product__text {
  opacity: 60%;
}

.garant-body-bottom-product {
  display: none;
}

.garant-body-bottom-product__text {
  opacity: 60%;
}

.header-logo {
  position: relative;
}

.services-header-logo {
  display: none !important;
  position: absolute;
  z-index: 333;
  background-color: #000;
  gap: 55px;
  padding: 0px 150px 150px 150px;
  width: 40%;
  display: flex;
  flex-direction: column;
}

.services-header-logo__top {
  display: flex;
  gap: 40px;
  margin-bottom: 55px;
}

.services-header-logo__img-logo {
  padding: 5px;
}

.block-content-services-header-logo {
  align-self: center;
  justify-self: center;
  display: flex;
}

.block-content-services-header-logo__left {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  gap: 25px;
}

.block-content-services-header-logo__title {
  font-family: Abhaya Libre;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
}

.block-content-services-header-logo__list {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  cursor: pointer;
}

.block-content-services-header-logo__list:hover {
  text-decoration: underline;
}

.block-content-services-header-logo__right {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  border-left: 2px #fff solid;
  padding-left: 35px;
  gap: 25px;
}

.block-content-services-header-logo__text {
  font-family: ABeeZee;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
}

._activeService {
  display: block !important;
}

._active-product {
  display: grid !important;
}

@media (max-width: 47.99875em) {
  .card-one-type-products {
    flex-direction: column;
  }
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #fff;
}

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

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

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

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

.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-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.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,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.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-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-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

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

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

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

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

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

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

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.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-two,
.swiper-button-prev-two {
  position: absolute;
  top: 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-two.swiper-button-disabled,
.swiper-button-prev-two.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

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

.swiper-button-prev-two,
.swiper-rtl .swiper-button-next-two {
  left: 10px;
  right: auto;
}

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

.swiper-button-next-two,
.swiper-rtl .swiper-button-prev-two {
  right: 10px;
  left: auto;
}

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

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

.swiper-pagination-two {
  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-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
  position: relative;
  width: 40px !important;
  height: 5px !important;
  border-radius: 0px !important;
}

.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: 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: 10px;
  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-progressbar {
  background: 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: 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: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

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

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

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  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;
}

.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%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

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

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

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.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,
.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-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

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

.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-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-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-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;
}

.swiper-pagination-two {
  transform: translateY(7px);
}

.swiper-button-next_reviews::after {
  margin-top: 200px;
}

.swiper-button-prev_reviews::after {
  margin-top: 200px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@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: #fff;
}

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

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

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

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

.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-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.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,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.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-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-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

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

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

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

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

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

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

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

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

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

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

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 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-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  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: 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: 10px;
  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-progressbar {
  background: 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: 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: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

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

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

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  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;
}

.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%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

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

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

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.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,
.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-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

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

.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-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-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-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;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  border-radius: 0px;
  background-color: #c0c0c0;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.title-pop-body-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  font-family: ABeeZee;
  font-size: 36px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 40px;
}

.title-pop-body-product::after {
  margin-top: 10px;
  content: "";
  display: flex;
  height: 2px;
  width: 200px;
  background-color: #cc7408;
  margin-bottom: 22px;
}