@font-face {
  font-weight: 100;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-100.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 200;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-200.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 300;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-300.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-400.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-500.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 600;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-600.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-700.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 800;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-800.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-weight: 900;
  font-style: normal;
  font-family: "Montserrat";
  src: url("/new/fonts/montserrat/m-900.woff2") format("woff2");
  font-display: swap;
}
:root {
  --white: #fff;
  --black: #000;
  --red: #f00;
  --red-second: #ff6766;
  --primary-50: #f3f5fb;
  --primary-100: #e4e7f5;
  --primary-200: #d0d6ed;
  --primary-300: #afbce1;
  --primary-400: #8998d1;
  --primary-500: #6d7ac4;
  --primary-600: #5961b7;
  --primary-700: #4f52a6;
  --primary-800: #444489;
  --primary-900: #3b3d6d;
  --primary-950: #292947;
  --gray-50: #f7f7f7;
  --gray-100: #ededed;
  --gray-200: #dedede;
  --gray-300: #c8c8c8;
  --gray-400: #adadad;
  --gray-500: #999999;
  --gray-600: #888888;
  --gray-700: #7b7b7b;
  --gray-800: #676767;
  --gray-900: #545454;
  --gray-950: #363636;
  --overlay-index: 20;
  --modal-index: 21;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html, body {
  background-color: #fff;
  color: #222;
  font-weight: 400;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
  font-feature-settings: "pnum" on, "lnum" on;
}

.main {
  display: flex;
  flex-direction: column;
  color: rgba(4, 4, 38, 0.85);
}

button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
button:focus {
  outline: none;
}

.container {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.overlay,
.mobile-menu--overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--overlay-index);
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  outline: 0;
  outline-offset: 0;
  border: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
}

.slider-slick {
  opacity: 0;
  transition: 0.6s;
}

.slider-slick.slick-initialized {
  opacity: 1;
}

.with-red-border {
  position: relative;
}
.with-red-border::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: var(--red);
  content: "";
}

.bordered-and-marked--top {
  position: relative;
  padding-top: 12px;
  width: 100%;
  border-top: 1px solid var(--gray-100);
}
.bordered-and-marked--top::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: var(--red);
  content: "";
}

.bordered-and-marked--bottom {
  position: relative;
  padding-bottom: 12px;
  width: 100%;
  border-bottom: 1px solid var(--gray-100);
}
.bordered-and-marked--bottom::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: var(--red);
  content: "";
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2.5);
  }
  78%, 100% {
    opacity: 0;
  }
}
.loader {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 99999;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__item {
  width: 20px;
  height: 20px;
  background: #0021f5;
  border-radius: 50%;
  background-color: #0021f5;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader__item::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0100ee;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 200ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

html, body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.custom-scroll {
  --scrollbar-thumb-color: var(--gray-300);
  --scrollbar-bg: transparent;
  --scrollbar-radius: 4px;
  --scrollbar-width: 4px;
}

.custom-scroll {
  scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-bg);
  scrollbar-width: thin;
}
.custom-scroll::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}
.custom-scroll::-webkit-scrollbar-track {
  background-color: var(--scrollbar-bg);
}
.custom-scroll::-webkit-scrollbar-thumb {
  border-radius: var(--scrollbar-radius);
  background-color: var(--scrollbar-thumb-color);
}

.hidden-scroll {
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}
.hidden-scroll::-webkit-scrollbar {
  display: none;
  background-color: transparent;
  color: transparent;
}
.hidden-scroll::-webkit-scrollbar-track {
  display: none;
  background-color: transparent;
  color: transparent;
}
.hidden-scroll::-webkit-scrollbar-thumb {
  display: none;
  background-color: transparent;
  color: transparent;
}

.benefits-list .benefits-item:nth-child(3) img {
  transform: translateX(-8px);
}
.benefits-list .benefits-item:nth-child(4) img {
  transform: translateX(-10px);
}
.benefits-list .benefits-item:nth-child(5) img {
  transform: translateX(-6px);
}

.benefits-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 26px;
  padding-bottom: 20px;
  transition: 0.2s;
}
.benefits-item:hover {
  background-color: #040426;
  box-shadow: 0 0 9px 2px rgba(255, 255, 255, 0.23);
}
.benefits-item:hover .benefits-item__text {
  color: var(--red);
}
.benefits-item:hover .benefits-item__hidden-text {
  opacity: 1;
}

