@import url(https://fonts.googleapis.com/css?family=Nunito:200,300,regular,500,600,700,800,900,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
:root {
  --bg-color: #fff;
  --font-color: #191919;
  --primary-color: #d21020;
  --second-color: #191919;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Non-Standard, But More Styling-Capable Properties */
  /* Standardized Properties */
}
*::-webkit-scrollbar {
  cursor: pointer;
  width: 5px;
  background: #f5f5f5;
}
*::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--primary-color);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--primary-color) var(--bg-color);
    scrollbar-width: thin;
  }
}
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html,
body {
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

body {
  color: var(--font-color);
  line-height: 1;
  font-family: "Nunito", sans-serif;
  background: var(--bg-color);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea {
  outline: none;
  font-family: "Nunito", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background: transparent;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

a {
  cursor: pointer;
  color: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: inline-block;
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

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

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

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}
.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  margin: 0 auto;
  width: 100%;
  max-width: 1842px;
  padding-left: 36px;
  padding-right: 36px;
}
@media (max-width: 767.98px) {
  [class*=__container] {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.popup-show .popup::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 45px 16px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999999;
}
@media (min-width: 991.98px) {
  .lock .popup {
    padding-right: 21px;
  }
}
.popup::after {
  content: "";
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(86, 89, 115, 0.3);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: -1;
}

.popup_show {
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.popup__close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 10;
  width: 46px;
  height: 46px;
  background-color: #f2f4f9;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .popup__close {
    top: 13px;
    height: 13px;
  }
}
@media (max-width: 767.98px) {
  .popup__close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #fff;
  padding: 40px;
  width: 100%;
  max-width: 580px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 991.98px) {
  .popup__content {
    max-width: 538px;
    padding: 36px;
  }
}
@media (max-width: 767.98px) {
  .popup__content {
    padding: 25px;
    max-width: 343px;
  }
}
.lock .popup__content {
  visibility: visible;
}
.popup-user-agreement .popup__content {
  max-width: 800px;
}

.popup__text h3,
.popup__text p {
  text-align: center;
}
.popup__text .form {
  margin-top: 15px;
}
.popup__text .form__agreement {
  text-align: center;
  margin: 10px 0px;
}

.popup__body {
  margin-top: 20px;
}
.popup__body p,
.popup__body ul {
  text-align: left;
  margin: 10px 0px;
}
.popup__body > *:first-child {
  margin-top: 0px !important;
}
.popup__body > *:last-child {
  margin-bottom: 0px !important;
}

section {
  position: relative;
  margin: 80px 0px;
}
@media (max-width: 1439.98px) {
  section {
    margin-top: 70px;
  }
}
@media (max-width: 1169.98px) {
  section {
    margin-top: 60px;
  }
}
@media (max-width: 991.98px) {
  section {
    margin-top: 50px;
  }
}
@media (max-width: 1439.98px) {
  section {
    margin-bottom: 70px;
  }
}
@media (max-width: 1169.98px) {
  section {
    margin-bottom: 60px;
  }
}
@media (max-width: 991.98px) {
  section {
    margin-bottom: 50px;
  }
}

h1 {
  font-weight: 500;
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -0.01em;
}
@media (max-width: 1599.98px) {
  h1 {
    font-size: 52px;
  }
}
@media (max-width: 1439.98px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 1169.98px) {
  h1 {
    font-size: 36px;
  }
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-weight: 400;
  font-size: 50px;
  letter-spacing: -0.01em;
}
@media (max-width: 1599.98px) {
  h2 {
    font-size: 43.5px;
  }
}
@media (max-width: 1439.98px) {
  h2 {
    font-size: 37px;
  }
}
@media (max-width: 1169.98px) {
  h2 {
    font-size: 30.5px;
  }
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-weight: 400;
  font-size: 35px;
  letter-spacing: -0.01em;
}
@media (max-width: 1599.98px) {
  h3 {
    font-size: 31.25px;
  }
}
@media (max-width: 1439.98px) {
  h3 {
    font-size: 27.5px;
  }
}
@media (max-width: 1169.98px) {
  h3 {
    font-size: 23.75px;
  }
}
@media (max-width: 991.98px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-weight: 400;
  font-size: 25px;
  line-height: 110%;
}
@media (max-width: 1599.98px) {
  h4 {
    font-size: 23.25px;
  }
}
@media (max-width: 1439.98px) {
  h4 {
    font-size: 21.5px;
  }
}
@media (max-width: 1169.98px) {
  h4 {
    font-size: 19.75px;
  }
}
@media (max-width: 991.98px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
}
@media (max-width: 1599.98px) {
  h5 {
    font-size: 19px;
  }
}
@media (max-width: 1439.98px) {
  h5 {
    font-size: 18px;
  }
}
@media (max-width: 1169.98px) {
  h5 {
    font-size: 17px;
  }
}
@media (max-width: 991.98px) {
  h5 {
    font-size: 16px;
  }
}

p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.rs-btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 10;
  -webkit-transition: ease-out 0.5s;
  transition: ease-out 0.5s;
  border-radius: 7px;
  padding: 18.5px 30px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #fff;
  gap: 10px;
}
@media (max-width: 1599.98px) {
  .rs-btn {
    font-size: 17px;
  }
}
@media (max-width: 1439.98px) {
  .rs-btn {
    font-size: 16px;
  }
}
@media (max-width: 1169.98px) {
  .rs-btn {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .rs-btn {
    font-size: 14px;
  }
}
@media (max-width: 1599.98px) {
  .rs-btn {
    padding-top: 17.625px;
  }
}
@media (max-width: 1439.98px) {
  .rs-btn {
    padding-top: 16.75px;
  }
}
@media (max-width: 1169.98px) {
  .rs-btn {
    padding-top: 15.875px;
  }
}
@media (max-width: 991.98px) {
  .rs-btn {
    padding-top: 15px;
  }
}
@media (max-width: 1599.98px) {
  .rs-btn {
    padding-right: 27.5px;
  }
}
@media (max-width: 1439.98px) {
  .rs-btn {
    padding-right: 25px;
  }
}
@media (max-width: 1169.98px) {
  .rs-btn {
    padding-right: 22.5px;
  }
}
@media (max-width: 991.98px) {
  .rs-btn {
    padding-right: 20px;
  }
}
@media (max-width: 1599.98px) {
  .rs-btn {
    padding-bottom: 17.625px;
  }
}
@media (max-width: 1439.98px) {
  .rs-btn {
    padding-bottom: 16.75px;
  }
}
@media (max-width: 1169.98px) {
  .rs-btn {
    padding-bottom: 15.875px;
  }
}
@media (max-width: 991.98px) {
  .rs-btn {
    padding-bottom: 15px;
  }
}
@media (max-width: 1599.98px) {
  .rs-btn {
    padding-left: 27.5px;
  }
}
@media (max-width: 1439.98px) {
  .rs-btn {
    padding-left: 25px;
  }
}
@media (max-width: 1169.98px) {
  .rs-btn {
    padding-left: 22.5px;
  }
}
@media (max-width: 991.98px) {
  .rs-btn {
    padding-left: 20px;
  }
}
.rs-btn._btn-primary {
  -webkit-box-shadow: inset 0 0 0 0 var(--second-color);
          box-shadow: inset 0 0 0 0 var(--second-color);
  background-color: var(--primary-color);
}
@media (any-hover: hover) {
  .rs-btn._btn-primary:hover {
    -webkit-box-shadow: inset 0 -100px 0 0 var(--second-color);
            box-shadow: inset 0 -100px 0 0 var(--second-color);
  }
}
.rs-btn._btn-second {
  -webkit-box-shadow: inset 0 0 0 0 var(--primary-color);
          box-shadow: inset 0 0 0 0 var(--primary-color);
  background-color: var(--second-color);
}
@media (any-hover: hover) {
  .rs-btn._btn-second:hover {
    -webkit-box-shadow: inset 0 -100px 0 0 var(--primary-color);
            box-shadow: inset 0 -100px 0 0 var(--primary-color);
  }
}
.rs-btn._btn-white {
  -webkit-box-shadow: inset 0 0 0 0 var(--second-color);
          box-shadow: inset 0 0 0 0 var(--second-color);
  background-color: #fff;
  color: var(--second-color);
}
@media (any-hover: hover) {
  .rs-btn._btn-white:hover {
    color: #fff;
    -webkit-box-shadow: inset 0 -100px 0 0 var(--second-color);
            box-shadow: inset 0 -100px 0 0 var(--second-color);
  }
}

.form {
  width: 100%;
}
.form__wrapper {
  position: relative;
}
@media (min-width: 1169.98px), (max-width: 991.98px) and (min-width: 767.98px) {
  .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  .form__row > * {
    margin: 0px !important;
  }
  .form__row .rs-btn {
    padding-top: 0px;
    padding-bottom: 0px;
    height: 100%;
  }
}
.form__line {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.form__agreement {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  margin-top: 10px;
}
.form__agreement a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (any-hover: hover) {
  .form__agreement a:hover {
    text-decoration: none;
  }
}
@media (max-width: 991.98px) {
  .form__button {
    width: 100%;
    margin-top: 10px;
  }
}
.form__button .rs-btn {
  width: 100%;
  white-space: nowrap;
}

.rs-input {
  outline: none;
  width: 100%;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  border-radius: 6px;
  padding: 15px 20px;
  background: #f4f7f8;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--font-color);
}
.rs-input::-webkit-input-placeholder {
  color: #6f6f6f;
}
.rs-input::-moz-placeholder {
  color: #6f6f6f;
}
.rs-input:-ms-input-placeholder {
  color: #6f6f6f;
}
.rs-input::-ms-input-placeholder {
  color: #6f6f6f;
}
.rs-input::placeholder {
  color: #6f6f6f;
}

.rs-product {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .rs-product:hover .rs-product__img img:first-child {
    opacity: 0;
    visibility: hidden;
  }
  .rs-product:hover .rs-product__img img:last-child {
    opacity: 1;
    visibility: visible;
  }
}
@media (any-hover: hover) {
  .rs-collection .rs-product:hover .rs-product__img img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.rs-product__item {
  width: 100%;
  height: 100%;
}
.rs-product__img {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.rs-product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease 0s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease 0s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease 0s, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease 0s, transform 1s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.rs-product__img img:last-child {
  z-index: 0;
}
.rs-product__img img:first-child {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.rs-product__labels {
  position: absolute;
  z-index: 10;
  top: 15px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7px;
}
.rs-product__label {
  border-radius: 0 5px 5px 0;
  padding: 4px 17px;
  background: #f0ebdb;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #191919;
}
.rs-product__label--sale {
  background: var(--primary-color);
  color: #fff;
}
.rs-product__btn {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 22px;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  border-radius: 7px 7px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rs-product__desc {
  margin-top: 20px;
}
.rs-product__desc_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rs-product__desc_head h5 {
  line-height: 135%;
}
.rs-product__desc_head h5:last-child {
  white-space: nowrap;
}
.rs-product__desc_body {
  margin-top: 12px;
}
.rs-product__desc_body p {
  color: #6f6f6f;
  text-transform: uppercase;
}
.rs-product__name {
  position: absolute;
  padding: 20px 5px;
  top: 0;
  right: 0px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.01em;
  text-align: center;
}

.form-group {
  border: unset !important;
  border-radius: unset !important;
  padding: 0 !important;
  margin: 15px 0px !important;
}

.form-group label {
  display: block !important;
  margin-bottom: 10px !important;
}

.rs-text-block__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .rs-text-block__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 767.98px) {
  .rs-text-block__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
@media (max-width: 767.98px) {
  .rs-text-block__item {
    width: 100%;
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

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

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.swiper-button-prev:active, .swiper-button-prev:focus,
.swiper-button-next:active,
.swiper-button-next:focus {
  outline: none !important;
}
.swiper-button-prev::-moz-focus-inner,
.swiper-button-next::-moz-focus-inner {
  border: 0 !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0px;
}

.swiper-pagination-bullet:active, .swiper-pagination-bullet:focus {
  outline: none !important;
}
.swiper-pagination-bullet::-moz-focus-inner {
  border: 0 !important;
}

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

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

.swiper-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
}
.swiper-navigation .swiper-button-next,
.swiper-navigation .swiper-button-prev {
  width: auto;
  height: auto;
  background-color: transparent;
}
.swiper-navigation .swiper-button-next:not(:last-child),
.swiper-navigation .swiper-button-prev:not(:last-child) {
  margin-right: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: 0%;
  margin-top: 21px;
  width: auto;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.swiper-button-next svg path,
.swiper-button-prev svg path {
  stroke: var(--primary-color);
  -webkit-transition: stroke 0.3s ease 0s;
  transition: stroke 0.3s ease 0s;
}

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

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

.swiper-button-disabled {
  opacity: 1 !important;
}
.swiper-button-disabled svg path {
  stroke: #d0d0ce;
}

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

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

.swiper-pagination-fraction {
  color: rgba(255, 255, 255, 0.5);
  margin: 0px 20px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media (max-width: 991.98px) {
  .swiper-pagination-fraction {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    margin: 0px 10px;
  }
}

.swiper-pagination-current {
  color: #fff;
}

.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: 1px;
  left: 0;
  top: 0;
}

.swiper-pagination-progressbar {
  background: #d0d0ce;
  margin-top: 25px;
}

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

.rs-breadcrumbs {
  position: relative;
}
.rs-breadcrumbs__navigation {
  position: relative;
  padding: 26px 0px 30px;
}
@media (max-width: 1439.98px) {
  .rs-breadcrumbs__navigation {
    padding: 20px 0px;
  }
}
@media (max-width: 1169.98px) {
  .rs-breadcrumbs__navigation {
    padding: 15px 0px;
  }
}
.rs-breadcrumbs__navigation::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 91.526%;
  height: 1px;
  background-color: #d0d0ce;
  pointer-events: none;
  z-index: 10;
}
.rs-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rs-breadcrumbs__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #929292;
}
@media (max-width: 1439.98px) {
  .rs-breadcrumbs__list li {
    font-size: 14px;
  }
}
@media (max-width: 1169.98px) {
  .rs-breadcrumbs__list li {
    font-size: 12px;
  }
}
.rs-breadcrumbs__list li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .rs-breadcrumbs__list li > a:hover {
    color: var(--primary-color);
  }
}
.rs-breadcrumbs__list li:not(:last-child)::after {
  content: " / ";
  margin: 0px 4px;
}

.pagging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 60px;
}
@media (max-width: 1439.98px) {
  .pagging {
    margin-top: 30px;
  }
}
@media (max-width: 991.98px) {
  .pagging {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pagging__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  padding: 10px 20px;
  background: #fff;
  gap: 4px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #313131;
}
@media (max-width: 1439.98px) {
  .pagging__arrow {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media (max-width: 991.98px) {
  .pagging__arrow {
    padding: 8px 8px;
  }
  .pagging__arrow span {
    display: none;
  }
}
.pagging__arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagging__arrow svg path {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}
@media (any-hover: hover) {
  .pagging__arrow:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  .pagging__arrow:hover svg path {
    fill: #fff;
  }
}
.pagging__prev {
  margin-right: 6px;
}
.pagging__next {
  margin-left: 6px;
}
.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagging__list li:not(:last-child) {
  margin-right: 6px;
}
.pagging__item, .pagging__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #313131;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1439.98px) {
  .pagging__item, .pagging__more {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .pagging__item, .pagging__more {
    width: 34px;
    height: 34px;
  }
}
@media (any-hover: hover) {
  .pagging__item:hover, .pagging__more:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }
}
.pagging__item._active, .pagging__more._active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}


.rs-news__desc {margin-top: 15px;}