@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

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

html {
  font-size: 16px;
}

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

body {
  line-height: 1;
  font-family: "sans-serif";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

input::-ms-clear {
  display: none;
}

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
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;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: #000;
  font-size: 16px;
  font-family: "sans-serif";
  background-color: #fff;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 1024pxpx) {
  .select__title {
    font-size: 18px;
  }
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 1024pxpx) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  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;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 1024pxpx) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

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

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

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

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

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

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.modal {
  width: 100%;
  height: 100vh;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 20;
  top: 0;
  left: 0;
}
.modal .modal__container {
  width: 100%;
  max-width: 670px;
  border-radius: 4px;
  background: #FFF;
}
.modal .modal__container h2 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 30px 16px;
  border-bottom: 1px solid #ECECEC;
  text-align: center;
}
.modal .modal__container .modal__form {
  width: 100%;
  padding: 30px 16px;
}
.modal .modal__container .modal__form .input-text {
  width: 100%;
  display: block;
  max-width: 600px;
  margin: 0 auto 20px;
}
.modal .modal__container .modal__form .input-text input, .modal .modal__container .modal__form .input-text textarea {
  width: 100%;
  height: 60px;
  border-radius: 2px;
  border: 1px solid rgba(23, 20, 59, 0.2);
  padding: 0px 18px;
  color: rgba(38, 38, 38, 0.5);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
}
.modal .modal__container .modal__form .input-text textarea {
  height: 80px;
  padding: 18px;
  resize: none;
  outline: none;
}
.modal .modal__container .modal__form .checkbox {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.modal .modal__container .modal__form .checkbox input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.modal .modal__container .modal__form .checkbox input:checked ~ span svg {
  opacity: 1;
}
.modal .modal__container .modal__form .checkbox span {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: 1px solid #100E29;
}
.modal .modal__container .modal__form .checkbox span svg {
  opacity: 0;
}
.modal .modal__container .modal__form .checkbox p {
  color: #262626;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.65px;
}
.modal .modal__container .modal__form .checkbox p a {
  text-decoration: underline;
  color: #262626;
}
.modal .modal__container .modal__form .input-file {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  border-radius: 2px;
  border: 1px dashed rgba(23, 20, 59, 0.2);
  background: rgba(130, 147, 168, 0.08);
}
.modal .modal__container .modal__form .input-file input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.modal .modal__container .modal__form .input-file span {
  color: rgba(38, 38, 38, 0.5);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.modal .modal__container .modal__form .flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.modal .modal__container .modal__form .flex button {
  width: 100%;
  height: 40px;
  max-width: 278px;
  border-radius: 2px;
  border: 1px solid #1C2752;
  color: #1C2752;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.modal .modal__container .modal__form .flex .input-btn {
  width: 100%;
  display: block;
  max-width: 304px;
}
.modal .modal__container .modal__form .flex .input-btn input {
  border-radius: 2px;
  background: #FFB342;
  width: 100%;
  height: 40px;
  color: #1C2752;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.header {
  width: 100%;
}
.header .header__catalog {
  width: 100%;
  position: relative;
  max-width: 182px;
}
.header .header__catalog .header__catalog-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 48px;
  border-radius: 2px;
  border: 2px solid #091242;
  background: #091242;
  color: #FFF;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header .header__catalog .header__catalog-hiden {
  width: 400px;
  top: 48px;
  left: 0;
  position: absolute;
  display: none;
  background-color: #091242;
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .header .header__catalog .header__catalog-hiden {
    position: relative;
    top: 0;
    width: 100%;
  }
}
.header .header__catalog .header__catalog-hiden ul li {
  margin-bottom: 16px;
}
.header .header__catalog .header__catalog-hiden ul li:last-child {
  margin-bottom: 0;
}
.header .header__catalog .header__catalog-hiden ul li a {
  padding: 6px 10px;
  color: #fff;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}
.header .header__search {
  width: 100%;
  max-width: 422px;
}
.header .header__search form {
  padding: 6px 10px;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 2px;
  border: 1px solid rgba(38, 38, 38, 0.5);
  background: #FFF;
}
@media (max-width: 1560px) {
  .header .header__search form {
    padding: 6px;
    padding-left: 10px;
  }
}
.header .header__search form .input-text {
  width: 100%;
  padding-right: 10px;
  display: block;
}
.header .header__search form .input-text input {
  width: 100%;
  color: rgba(38, 38, 38, 0.5);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  /* 107.143% */
}
.header .header__search form .input-btn {
  width: 100%;
  max-width: 48px;
  min-width: 48px;
  position: relative;
}
.header .header__search form .input-btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .header__search form .input-btn input {
  border-radius: 2px;
  background: #1C2752;
  width: 100%;
  height: 34px;
}
.header .header__contacts {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  max-width: 620px;
}
@media (max-width: 1560px) {
  .header .header__contacts {
    max-width: 380px;
  }
}
.header .header__contacts .header__contacts-item {
  width: 100%;
  max-width: 296px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.header .header__contacts .header__contacts-item:first-child {
  max-width: 320px;
}
.header .header__contacts .header__contacts-item .icon {
  width: 68px;
  min-width: 68px;
}
@media (max-width: 1560px) {
  .header .header__contacts .header__contacts-item .icon {
    width: 40px;
    min-width: 40px;
  }
}
.header .header__contacts .header__contacts-item .icon svg {
  width: 100%;
  height: auto;
}
.header .header__contacts .header__contacts-item .text {
  width: 100%;
  max-width: 280px;
}
@media (max-width: 1560px) {
  .header .header__contacts .header__contacts-item .text {
    max-width: 200px;
  }
}
.header .header__contacts .header__contacts-item .text span {
  color: #091242;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 1560px) {
  .header .header__contacts .header__contacts-item .text span {
    font-size: 16px;
  }
}
.header .header__contacts .header__contacts-item .text a {
  color: #262626;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
}
.header .header__contacts .header__contacts-item .text a:last-child {
  margin-bottom: 0;
}
@media (max-width: 1560px) {
  .header .header__contacts .header__contacts-item .text a {
    font-size: 12px;
  }
}
.header .header__top {
  width: 100%;
  padding: 18px 20px;
  background: rgba(130, 147, 168, 0.08);
}
@media (max-width: 1024px) {
  .header .header__top {
    display: none;
  }
}
.header .header__top .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__top .header__container .address-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: #091242;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1560px) {
  .header .header__top .header__container .address-link {
    font-size: 16px;
  }
}
.header .header__top .header__container .header__soc {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.header .header__central {
  width: 100%;
  padding: 30px 20px;
}
@media (max-width: 1024px) {
  .header .header__central {
    padding: 10px 20px;
  }
}
.header .header__central .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header .header__central .header__container .header__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 902px;
  width: 100%;
}
.header .header__central .header__container .header__left .logo {
  width: 100%;
  display: block;
  max-width: 140px;
}
@media (max-width: 1560px) {
  .header .header__central .header__container .header__left .logo {
    max-width: 90px;
  }
}
.header .header__central .header__container .header__left .logo img {
  width: 100%;
}
@media (max-width: 1024px) {
  .header .header__central .header__container .header__search, .header .header__central .header__container .header__catalog, .header .header__central .header__container .header__contacts {
    display: none;
  }
}
.header .header__central .header__container .burger-btn {
  width: 30px;
  display: none;
}
@media (max-width: 1024px) {
  .header .header__central .header__container .burger-btn {
    display: block;
  }
}
.header .header__central .header__container .burger-btn span {
  width: 100%;
  height: 3px;
  margin-bottom: 4px;
  display: block;
  background-color: #091242;
}
.header .header__central .header__container .burger-btn span:last-child {
  margin-bottom: 0;
}
.header .header__bottom {
  width: 100%;
  padding: 14px 20px;
  background: rgba(130, 147, 168, 0.17);
}
@media (max-width: 1024px) {
  .header .header__bottom {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: none;
    padding: 0;
  }
}
.header .header__bottom .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .header__bottom .header__container {
    width: 100%;
    max-width: 280px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    height: 100vh;
    overflow: auto;
    margin: 0;
  }
}
.header .header__bottom .header__container .clous-btn {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  background: unset;
}
@media (max-width: 1024px) {
  .header .header__bottom .header__container .clous-btn {
    display: block;
  }
}
.header .header__bottom .header__container .header__search, .header .header__bottom .header__container .header__catalog, .header .header__bottom .header__container .header__contacts {
  display: none;
}
@media (max-width: 1024px) {
  .header .header__bottom .header__container .header__search, .header .header__bottom .header__container .header__catalog, .header .header__bottom .header__container .header__contacts {
    display: block;
    max-width: unset;
  }
  .header .header__bottom .header__container .header__search .header__contacts-item:first-child, .header .header__bottom .header__container .header__catalog .header__contacts-item:first-child, .header .header__bottom .header__container .header__contacts .header__contacts-item:first-child {
    margin-bottom: 10px;
  }
}
.header .header__bottom .header__container .menu {
  width: 100%;
  max-width: 974px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1560px) {
  .header .header__bottom .header__container .menu {
    max-width: 720px;
  }
}
@media (max-width: 1024px) {
  .header .header__bottom .header__container .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.header .header__bottom .header__container .menu li a {
  color: #262626;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media (max-width: 1560px) {
  .header .header__bottom .header__container .menu li a {
    font-size: 16px;
  }
}
.header .header__bottom .header__container .callback-btn {
  border-radius: 2px;
  background: #FFB342;
  width: 100%;
  max-width: 214px;
  height: 66px;
  color: #1C2752;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1560px) {
  .header .header__bottom .header__container .callback-btn {
    max-width: 180px;
    height: 46px;
    font-size: 16px;
  }
}

.footer {
  width: 100%;
  padding: 46px 20px 102px;
  background: #100E29;
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer .footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .footer__container {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.footer .footer__container .footer__item {
  width: 100%;
  max-width: 234px;
}
.footer .footer__container .footer__item .logo {
  width: 100%;
  display: block;
  max-width: 140px;
}
@media (max-width: 1024px) {
  .footer .footer__container .footer__item .logo {
    max-width: 100px;
  }
}
.footer .footer__container .footer__item .logo img {
  width: 100%;
}
.footer .footer__container .footer__item h4 {
  color: #FFF;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .footer .footer__container .footer__item h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.footer .footer__container .footer__item ul {
  width: 100%;
}
.footer .footer__container .footer__item ul li {
  margin-bottom: 14px;
}
.footer .footer__container .footer__item ul li:last-child {
  margin-bottom: 0;
}
.footer .footer__container .footer__item ul li a {
  color: #FFF;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1024px) {
  .footer .footer__container .footer__item ul li a {
    font-size: 16px;
  }
}
.footer .footer__container .footer__item .callback-btn {
  width: 100%;
  max-width: 214px;
  height: 66px;
  border-radius: 2px;
  background: #FFB342;
  color: #1C2752;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .footer .footer__container .footer__item .callback-btn {
    height: 40px;
    font-size: 16px;
  }
}
.footer .footer__container .footer__item .calculate-btn {
  width: 100%;
  max-width: 214px;
  height: 50px;
  border-radius: 2px;
  border: 1px solid rgba(10, 63, 102, 0.2);
  background: #F8F8F8;
  box-shadow: 3px 7px 29px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #262626;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1024px) {
  .footer .footer__container .footer__item .calculate-btn {
    height: 40px;
    font-size: 16px;
  }
}

.page {
  flex: 1 1 auto;
}

.title-span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 16px;
  gap: 10px;
  border-radius: 2px;
  background: #F4F4F4;
  color: #1C2752;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: max-content;
}
@media (max-width: 520px) {
  .title-span {
    padding: 8px;
    font-size: 14px;
  }
  .title-span svg {
    width: 20px;
    height: auto;
  }
}

.about {
  width: 100%;
  padding: 122px 20px;
}
@media (max-width: 1024px) {
  .about {
    padding: 0;
    position: relative;
  }
}
.about .about__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}
.about .about__container .about__img {
  width: 100%;
  max-width: 754px;
  height: auto;
}
@media (max-width: 1560px) {
  .about .about__container .about__img {
    max-width: 650px;
  }
}
@media (max-width: 1024px) {
  .about .about__container .about__img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: unset;
    height: 100%;
  }
}
.about .about__container .about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .about__container .about__info {
  width: 100%;
  max-width: 750px;
}
@media (max-width: 1024px) {
  .about .about__container .about__info {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.about .about__container .about__info .about__text {
  width: 100%;
  margin-bottom: 54px;
}
.about .about__container .about__info .about__text span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 16px;
  gap: 10px;
  border-radius: 2px;
  background: #F4F4F4;
  color: #1C2752;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: max-content;
}
.about .about__container .about__info .about__text h2 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .about__text h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .about .about__container .about__info .about__text h2 {
    font-size: 30px;
  }
}
.about .about__container .about__info .about__text p {
  color: #262626;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.about .about__container .about__info .about__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .about__text p {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.about .about__container .about__info .work-years {
  width: 100%;
  max-width: 176px;
  padding: 16px 34px;
  text-align: center;
  border-radius: 2px;
  background: #F4F4F4;
}
.about .about__container .about__info .work-years span {
  color: #1C2752;
  text-align: center;
  font-family: Mulish;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .work-years span {
    font-size: 50px;
  }
}
.about .about__container .about__info .work-years p {
  margin-top: 18px;
  color: #1C2752;
  text-align: center;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .work-years p {
    font-size: 18px;
    margin-top: 10px;
  }
}