.benefits-item.wide {
  display: flex;
  flex-direction: row;
  padding: 16px;
  gap: 16px;
}
.benefits-item.wide:hover .benefits-item__text {
  color: var(--white);
}
.benefits-item.wide .benefits-item__img {
  display: block;
  margin-bottom: 0;
  width: 60px;
  height: 60px;
}
.benefits-item.wide .benefits-item__img img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .benefits-item.wide .benefits-item__img {
    width: 100px;
    height: 100px;
  }
}
.benefits-item.wide .benefits-item__text {
  max-width: unset;
  text-align: left;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
}

.benefits-item__img {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  margin-bottom: 16px;
  height: 80px;
}

.benefits-item__text {
  max-width: 185px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  transition: 0.2s;
}

.benefits-item__hidden-text {
  margin-top: 20px;
  padding-right: 12px;
  padding-left: 12px;
  color: var(--white);
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  opacity: 0;
  transition: 0.2s;
}

.i-input {
  --input-wrapper-y-gap: 4px;
  --input-bg: var(--white);
  --input-border-radius: 5px;
  --input-border-width: 1px;
  --input-border-color: var(--gray-300);
  --input-height: 40px;
  --input-paddings-x: 16px;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-text-color: var(--black);
  --input-placeholder-color: var(--gray-400);
  --input-border-hover-color: var(--primary-400);
  --input-focus-border-color: var(--primary-400);
  --input-error-border-color: var(--red);
  --input-error-font-size: 14px;
  --input-error-font-weight: 400;
  --input-error-text-color: var(--red);
  --input-notice-font-size: 14px;
  --input-notice-font-weight: 400;
  --input-notice-text-color: var(--gray-400);
  --textarea-height: 140px;
}

input {
  font-feature-settings: "lnum";
}

.i-input {
  display: flex;
  flex-direction: column;
  gap: var(--input-wrapper-y-gap);
}

.i-input__inner {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.i-input__field {
  padding-right: var(--input-paddings-x);
  padding-left: var(--input-paddings-x);
  width: 100%;
  height: var(--input-height);
  outline: none;
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  background-color: var(--input-bg);
  color: var(--input-text-color);
  font-weight: var(--input-font-weight);
  font-size: var(--input-font-size);
  line-height: 1.2;
  transition: 0.2s;
}
.i-input__field::-moz-placeholder {
  color: var(--input-placeholder-color);
}
.i-input__field::placeholder {
  color: var(--input-placeholder-color);
}
.i-input__field::-webkit-outer-spin-button, .i-input__field::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.i-input__field[type=number] {
  -moz-appearance: textfield;
}

textarea.i-input__field {
  padding: var(--input-paddings-x);
  width: 100%;
  height: var(--textarea-height);
  resize: none;
}

.i-input__field:hover {
  border-color: var(--input-border-hover-color);
}
.i-input__field:focus {
  border-color: var(--input-focus-border-color);
}

.i-input .i-input-error {
  display: none;
}

.i-input.i-error .i-input-error {
  display: block;
}
.i-input.i-error .i-input-notice {
  display: none;
}
.i-input.i-error .i-input__field {
  border-color: var(--input-error-border-color);
}
.i-input.i-error .i-input__field:focus {
  outline-color: var(--input-error-border-color);
}

.i-input-error {
  padding-left: var(--input-paddings-x);
  color: var(--input-error-text-color);
  font-weight: var(--input-error-font-weight);
  font-size: var(--input-error-font-size);
  line-height: 1.2;
}
.i-input-error:empty {
  display: none;
}

.i-input .i-input-notice {
  padding-left: var(--input-paddings-x);
  color: var(--input-notice-text-color);
  font-weight: var(--input-notice-font-weight);
  font-size: var(--input-notice-font-size);
  line-height: 1.2;
}
.i-input .i-input-notice:empty {
  display: none;
}

.i-input.disabled {
  outline: none !important;
  opacity: 0.6 !important;
  filter: grayscale(1) !important;
  cursor: default !important;
  pointer-events: none !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}
.i-input.disabled .i-input__field {
  outline: none !important;
}
.i-input.disabled .i-input__field:-moz-read-only:focus {
  outline: none !important;
}
.i-input.disabled .i-input__field:hover, .i-input.disabled .i-input__field:focus, .i-input.disabled .i-input__field:active, .i-input.disabled .i-input__field:read-only:focus {
  outline: none !important;
}

.i-input.without-border-radius {
  --input-border-radius: 0px;
}

.i-input.i-input--search-filter .i-input__field {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom-width: 2px;
  padding: 0;
  height: 30px;
}

.i-input.i-input--counter .i-input__field {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding-left: 4px;
  padding-right: 4px;
}

.i-input.i-input--red {
  --input-border-hover-color: var(--red-second);
  --input-focus-border-color: var(--red-second);
}

.i-input--password .i-input__field {
  padding-right: 48px;
}
.i-input--password .password-control {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--input-placeholder-color);
  transition: 0.3s;
  transform: translateY(-50%);
}
.i-input--password .password-control:hover {
  color: var(--input-hover-border-color);
}