.advantages {
  width: 100%;
  padding: 44px 20px;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .advantages {
    padding: 44px 0;
  }
}
.advantages .bg-img {
  width: 48.59%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .advantages .bg-img {
    display: none;
  }
}
.advantages .advantages__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 110px;
}
@media (max-width: 1560px) {
  .advantages .advantages__container {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .advantages .advantages__container {
    gap: 20px;
    flex-direction: column-reverse;
  }
}
.advantages .advantages__container .advantages__left {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 60px 20px;
  border-radius: 2px;
  background: rgba(28, 39, 82, 0.7);
  backdrop-filter: blur(12.5px);
  flex-direction: column;
  max-width: 630px;
}
@media (max-width: 1560px) {
  .advantages .advantages__container .advantages__left {
    max-width: 540px;
  }
}
@media (max-width: 1024px) {
  .advantages .advantages__container .advantages__left {
    max-width: unset;
  }
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__left {
    padding: 20px;
  }
}
.advantages .advantages__container .advantages__left p {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #fff;
  color: #FFF;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-right: 36px;
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__left p {
    padding: 10px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.advantages .advantages__container .advantages__left p span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 142px;
  min-width: 142px;
  height: 64px;
  background: #FFB342;
  color: #1C2752;
  text-align: center;
  font-family: Mulish;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-right: 36px;
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__left p span {
    max-width: unset;
    min-width: unset;
    margin: 0;
    font-size: 20px;
  }
}
.advantages .advantages__container .advantages__right {
  width: 100%;
  max-width: 750px;
}
@media (max-width: 1560px) {
  .advantages .advantages__container .advantages__right {
    max-width: 600px;
  }
}
@media (max-width: 1024px) {
  .advantages .advantages__container .advantages__right {
    max-width: unset;
    padding: 0 20px;
  }
}
.advantages .advantages__container .advantages__right .title-span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 16px;
  gap: 10px;
  border-radius: 2px;
  background: #F4F4F4;
  color: #1C2752;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: max-content;
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__right .title-span {
    padding: 8px;
    font-size: 14px;
  }
  .advantages .advantages__container .advantages__right .title-span svg {
    width: 20px;
    height: auto;
  }
}
.advantages .advantages__container .advantages__right h2 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 60px;
}
@media (max-width: 1560px) {
  .advantages .advantages__container .advantages__right h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .advantages .advantages__container .advantages__right h2 {
    font-size: 30px;
  }
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__right h2 {
    font-size: 24px;
  }
}
.advantages .advantages__container .advantages__right .advantages__item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 44px;
}
.advantages .advantages__container .advantages__right .advantages__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__right .advantages__item {
    margin-bottom: 20px;
  }
  .advantages .advantages__container .advantages__right .advantages__item .icon svg {
    width: 24px;
    height: auto;
  }
}
.advantages .advantages__container .advantages__right .advantages__item .text {
  width: 100%;
  max-width: 514px;
}
.advantages .advantages__container .advantages__right .advantages__item .text p {
  color: #1C2752;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__right .advantages__item .text p {
    font-size: 16px;
  }
}
.advantages .advantages__container .advantages__right .advantages__item .text span {
  color: #7E7E7E;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
}
@media (max-width: 520px) {
  .advantages .advantages__container .advantages__right .advantages__item .text span {
    font-size: 14px;
  }
}

.category-filters {
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 3px solid #EFEFEF;
}
.category-filters h4 {
  color: #262626;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
.category-filters .category-filters__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 26px 30px;
}
@media (max-width: 1024px) {
  .category-filters .category-filters__grid {
    grid-gap: 16px;
  }
}
@media (max-width: 768px) {
  .category-filters .category-filters__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .category-filters .category-filters__grid {
    grid-template-columns: 1fr;
  }
}
.category-filters .category-filters__grid .category-filters__item {
  width: 100%;
}
.category-filters .category-filters__grid .category-filters__item p {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.category-filters .category-filters__grid .category-filters__item .select__options {
  top: 39px;
  border: 1px solid var(--Color-Light-100, #ECECEC);
}
.category-filters .category-filters__grid .category-filters__item .select__options .select__option {
  color: rgba(38, 38, 38, 0.6);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.category-filters .category-filters__grid .category-filters__item .select__title {
  border-radius: 2px;
  border: 1px solid var(--Color-Light-100, #ECECEC);
  background: rgba(255, 255, 255, 0.01);
}
.category-filters .category-filters__grid .category-filters__item .select__title .select__value {
  width: 100%;
  height: 40px;
  padding: 0 16px;
}
.category-filters .category-filters__grid .category-filters__item .select__title .select__value span {
  height: auto;
  color: rgba(38, 38, 38, 0.6);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.category-info {
  width: 100%;
}
.category-info .category-info__item {
  width: 100%;
}
.category-info .category-info__item:first-child {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .category-info .category-info__item:first-child {
    margin-bottom: 30px;
  }
}
.category-info .category-info__item h3 {
  color: #1C2752;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 6px solid #EFEFEF;
  padding-left: 16px;
}
@media (max-width: 1024px) {
  .category-info .category-info__item h3 {
    padding: 0px 0px 16px;
    margin-bottom: 20px;
  }
}
.category-info .category-info__item p {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  letter-spacing: 0.64px;
  padding: 0 16px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .category-info .category-info__item p {
    padding: 0;
  }
}
.category-info .category-info__item p:last-child {
  margin-bottom: 0;
}
.category-info .category-info__item ul {
  padding-right: 16px;
  margin-left: 36px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .category-info .category-info__item ul {
    padding: 0;
    margin-left: 20px;
  }
}
.category-info .category-info__item ul li {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  letter-spacing: 0.64px;
  list-style: disc;
  margin-bottom: 8px;
}
.category-info .category-info__item ul li:last-child {
  margin-bottom: 0;
}

.about {
  width: 100%;
  padding: 122px 20px;
}
@media (max-width: 1024px) {
  .about {
    padding: 0;
    position: relative;
  }
}
.about .about__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}
.about .about__container .about__img {
  width: 100%;
  max-width: 754px;
  height: auto;
}
@media (max-width: 1560px) {
  .about .about__container .about__img {
    max-width: 650px;
  }
}
@media (max-width: 1024px) {
  .about .about__container .about__img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: unset;
    height: 100%;
  }
}
.about .about__container .about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .about__container .about__info {
  width: 100%;
  max-width: 750px;
}
@media (max-width: 1024px) {
  .about .about__container .about__info {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.about .about__container .about__info .about__text {
  width: 100%;
  margin-bottom: 54px;
}
.about .about__container .about__info .about__text span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 16px;
  gap: 10px;
  border-radius: 2px;
  background: #F4F4F4;
  color: #1C2752;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: max-content;
}
.about .about__container .about__info .about__text h2 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .about__text h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .about .about__container .about__info .about__text h2 {
    font-size: 30px;
  }
}
.about .about__container .about__info .about__text p {
  color: #262626;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.about .about__container .about__info .about__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .about__text p {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.about .about__container .about__info .work-years {
  width: 100%;
  max-width: 176px;
  padding: 16px 34px;
  text-align: center;
  border-radius: 2px;
  background: #F4F4F4;
}
.about .about__container .about__info .work-years span {
  color: #1C2752;
  text-align: center;
  font-family: Mulish;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .work-years span {
    font-size: 50px;
  }
}
.about .about__container .about__info .work-years p {
  margin-top: 18px;
  color: #1C2752;
  text-align: center;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 1560px) {
  .about .about__container .about__info .work-years p {
    font-size: 18px;
    margin-top: 10px;
  }
}

.category-list {
  width: 100%;
  max-width: 354px;
}
.category-list .toggle-list {
  width: 100%;
  max-width: 260px;
  height: 40px;
  background-color: #091242;
  color: #FFF;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 135.023%;
  border-radius: 6px;
  display: none;
}
@media (max-width: 1024px) {
  .category-list .toggle-list {
    display: block;
  }
}
.category-list .category-list__box {
  width: 100%;
}
@media (max-width: 1024px) {
  .category-list .category-list__box {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    z-index: 20;
    padding-right: 20px;
    overflow: auto;
  }
}
.category-list .category-list__box .clous-modal {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
}
@media (max-width: 1024px) {
  .category-list .category-list__box .clous-modal {
    display: block;
  }
}
.category-list .category-list__box .category-list__box-container {
  max-width: 354px;
  border-radius: 2px;
  border: 1px solid rgba(23, 20, 59, 0.06);
  background: #F8F8F8;
}
.category-list .category-list__box .category-list__box-container .category-list__item {
  width: 100%;
  border-bottom: 1px solid rgba(23, 20, 59, 0.1);
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-title {
  width: 100%;
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.5s;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-title h4 {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-title svg {
  transition: all 0.5s;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-title.active {
  background: #FFB342;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-title.active h4 {
  color: #1C2752;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-title.active svg {
  transform: rotate(90deg);
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-hiden {
  background: #FFF;
  width: 100%;
  padding: 16px;
  display: none;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-hiden ul li {
  margin-bottom: 16px;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-hiden ul li:last-child {
  margin-bottom: 0;
}
.category-list .category-list__box .category-list__box-container .category-list__item .category-list__item-hiden ul li a {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.category-single {
  width: 100%;
  padding: 0 20px 120px;
}
.category-single .category-single__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .category-single .category-single__container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.category-single .category-single__container .category-single__right {
  width: 100%;
  max-width: 1158px;
}

.category-table {
  width: 100%;
  margin-bottom: 60px;
}
.category-table .category-table__sort {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.category-table .category-table__sort p {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.category-table .category-table__sort button {
  color: #262626;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.category-table .category-table__sort button.active {
  color: #FFB342;
}
.category-table .category-table__box {
  width: 100%;
  margin-bottom: 18px;
  overflow: auto;
}
.category-table .category-table__box table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 2px 2px 0px 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 724px;
}
.category-table .category-table__box table thead {
  width: 100%;
}
.category-table .category-table__box table thead tr {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.category-table .category-table__box table thead tr td {
  background: rgba(130, 147, 168, 0.17);
  max-width: 496px;
  width: 100%;
  min-width: 262px;
  padding: 20px;
  color: #262626;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1560px) {
  .category-table .category-table__box table thead tr td {
    padding: 10px;
  }
}
.category-table .category-table__box table thead tr td:nth-child(2) {
  width: 100%;
  max-width: 196px;
  min-width: 170px;
  text-align: center;
}
.category-table .category-table__box table thead tr td:nth-child(3) {
  width: 100%;
  max-width: 220px;
  min-width: 172px;
  text-align: center;
}
.category-table .category-table__box table thead tr td:nth-child(4) {
  width: 100%;
  max-width: 244px;
  min-width: 118px;
}
.category-table .category-table__box table tbody {
  width: 100%;
}
.category-table .category-table__box table tbody tr {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.category-table .category-table__box table tbody tr:last-child td {
  border-bottom: unset;
}
.category-table .category-table__box table tbody tr td {
  max-width: 496px;
  min-width: 262px;
  width: 100%;
  padding: 20px;
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  border-right: 1px solid rgba(18, 18, 18, 0.1);
}
@media (max-width: 1560px) {
  .category-table .category-table__box table tbody tr td {
    padding: 10px;
  }
}
.category-table .category-table__box table tbody tr td:nth-child(2) {
  width: 100%;
  max-width: 196px;
  min-width: 170px;
  text-align: center;
}
.category-table .category-table__box table tbody tr td:nth-child(3) {
  width: 100%;
  max-width: 220px;
  min-width: 172px;
  text-align: center;
}
.category-table .category-table__box table tbody tr td:nth-child(4) {
  width: 100%;
  max-width: 244px;
  min-width: 118px;
  border-right: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-table .category-table__box table tbody tr td h4 {
  max-width: 386px;
}
.category-table .category-table__box table tbody tr td h4 a {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.8px;
}
.category-table .category-table__box table tbody tr td .buy-btn {
  width: 100%;
  max-width: 118px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background: #FFB342;
  color: #1C2752;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contacts {
  width: 100%;
  padding: 120px 20px 140px;
}
@media (max-width: 768px) {
  .contacts {
    padding: 40px 20px;
  }
}
.contacts .contacts__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .contacts .contacts__container {
    flex-direction: column;
  }
}
.contacts .contacts__container .contacts__left {
  width: 100%;
  max-width: 752px;
}
@media (max-width: 768px) {
  .contacts .contacts__container .contacts__left {
    max-width: unset;
  }
}
.contacts .contacts__container .contacts__left .title-span {
  margin-bottom: 10px;
}
.contacts .contacts__container .contacts__left h2 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 60px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__left h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .contacts .contacts__container .contacts__left h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.contacts .contacts__container .contacts__left .contacts__faq {
  width: 100%;
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item {
  width: 100%;
  padding-bottom: 22px;
  border-bottom: 1px solid #DADADA;
  margin-bottom: 22px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item:last-child {
  margin-bottom: 0;
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title h4 {
  color: #262626;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.24px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title h4 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title h4 {
    font-size: 18px;
  }
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title .icon {
  width: 100%;
  max-width: 26px;
  min-width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title .icon {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
  }
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title .icon span {
  width: 100%;
  display: block;
  height: 2px;
  background-color: #1C2752;
  position: relative;
  transition: all 0.5s;
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title .icon span:last-child {
  transform: rotate(90deg);
  top: -2px;
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .title.active .icon span:last-child {
  transform: rotate(360deg);
  opacity: 0;
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .hiden {
  width: 100%;
  display: none;
  padding-right: 20px;
  margin-top: 22px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .hiden {
    margin-top: 16px;
  }
}
.contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .hiden p {
  color: rgba(38, 38, 38, 0.8);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130.9%;
  /* 23.562px */
  letter-spacing: 0.18px;
  max-width: 710px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .hiden p {
    max-width: 600px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contacts .contacts__container .contacts__left .contacts__faq .contacts__faq-item .hiden p {
    font-size: 14px;
  }
}
.contacts .contacts__container .contacts__right {
  width: 100%;
  max-width: 752px;
  border: 1px solid rgba(230, 230, 230, 0.5);
  background-color: #FCFCFC;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .contacts .contacts__container .contacts__right {
    max-width: unset;
  }
}
.contacts .contacts__container .contacts__right .contacts__info {
  width: 100%;
  padding: 38px 50px 50px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__right .contacts__info {
    padding: 20px;
  }
}
.contacts .contacts__container .contacts__right .contacts__info h3 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__right .contacts__info h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .contacts .contacts__container .contacts__right .contacts__info h3 {
    font-size: 22px;
  }
}
.contacts .contacts__container .contacts__right .contacts__info .contacts__infp-item {
  width: 100%;
  margin-bottom: 20px;
}
.contacts .contacts__container .contacts__right .contacts__info .contacts__infp-item:last-child {
  margin-bottom: 0;
}
.contacts .contacts__container .contacts__right .contacts__info .contacts__infp-item span {
  color: #262626;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__right .contacts__info .contacts__infp-item span {
    font-size: 16px;
  }
}
.contacts .contacts__container .contacts__right .contacts__info .contacts__infp-item a {
  color: #262626;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 6px;
}
.contacts .contacts__container .contacts__right .contacts__info .contacts__infp-item a:last-child {
  margin-bottom: 0;
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__right .contacts__info .contacts__infp-item a {
    font-size: 16px;
  }
}
.contacts .contacts__container .contacts__right iframe {
  width: 100%;
  border: unset;
  height: 554px;
  border-top: 1px solid rgba(230, 230, 230, 0.5);
}
@media (max-width: 1560px) {
  .contacts .contacts__container .contacts__right iframe {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .contacts .contacts__container .contacts__right iframe {
    height: 200px;
  }
}

.home-catalog {
  width: 100%;
  padding: 120px 20px 156px;
  position: relative;
}
@media (max-width: 1560px) {
  .home-catalog {
    padding: 60px 20px;
  }
}
.home-catalog::before {
  content: "";
  width: 100%;
  height: 40%;
  background-color: #FFB342;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1024px) {
  .home-catalog::before {
    display: none;
  }
}
.home-catalog .home-catalog__container {
  position: relative;
  z-index: 2;
}
.home-catalog .home-catalog__container .home-catalog__title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .home-catalog .home-catalog__container .home-catalog__title {
    margin-bottom: 30px;
  }
}
.home-catalog .home-catalog__container .home-catalog__title h2 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1560px) {
  .home-catalog .home-catalog__container .home-catalog__title h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .home-catalog .home-catalog__container .home-catalog__title h2 {
    font-size: 26px;
  }
}
.home-catalog .home-catalog__container .home-catalog__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1560px) {
  .home-catalog .home-catalog__container .home-catalog__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .home-catalog .home-catalog__container .home-catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 768px) {
  .home-catalog .home-catalog__container .home-catalog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.home-catalog .home-catalog__container .show-more {
  width: 100%;
  max-width: 194px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #091242;
  border-radius: 2px;
  color: #FFF;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 135.023%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.home-catalog .home-catalog__container .show-more::before {
  content: "";
  width: 52px;
  height: 52px;
  position: absolute;
  background-color: #1C2752;
  border-radius: 50%;
  right: -16px;
  bottom: -28px;
}

.main {
  width: 100%;
  position: relative;
  padding: 60px 20px;
  min-height: calc(100vh - 318px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.main .main__bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.main .main__container {
  position: relative;
  z-index: 2;
}
.main .main__container span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  max-width: max-content;
  padding: 8px 16px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .main .main__container span {
    font-size: 12px;
    padding: 4px 8px;
  }
}
.main .main__container h1 {
  color: #FFF;
  font-family: Rubik;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  max-width: 620px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .main .main__container h1 {
    font-size: 32px;
  }
}
.main .main__container a {
  border-radius: 2px;
  background: #FFB342;
  width: 100%;
  max-width: 236px;
  height: 66px;
  color: #1C2752;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .main .main__container a {
    height: 46px;
    max-width: 180px;
    font-size: 16px;
  }
}

.order-etaps {
  width: 100%;
  padding: 120px 20px;
}
@media (max-width: 1560px) {
  .order-etaps {
    padding: 80px 20px;
  }
}
@media (max-width: 768px) {
  .order-etaps {
    padding: 40px 20px;
  }
}
.order-etaps .order-etaps__container {
  max-width: 1218px;
}
.order-etaps .order-etaps__container .order-etaps__title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 70px;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__title {
    margin-bottom: 40px;
  }
}
.order-etaps .order-etaps__container .order-etaps__title h2 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__title h2 {
    font-size: 30px;
  }
}
.order-etaps .order-etaps__container .order-etaps__title p {
  color: #262626;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__title p {
    font-size: 16px;
  }
}
.order-etaps .order-etaps__container .order-etaps__flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__flex {
    gap: 16px;
  }
}
@media (max-width: 520px) {
  .order-etaps .order-etaps__container .order-etaps__flex {
    flex-direction: column;
    align-items: center;
  }
}
.order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item {
  width: 100%;
  max-width: 340px;
  text-align: center;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item {
    max-width: 280px;
  }
}
.order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item .icon {
  width: 100%;
  max-width: 156px;
  height: 156px;
  border-radius: 50%;
  background-color: #FFB82B;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 36px;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item .icon {
    max-width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
}
.order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item p {
  color: #1C2752;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item p {
    font-size: 18px;
  }
}
.order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item span {
  color: #262626;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__flex .order-etaps__item span {
    font-size: 16px;
  }
}
.order-etaps .order-etaps__container .order-etaps__flex .line {
  width: 100%;
  max-width: 120px;
  height: 1px;
  background-color: #FFB82B;
  margin-top: 78px;
}
@media (max-width: 1560px) {
  .order-etaps .order-etaps__container .order-etaps__flex .line {
    display: none;
  }
}

.product-single {
  width: 100%;
  padding: 0 20px 120px;
}
@media (max-width: 1560px) {
  .product-single {
    padding-bottom: 60px;
  }
}
.product-single .product-single__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .product-single .product-single__container {
    flex-direction: column;
  }
}
.product-single .product-single__container .product-single__right {
  width: 100%;
  max-width: 1156px;
}
.product-single .product-single__container .product-single__right .product-single__cart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 88px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart {
    margin-bottom: 40px;
  }
}
@media (max-width: 520px) {
  .product-single .product-single__container .product-single__right .product-single__cart {
    flex-direction: column;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img {
  width: 100%;
  max-width: 586px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img {
    max-width: 500px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper {
  width: 100%;
  position: relative;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper {
    margin-bottom: 16px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .sale-span {
  position: absolute;
  padding: 8px;
  right: 16px;
  top: 20px;
  background: #FF303C;
  color: #FFF;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110.9%;
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .sale-span {
    top: 0;
    right: 0;
    font-size: 14px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .slideprev, .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .slidenext {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .slideprev svg, .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .slidenext svg {
    width: 24px;
    height: auto;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .slidenext {
  left: unset;
  right: 0;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .swiper {
  width: 100%;
  z-index: 4;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .swiper .swiper-wrapper {
  width: 100%;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 422px;
  object-fit: cover;
  border-radius: 2px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .swiper .swiper-wrapper .swiper-slide img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .gallery-swiper .swiper .swiper-wrapper .swiper-slide img {
    height: 200px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs {
  width: 100%;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper {
  width: 100%;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper .swiper-wrapper {
  width: 100%;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  max-width: 136px;
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper .swiper-wrapper .swiper-slide {
    max-width: 110px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper .swiper-wrapper .swiper-slide {
    max-width: 80px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper .swiper-wrapper .swiper-slide img {
    height: 110px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__img .swiper-thumbs .swiper .swiper-wrapper .swiper-slide img {
    height: 80px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info {
  width: 100%;
  max-width: 510px;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info h1 {
  color: #262626;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  letter-spacing: 0.56px;
  text-transform: capitalize;
  margin-bottom: 24px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info h1 {
    font-size: 20px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  gap: 10px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices {
    margin-bottom: 16px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices p {
  color: #262626;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  text-transform: capitalize;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices p {
    font-size: 18px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices span {
  color: #FF303C;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
  text-decoration-line: strikethrough;
  text-transform: capitalize;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__prices span {
    font-size: 12px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__characters {
  width: 100%;
  margin-bottom: 24px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__characters {
    margin-bottom: 16px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__characters p {
  color: #262626;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(23, 20, 59, 0.1);
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__characters p {
    font-size: 16px;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__characters p {
    font-size: 14px;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__characters p span {
  font-weight: 400;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__buttons {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(23, 20, 59, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__buttons {
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__buttons {
    flex-direction: column;
  }
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__buttons button {
  width: 100%;
  height: 40px;
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  border-radius: 2px;
  background: #74A433;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__buttons button:last-child {
  background: #FFB342;
  color: #1C2752;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__delivery {
  width: 100%;
  padding: 16px;
  border-radius: 2px;
  background: #F8F8F8;
}
.product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__delivery p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  color: #262626;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__cart .product-single__info .product-single__delivery p {
    gap: 10px;
    font-size: 16px;
  }
}
.product-single .product-single__container .product-single__right .product-single__about {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__about {
    margin-bottom: 40px;
  }
}
.product-single .product-single__container .product-single__right .product-single__about h4 {
  color: #1C2752;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  padding: 16px;
  border-bottom: 6px solid #EFEFEF;
  margin-bottom: 30px;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__about h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__about h4 {
    font-size: 18px;
    padding: 10px;
  }
}
.product-single .product-single__container .product-single__right .product-single__about p {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #E2E2E2;
  margin-bottom: 18px;
  color: #262626;
  gap: 10px;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__about p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .product-single .product-single__container .product-single__right .product-single__about p {
    font-size: 14px;
    padding: 6px 10px;
    margin: 0;
  }
}
.product-single .product-single__container .product-single__right .product-single__about p span {
  color: rgba(38, 38, 38, 0.7);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
  width: 48%;
}
@media (max-width: 1560px) {
  .product-single .product-single__container .product-single__right .product-single__about p span {
    font-size: 16px;
  }
}

.services {
  width: 100%;
  padding: 76px 20px 68px;
  background-color: rgba(130, 147, 168, 0.08);
}
@media (max-width: 1560px) {
  .services {
    padding: 60px 20px;
  }
}
.services .services__container .services__title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 44px;
}
@media (max-width: 1560px) {
  .services .services__container .services__title {
    margin-bottom: 20px;
  }
}
.services .services__container .services__title .title-span {
  background: #FFF;
}
.services .services__container .services__title h2 {
  color: #1C2752;
  text-align: center;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1560px) {
  .services .services__container .services__title h2 {
    font-size: 32px;
  }
}
.services .services__container .services__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media (max-width: 1560px) {
  .services .services__container .services__grid {
    grid-gap: 16px;
  }
}
@media (max-width: 1024px) {
  .services .services__container .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .services .services__container .services__grid {
    grid-template-columns: 1fr;
  }
}
.services .services__container .services__grid .services__item {
  width: 100%;
  padding: 48px 36px;
  border-radius: 2px;
  background: #1C2752;
}
@media (max-width: 1560px) {
  .services .services__container .services__grid .services__item {
    padding: 30px 16px;
  }
}
.services .services__container .services__grid .services__item .num {
  color: #FFB342;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 1560px) {
  .services .services__container .services__grid .services__item .num {
    font-size: 36px;
    margin-bottom: 16px;
  }
}
.services .services__container .services__grid .services__item h4 {
  margin-bottom: 12px;
}
.services .services__container .services__grid .services__item h4 a {
  color: #FFB342;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1560px) {
  .services .services__container .services__grid .services__item h4 a {
    font-size: 18px;
  }
}
.services .services__container .services__grid .services__item p {
  color: #D2D2D2;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
@media (max-width: 1560px) {
  .services .services__container .services__grid .services__item p {
    font-size: 16px;
  }
}
.services .services__container .services__grid .services__item .more {
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}
@media (max-width: 1560px) {
  .services .services__container .services__grid .services__item .more {
    font-size: 16px;
  }
}

.services-single {
  width: 100%;
  padding: 0 20px 120px;
}
@media (max-width: 1024px) {
  .services-single {
    padding-bottom: 60px;
  }
}
.services-single .services-single__container p {
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
.services-single .services-single__container p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .services-single .services-single__container p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 520px) {
  .services-single .services-single__container p {
    font-size: 12px;
  }
}
.services-single .services-single__container .services-single__flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__flex {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.services-single .services-single__container .services-single__flex .text {
  width: 100%;
  max-width: 814px;
}
.services-single .services-single__container .services-single__flex .text h1 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 38px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__flex .text h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.services-single .services-single__container .services-single__flex .text ul {
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__flex .text ul {
    margin-bottom: 16px;
  }
}
.services-single .services-single__container .services-single__flex .text ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  color: #262626;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  letter-spacing: 0.64px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__flex .text ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 520px) {
  .services-single .services-single__container .services-single__flex .text ul li {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
.services-single .services-single__container .services-single__flex .text ul li:last-child {
  margin-bottom: 0;
}
.services-single .services-single__container .services-single__flex .text ul li span {
  display: block;
  width: 12px;
  min-width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFB342;
  position: relative;
  top: 6px;
}
.services-single .services-single__container .services-single__flex .img {
  width: 100%;
  max-width: 694px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__flex .img {
    max-width: 400px;
  }
}
.services-single .services-single__container .services-single__flex .img img {
  width: 100%;
  height: 666px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__flex .img img {
    height: auto;
  }
}
.services-single .services-single__container .services-single__desc {
  width: 100%;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__desc {
    margin-bottom: 40px;
  }
}
.services-single .services-single__container .services-single__gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 152px);
  grid-gap: 20px;
}
@media (max-width: 1024px) {
  .services-single .services-single__container .services-single__gallery {
    grid-template-rows: repeat(5, 60px);
    gap: 10px;
  }
}
@media (max-width: 520px) {
  .services-single .services-single__container .services-single__gallery {
    grid-template-rows: repeat(5, 40px);
  }
}
.services-single .services-single__container .services-single__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-single .services-single__container .services-single__gallery img:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 3;
}
.services-single .services-single__container .services-single__gallery img:nth-child(2) {
  grid-row-start: 1;
  grid-row-end: 6;
}
.services-single .services-single__container .services-single__gallery img:nth-child(3) {
  grid-row-start: 1;
  grid-row-end: 4;
}
.services-single .services-single__container .services-single__gallery img:nth-child(4) {
  grid-row-start: 3;
  grid-row-end: 6;
}
.services-single .services-single__container .services-single__gallery img:nth-child(5) {
  grid-row-start: 4;
  grid-row-end: 6;
}

.subcategory {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 50px;
  border-bottom: 3px solid #EFEFEF;
}
@media (max-width: 1024px) {
  .subcategory {
    padding-bottom: 20px;
  }
}
.subcategory .subcategory__container h1 {
  color: #1C2752;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 33.6px */
  letter-spacing: 0.56px;
  text-transform: capitalize;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .subcategory .subcategory__container h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.subcategory .subcategory__container .subcategory__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 16px;
}
@media (max-width: 1024px) {
  .subcategory .subcategory__container .subcategory__grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .subcategory .subcategory__container .subcategory__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .subcategory .subcategory__container .subcategory__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.subcategory .subcategory__container .subcategory__grid .subcategory__item {
  width: 100%;
}
.subcategory .subcategory__container .subcategory__grid .subcategory__item .img {
  width: 100%;
  display: block;
  max-width: 160px;
  padding-left: 10px;
  margin-bottom: 22px;
}
@media (max-width: 1024px) {
  .subcategory .subcategory__container .subcategory__grid .subcategory__item .img {
    max-width: 120px;
    margin-bottom: 10px;
  }
}
.subcategory .subcategory__container .subcategory__grid .subcategory__item .img img {
  width: 100%;
  height: 150px;
  border-radius: 2px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .subcategory .subcategory__container .subcategory__grid .subcategory__item .img img {
    height: 120px;
  }
}
.subcategory .subcategory__container .subcategory__grid .subcategory__item h4 a {
  color: #000;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1024px) {
  .subcategory .subcategory__container .subcategory__grid .subcategory__item h4 a {
    font-size: 16px;
  }
}

.brendcrumbs {
  width: 100%;
  padding: 20px 20px;
}
.brendcrumbs .brendcrumbs__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.brendcrumbs .brendcrumbs__container a {
  color: #262626;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.14px;
  text-decoration-line: underline;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.brendcrumbs .brendcrumbs__container p {
  color: #262626;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.14px;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.pagination a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: #262626;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 2px;
}
.pagination a.active {
  background: #FFB342;
}
.pagination span {
  padding-bottom: 10px;
  color: #262626;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-item {
  width: 100%;
  position: relative;
}
.product-item .product-item__img {
  width: 100%;
  display: block;
}
.product-item .product-item__img img {
  height: 378px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1560px) {
  .product-item .product-item__img img {
    height: 270px;
  }
}
.product-item .product-item__text {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, #091242 14.34%, rgba(60, 60, 60, 0) 43.86%);
  padding: 22px 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.product-item .product-item__text h4 {
  min-height: 48px;
}
@media (max-width: 1560px) {
  .product-item .product-item__text h4 {
    min-height: 38px;
  }
}
.product-item .product-item__text h4 a {
  color: #FFF;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1560px) {
  .product-item .product-item__text h4 a {
    font-size: 16px;
  }
}