.i-select-wrapper {
  --select-x-padding: var(--input-paddings-x);
  --select-height: var(--input-height);
  --select-radius: var(--input-border-radius);
  --select-text-color: var(--input-text-color);
  --select-placeholder-color: var(--gray-400);
  --select-font-size: var(--input-font-size);
  --select-font-weight: var(--input-font-weight);
  --select-border-color: var(--input-border-color);
  --select-border-width: var(--input-border-width);
  --select-bg: var(--input-bg);
  --select-opened-border-color: var(--select-border-width) solid var(--primary-400);
  --select-arrow-size: 16px;
  --select-arrow-right-gap: 16px;
  --select-arrow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%237E8695' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='m13.28 5.967-4.346 4.346a1.324 1.324 0 0 1-1.867 0L2.721 5.967'/%3E%3C/svg%3E");
  --select-gap-to-menu: 8px;
  --select-menu-bg: var(--input-bg);
  --select-menu-margin-y: 4px;
  --select-menu-border-color: var(--input-border-color);
  --select-menu-item-paddings: 12px 16px;
  --select-menu-item-selected-bg: var(--gray-100);
  --select-menu-item-hovered-bg: var(--gray-100);
}

.i-select-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.i-select-wrapper.i-error .select2-container .selection .select2-selection {
  border-color: var(--input-error-border-color) !important;
}

.select2.select2-container .selection .select2-selection,
.select2.select2-container .selection .select2-selection.select2-selection--single {
  height: var(--select-height);
  border: var(--select-border-width) solid var(--select-border-color);
  border-radius: var(--select-radius);
  background-color: var(--select-bg);
}
.select2.select2-container .selection .select2-selection__rendered {
  padding-right: calc(var(--select-arrow-size) + var(--select-x-padding) + 8px);
  padding-left: var(--select-x-padding);
  color: var(--select-text-color);
  font-weight: var(--select-font-weight);
  font-size: var(--select-font-size);
  line-height: var(--select-height);
}
.select2.select2-container .selection .select2-selection__placeholder {
  color: var(--select-placeholder-color);
}
.select2.select2-container .selection .select2-selection__arrow {
  top: 50%;
  right: var(--select-arrow-right-gap);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--select-arrow-size);
  height: var(--select-arrow-size);
  transform: translateY(-50%);
}
.select2.select2-container .selection .select2-selection__arrow b {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  margin: 0;
  width: var(--select-arrow-size);
  height: var(--select-arrow-size);
  border: none;
  background-image: var(--select-arrow-icon);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg);
}
.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: none;
}
.select2-container.select2-container--open .select2-selection--single,
.select2-container.select2-container--open .select2-selection--multiple {
  border: var(--select-opened-border-color) !important;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-radius: var(--select-radius);
}

.select2-dropdown--below {
  margin-top: var(--select-gap-to-menu);
}

.select2-dropdown--above {
  margin-top: calc(0px - var(--select-gap-to-menu));
}

.select2-container .select2-dropdown {
  overflow: hidden;
  border: var(--select-border-width) solid var(--select-menu-border-color);
  border-radius: var(--select-radius);
  background-color: var(--select-menu-bg);
}
.select2-container .select2-results__option {
  padding: var(--select-menu-item-paddings);
  color: var(--select-text-color);
  font-weight: var(--select-font-weight);
  font-size: var(--select-font-size);
}
.select2-container .select2-results__options .select2-results__option--selected {
  background-color: var(--select-menu-item-selected-bg);
  color: var(--select-text-color);
}
.select2-container .select2-results__options .select2-results__option--highlighted {
  background-color: var(--select-menu-item-hovered-bg);
  color: var(--select-text-color);
}

.i-select-wrapper.without-border-radius {
  --select-radius: 0px;
}

.i-select-wrapper.i-select-wrapper--red {
  --select-opened-border-color: var(--select-border-width) solid var(--red-second) !important;
}

.i-select-wrapper.select-h-12 {
  --select-height: 50px;
}

.i-checkbox {
  --checkbox-wrapper-y-gap: 6px;
  --checkbox-size: 16px;
  --checkbox-to-content-gap: 8px;
  --checkbox-bg: var(--white);
  --checkbox-border-width: 1px;
  --checkbox-border-color: var(--gray-300);
  --checkbox-border-radius: 2px;
  --checkbox-hover-border-color: var(--primary-400);
  --checkbox-checked-bg: var(--white);
  --checkbox-checked-border-color: var(--gray-600);
  --checkbox-checked-icon-width: 10px;
  --checkbox-checked-icon-height: 7px;
  --checkbox-checked-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 9'%3E%3Cpath fill='%237E8695' fill-rule='evenodd' d='M4.5 8.125.75 4.405l1.192-1.178L4.5 5.764 10.057.25l1.193 1.185-6.75 6.69Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  --checkbox-error-border-color: var(--red);
  --checkbox-error-text-font-size: 14px;
  --checkbox-error-text-font-weight: 400;
  --checkbox-error-text-color: var(--red);
  --checkbox-content-font-size: 14px;
  --checkbox-content-font-weight: 400;
  --checkbox-content-color: var(--black);
  --checkbox-notice-font-size: 14px;
  --checkbox-notice-font-weight: 400;
  --checkbox-notice-text-color: var(--gray-400);
}

.i-checkbox {
  display: flex;
  flex-direction: column;
  gap: var(--checkbox-wrapper-y-gap);
}

.i-checkbox__inner {
  display: flex;
  align-items: flex-start;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  gap: var(--checkbox-to-content-gap);
}
.i-checkbox__inner:hover .i-checkbox__fake {
  border-color: var(--checkbox-hover-border-color);
}

.i-checkbox__fake {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border: var(--checkbox-border-width) solid var(--checkbox-border-color);
  border-radius: var(--checkbox-border-radius);
  background-color: var(--checkbox-bg);
}

.i-checkbox__inner input:checked + .i-checkbox__fake {
  border-color: var(--checkbox-checked-border-color);
  background-color: var(--checkbox-checked-bg);
}
.i-checkbox__inner input:checked + .i-checkbox__fake::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--checkbox-checked-icon-width);
  height: var(--checkbox-checked-icon-height);
  background-image: var(--checkbox-checked-icon);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transform: translate(-50%, -50%);
}

.i-checkbox__content {
  color: var(--checkbox-content-color);
  font-weight: var(--checkbox-content-font-weight);
  font-size: var(--checkbox-content-font-size);
  line-height: 1.25;
}

.i-checkbox .i-input-error,
.i-checkbox .i-input-notice {
  padding-left: calc(var(--checkbox-size) + var(--checkbox-to-content-gap));
}
.i-checkbox .i-input-error:empty,
.i-checkbox .i-input-notice:empty {
  display: none;
}

.i-checkbox .i-input-error {
  display: none;
}

.i-checkbox.i-error .i-input-error {
  display: block;
}
.i-checkbox.i-error .i-input-notice {
  display: none;
}
.i-checkbox.i-error .i-checkbox__fake {
  border-color: var(--checkbox-error-border-color) !important;
}

.i-checkbox .i-input-error {
  margin: 0;
  color: var(--checkbox-error-text-color);
  font-weight: var(--checkbox-error-text-font-weight);
  font-size: var(--checkbox-error-text-font-size);
  line-height: 1.2;
}

.i-checkbox .i-input-notice {
  margin: 0;
  color: var(--checkbox-notice-text-color);
  font-weight: var(--checkbox-notice-font-weight);
  font-size: var(--checkbox-notice-font-size);
  line-height: 1.2;
}

.i-checkbox.disabled {
  outline: none !important;
  cursor: not-allowed !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}
.i-checkbox.disabled label {
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.i-checkbox.disabled .i-checkbox__fake {
  opacity: 0.6 !important;
  filter: grayscale(1) !important;
}
.i-checkbox.disabled label,
.i-checkbox.disabled input {
  outline: none !important;
}
.i-checkbox.disabled label:-moz-read-only:focus, .i-checkbox.disabled input:-moz-read-only:focus {
  outline: none !important;
}
.i-checkbox.disabled label:hover, .i-checkbox.disabled label:focus, .i-checkbox.disabled label:active, .i-checkbox.disabled label:read-only:focus,
.i-checkbox.disabled input:hover,
.i-checkbox.disabled input:focus,
.i-checkbox.disabled input:active,
.i-checkbox.disabled input:read-only:focus {
  outline: none !important;
}

.i-checkbox.i-checkbox--red {
  --checkbox-checked-bg: var(--red);
  --checkbox-checked-border-color: var(--red);
  --checkbox-hover-border-color: var(--red);
}
.i-checkbox.i-checkbox--red .i-checkbox__inner input:checked + .i-checkbox__fake::before {
  filter: invert(1) brightness(3);
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 16px;
}
.breadcrumbs li {
  line-height: 1;
}
.breadcrumbs a,
.breadcrumbs span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}
.breadcrumbs a {
  position: relative;
  color: var(--gray-950);
  transition: 0.2s;
}
.breadcrumbs a:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumbs a::after {
  position: absolute;
  right: -9px;
  bottom: 0;
  color: var(--gray-950);
  content: "/";
  font-weight: 400;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
  pointer-events: none;
}
.breadcrumbs span {
  color: var(--gray-500);
}

.pagination {
  --radius: 4px;
}

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

.pagination ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination li a,
.pagination li span {
  margin-right: -1px;
  border: 1px solid var(--gray-300);
}
.pagination li:first-child a,
.pagination li:first-child span {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.pagination li:last-child a,
.pagination li:last-child span {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
}
.pagination li a {
  background-color: var(--white);
  color: var(--red);
  cursor: pointer;
  transition: 0.2s;
}
.pagination li a:hover {
  background-color: var(--gray-100);
}
.pagination li.active {
  z-index: 1;
}
.pagination li.active a {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
}
.pagination li.disabled {
  color: var(--gray-300);
  cursor: default;
  pointer-events: none;
}
.pagination li.next svg {
  transform: rotate(180deg);
}

.cookie {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.cookie__wrapper {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  background-color: rgba(4, 4, 38, 0.75);
  gap: 20px;
}
@media (min-width: 768px) {
  .cookie__wrapper {
    flex-direction: row;
    padding: 30px 20px;
  }
}

.product-card {
  padding: 10px;
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  box-shadow: 0 5px 5px rgb(198, 198, 198);
}

.product-card__img {
  position: relative;
  display: block;
  border: 1px solid var(--gray-300);
}
.product-card__img img {
  transition: 0.2s;
}
.product-card__img:hover img {
  opacity: 0.8;
}
.product-card__img:hover .product-card__badges img {
  opacity: 1;
}

.product-card__badges {
  position: absolute;
  top: 4px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.25;
  transition: 0.2s;
}
.product-card__title:hover {
  color: var(--red);
}

.product-card__buy-btn,
.product-card__clarify-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 40px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.product-card__buy-btn span,
.product-card__clarify-btn span {
  font-size: 13px;
  line-height: 1.25;
}

.product-card__buy-btn {
  border: 1px solid var(--red);
  color: var(--red);
  font-weight: 500;
}
.product-card__buy-btn:hover {
  background-color: var(--red);
  color: var(--white);
}
.product-card__buy-btn .product-card__button-badge {
  display: none;
  background-color: var(--red);
}

.product-card__buy-btn.active .product-card__button-badge {
  display: flex;
}

.product-card__clarify-btn {
  border: 1px solid var(--gray-500);
  color: var(--gray-500);
}
.product-card__clarify-btn:hover {
  background-color: var(--gray-500);
  color: var(--white);
}
.product-card__clarify-btn .first-text {
  display: block;
}
.product-card__clarify-btn .second-text {
  display: none;
}
.product-card__clarify-btn .product-card__button-badge {
  display: none;
  background-color: var(--gray-500);
}

.product-card__clarify-btn.active {
  background-color: var(--gray-500);
  color: var(--white);
}
.product-card__clarify-btn.active .first-text {
  display: none;
}
.product-card__clarify-btn.active .second-text {
  display: block;
}
.product-card__clarify-btn.active .product-card__button-badge {
  display: flex;
}
.product-card__clarify-btn.active:hover {
  background-color: var(--white);
  color: var(--gray-500);
}

.product-card__button-badge {
  position: absolute;
  top: -11px;
  right: -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 5px;
  padding: 2px 5px;
  color: var(--white);
  font-size: 10px !important;
}

.grid-view .product-card {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: min-content auto min-content;
}
.grid-view .product-card__img {
  margin-bottom: 16px;
}
.grid-view .product-card__info {
  margin-bottom: 16px;
}
.grid-view .product-card__badges {
  left: -9px;
  gap: 8px;
}
.grid-view .product-card__code {
  display: none;
}
.grid-view .product-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.list-view .product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .list-view .product-card {
    flex-direction: row;
    gap: 20px;
  }
}
.list-view .product-card__img {
  display: none;
}
@media (min-width: 768px) {
  .list-view .product-card__img {
    display: block;
    max-width: 95px;
    width: 100%;
    height: -moz-max-content;
    height: max-content;
  }
}
.list-view .product-card__badges {
  display: none;
}
@media (min-width: 768px) {
  .list-view .product-card__badges {
    left: -6px;
    display: flex;
    padding-right: 16px;
    width: 100%;
    gap: 4px;
  }
}
.list-view .product-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  width: 100%;
}
.list-view .product-card__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
.list-view .product-card__action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 30px;
}
@media (min-width: 640px) {
  .list-view .product-card__action {
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .list-view .product-card__action {
    flex-wrap: nowrap;
  }
}
.list-view .product-card__buy-btn,
.list-view .product-card__clarify-btn {
  min-width: 110px;
}

.header__nav {
  display: flex;
  height: 100%;
  gap: 24px;
}
@media (min-width: 1200px) {
  .header__nav {
    gap: 40px;
  }
}

.header__nav-link,
.header__nav-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
}
.header__nav-link::before,
.header__nav-toggle::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background-color: var(--red);
  content: "";
  opacity: 1;
  transition: 0.5s;
  transform: translateX(-50%);
  pointer-events: none;
}
.header__nav-link:hover::before,
.header__nav-toggle:hover::before {
  width: calc(100% - 8px);
  opacity: 1;
}
.header__nav-link.active::before,
.header__nav-toggle.active::before {
  width: calc(100% - 8px);
  opacity: 1;
}

.header__nav-toggle::after {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.header__nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  padding: 5px 0;
  background-color: var(--primary-950);
  box-shadow: inset 2px 3px 13px rgba(0, 0, 0, 0.43);
}

.header__nav-dropdown-link {
  position: relative;
  padding: 4px 20px;
  color: var(--white);
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  transition: 0.3s;
}
.header__nav-dropdown-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--red);
  content: "";
  opacity: 0;
  transition: 0.3s;
  transform: translateY(-50%);
  pointer-events: none;
}
.header__nav-dropdown-link:hover {
  background-color: #f5f5f5;
  color: #262626;
}
.header__nav-dropdown-link:hover::before {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: var(--modal-index);
  max-width: 350px;
  width: 100%;
}

.mobile-menu__wrapper {
  position: relative;
  overflow-y: auto;
  padding: 60px 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
}

.mobile-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.mobile-menu__nav-toggle,
.mobile-menu__nav-link,
.mobile-menu__nav-dropdown-link {
  padding: 15px;
  width: 100%;
  color: var(--black);
  text-align: left;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
}

.mobile-menu__nav-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mobile-menu__nav-toggle::before {
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 0;
  height: 2px;
  background-color: var(--red);
  content: "";
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.mobile-menu__nav-toggle.active {
  color: var(--red);
}
.mobile-menu__nav-toggle.active::before {
  width: calc(100% - 45px);
  opacity: 1;
}

.mobile-menu__nav-toggle-icon {
  flex-shrink: 0;
  color: inherit;
  transition: 0.3s;
}

.mobile-menu__nav-toggle.active .mobile-menu__nav-toggle-icon {
  transform: rotate(180deg);
}

.mobile-menu__nav-dropdown-link {
  font-size: 16px;
  padding-left: 30px;
}

.blocker {
  z-index: var(--modal-index);
  padding: 16px;
}

.modal.modal--recall {
  padding: 0;
  max-width: 320px;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal.modal--recall .modal__wrapper {
  position: relative;
  border-radius: 5px;
  background-color: var(--white);
}

.modal.modal--buying {
  padding: 0;
  max-width: 800px;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal.modal--buying .modal__wrapper {
  background-color: var(--white);
}

.bottom-gradient-line::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #a30008 0%, #ff000d 100%);
  content: "";
  transform: translateX(-50%);
}

.top-gradient-line::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #a30008 0%, #ff000d 100%);
  content: "";
  transform: translateX(-50%);
}

.developer-window {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 16px;
  max-width: 300px;
  background-color: #fc0;
}

.developer-window__title {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.developer-window__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.developer-window__wrapper a,
.developer-window__wrapper button {
  padding: 4px;
  width: 100%;
  border-radius: 2px;
  background-color: #0f68ff;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.developer-window__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
}

.developer-window__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
