.rotate180 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  opacity: 1;
}

::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::-moz-placeholder,
::placeholder {
  color: #a3a3a3;
  opacity: 1;
}

:focus::-webkit-input-placeholder {
  color: transparent !important;
}

:focus::-webkit-input-placeholder,
:focus:-ms-input-placeholder,
:focus::-ms-input-placeholder,
:focus::-moz-placeholder,
:focus::placeholder {
  color: transparent !important;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration-thickness: 1px !important;
}

::-moz-selection {
  color: #fff;
  background: #00b3db;
}

::selection {
  color: #fff;
  background: #00b3db;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: gainsboro;
}

::-webkit-scrollbar-thumb {
  background-color: #00b3db;
}

@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: #00b3db gainsboro;
  }
}
a,
input,
textarea,
select,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

a,
input[type=button],
input[type=submit],
button {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

b {
  font-weight: 700;
}

.br,
img,
svg {
  display: block;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

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

body {
  min-width: 320px;
  color: #0d110f;
  font-family: "Lato", sans-serif;
  background: #f5f6fb;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
  padding-top: 120px;
  gap: 60px;
}
@media (min-width: 992px) {
  .wrapper {
    padding-top: 96px;
    gap: 100px;
  }
}

.container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.field__error {
  color: #db0000;
  font-size: 14px;
  line-height: 20px;
}

.input {
  display: block;
  width: 100%;
  border: 1px solid #e9e9e8;
  border-radius: 4px;
  background: #fff;
  height: 48px;
  padding: 0 16px;
  line-height: 1;
  font-size: 14px;
  color: #0d110f;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .input {
    font-size: 16px;
  }
}
.input:focus {
  border-color: #00b3db;
}
.input_error {
  background: #fdf2f2;
  border-color: #db0000;
}
.input_error:focus {
  border-color: #db0000;
}
.input[disabled] {
  background: #f5f6fb;
}

.input-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border: 1px solid #e9e9e8;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.input-password.focused {
  border-color: #00b3db;
}
.input-password input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  padding-right: 52px;
  line-height: 1;
  font-size: 14px;
  color: #0d110f;
  border: none;
  background: none;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .input-password input {
    font-size: 16px;
  }
}
.input-password button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22px;
  height: 22px;
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: none;
  padding: 0;
  border: none;
}
.input-password button svg {
  display: none;
  color: #484846;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.input-password button svg + svg {
  display: block;
}
.input-password [type=password] ~ button svg {
  display: block;
  color: #a3a3a3;
}
.input-password [type=password] ~ button svg + svg {
  display: none;
}
.input-password_error {
  background: #fdf2f2;
  border-color: #db0000;
}
.input-password_error.focused {
  border-color: #db0000;
}

.textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border: 1px solid #e9e9e8;
  border-radius: 4px;
  padding: 14px 16px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.textarea.focused {
  border-color: #00b3db;
}
.textarea_disabled {
  background: #f3f3f3;
  pointer-events: none;
}
.textarea textarea {
  display: block;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  font-size: 14px;
  line-height: 20px;
  color: #0d110f;
  resize: none;
  height: 90px;
}
@media (min-width: 768px) {
  .textarea textarea {
    font-size: 16px;
    line-height: 22px;
    height: 110px;
  }
}
.textarea textarea::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}
.checkbox_no-text {
  padding: 0;
  width: 20px;
  height: 20px;
}
.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  border: none;
  background: none;
  z-index: 1;
}
.checkbox b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #9f9f9f;
  border-radius: 4px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.checkbox:hover b {
  border-color: #00b3db;
}
.checkbox input:checked + b {
  background: #00b3db;
  border-color: #00b3db;
}
.checkbox input:checked + b svg {
  opacity: 1;
}
.checkbox svg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.checkbox i {
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox_error b, .checkbox_error:hover b {
  border-color: #db0000;
}

.checkbox-square {
  position: relative;
  padding-left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.checkbox-square input {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  border: none;
  background: none;
  z-index: 1;
}
.checkbox-square b {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #a3a3a3;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-square i {
  background: #484846;
  border-radius: 2px;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.checkbox-square:hover b {
  border-color: #99e1f1;
}
.checkbox-square :checked + b {
  border-color: #00b3db;
}
.checkbox-square :checked + b i {
  opacity: 1;
}
.checkbox-square span {
  color: #767674;
  font-size: 12px;
  line-height: 18px;
  padding-top: 1px;
}
@media (min-width: 768px) {
  .checkbox-square span {
    font-size: 14px;
    line-height: 20px;
    padding-top: 0;
  }
}
.checkbox-square span a {
  color: #484846;
  text-decoration: underline;
}
.checkbox-square span a:hover {
  color: #00b3db;
}
.checkbox-square_error b, .checkbox-square_error:hover b {
  border-color: #db0000;
}

.button {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 32px;
  height: 44px;
  background: none;
  border: 1px solid #00b3db;
  border-radius: 4px;
  color: #484846;
  letter-spacing: 0.02em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 12px;
}
@media (min-width: 992px) {
  .button {
    font-size: 16px;
    line-height: 22px;
    height: 48px;
  }
}
.button:hover {
  background: #00b3db;
  color: #fff;
}
.button > svg {
  width: 16px;
  aspect-ratio: 1/1;
}
.button_fill {
  background: #00b3db;
  color: #fff;
}
.button_fill:hover {
  border-color: #008faf;
  background: #008faf;
}
.button_more span + span {
  display: none;
}
.button_more.active span {
  display: none;
}
.button_more.active span + span {
  display: block;
}

.button-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00b3db;
  overflow: hidden;
  border-radius: 4px;
  border: none;
  padding: 0;
  color: #fff;
  height: 44px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1;
  font-size: 14px;
}
@media (min-width: 992px) {
  .button-icon {
    height: 48px;
    font-size: 16px;
  }
}
.button-icon:hover {
  background: #008faf;
}
.button-icon i {
  width: 52px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #fff;
}
@media (min-width: 992px) {
  .button-icon i {
    width: 54px;
  }
}
.button-icon i.i-arrow-right svg {
  width: 18px;
  aspect-ratio: 18/14;
}
.button-icon i.i-chat svg {
  color: #00b3db;
}
.button-icon i.i-sign svg {
  position: relative;
  left: -2px;
}
.button-icon i.i-small svg {
  width: 16px;
  aspect-ratio: 1/1;
}
@media (min-width: 992px) {
  .button-icon i.i-small svg {
    width: 18px;
  }
}
.button-icon svg {
  width: 20px;
  aspect-ratio: 1/1;
}
@media (min-width: 992px) {
  .button-icon svg {
    width: 22px;
  }
}
.button-icon b {
  width: calc(100% - 52px);
  height: 100%;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
}
@media (min-width: 992px) {
  .button-icon b {
    width: calc(100% - 54px);
  }
}
.button-icon_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: #484846;
  background: #e6f8fc;
}
.button-icon_reverse:hover {
  background: #00b3db;
  color: #fff;
}
.button-icon_reverse i {
  border: none;
  border-left: 1px solid;
}
.button-icon_reverse-blue {
  background: #00b3db;
  color: #fff;
}
.button-icon_reverse-blue:hover {
  background: #008faf;
}
.button-icon_reverse-blue[disabled] {
  background: #ccf0f8;
  cursor: not-allowed;
}
.button-icon_thin {
  border: 1px solid #00b3db;
  background: none;
  color: #000;
}
.button-icon_thin i {
  border-color: #00b3db;
}
.button-icon_thin:hover {
  border-top: none;
  border-bottom: none;
  color: #fff;
}
.button-icon_thin:hover i {
  border-color: #fff;
}

.title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #0d110f;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 32px;
  }
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.socials__item {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
}
.socials__item:hover {
  color: #fff;
  background: #00b3db;
}

.navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.navs__item {
  width: 36px;
  height: 36px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: 1px solid #00b3db;
  color: #0d110f;
  border-radius: 4px;
}
.navs__item:hover {
  background: #00b3db;
  color: #fff;
}

.swiper__toper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .swiper__toper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .swiper__toper {
    margin-bottom: 28px;
  }
}
.swiper__toper-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.swiper__toper .title {
  margin: 0;
}
.swiper__toper .navs {
  display: none;
}
@media (min-width: 768px) {
  .swiper__toper .navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.swiper-pagination {
  margin-top: 20px;
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 992px) {
  .swiper-pagination {
    margin-top: 28px;
  }
}
.swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  margin: 0 !important;
  opacity: 1;
  border-radius: 2px;
  border: 1px solid #d1d1d1;
  background: none;
  position: relative;
}
.swiper-pagination-bullet:hover {
  border-color: #99e1f1;
}
.swiper-pagination-bullet:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #484846;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.swiper-pagination-bullet-active {
  border-color: #00b3db;
}
.swiper-pagination-bullet-active:before {
  opacity: 1;
}
.swiper-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .swiper-more {
    margin-top: 28px;
  }
}

.bottom {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9;
}
@media (min-width: 768px) {
  .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.bottom__item {
  width: 44px;
  height: 44px;
  color: #484846;
  background: #fff;
  padding: 0;
  border: 1px solid #00b3db;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bottom__item:hover {
  background: #00b3db;
  color: #fff;
}
.bottom__item svg {
  position: relative;
  top: -1px;
}
.bottom__item_chat {
  background: #00b3db;
  color: #00b3db;
  border: none;
}
.bottom__item_chat:hover {
  background: #008faf;
  color: #00b3db;
}

main {
  padding-top: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  main {
    padding-top: 40px;
  }
}

.breadcrumbs {
  width: calc(100% + 32px);
  color: #9da1a1;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 -16px;
  padding: 0 16px;
  margin-bottom: 32px;
  overflow: hidden;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .breadcrumbs {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
  }
}
.breadcrumbs::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.breadcrumbs li:before {
  content: "";
  background: #0d110f;
  width: 4px;
  height: 4px;
  border-radius: 999px;
}
.breadcrumbs li:first-child:before {
  display: none;
}
.breadcrumbs a {
  color: #0d110f;
}
.breadcrumbs a:hover {
  color: #00b3db;
}

.quantity {
  width: 168px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.quantity__button {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  border-radius: 4px;
  border: none;
  padding: 0;
  background: #00b3db;
}
.quantity__button:hover {
  background: #008faf;
}
.quantity__button[disabled] {
  color: #00b3db;
  background: #e6f8fc;
}
.quantity__input {
  border: 1px solid #e9e9e8;
  border-radius: 4px;
  height: 36px;
  width: 80px;
  padding: 0;
  background: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.quantity__input:focus {
  border-color: #00b3db;
}

.attachment {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 16px;
  padding-right: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
}
.attachment__close {
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -16px;
}
.attachment__close:hover {
  color: #00b3db;
}
.attachment__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #f2f4fd;
  color: #0633dd;
}
@media (min-width: 768px) {
  .attachment__icon {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 768px) {
  .attachment__icon svg {
    width: 26px;
    height: 26px;
  }
}
.attachment__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 40px);
  padding-left: 16px;
  gap: 4px;
  font-size: 12px;
  line-height: 16px;
  color: #a3a3a3;
}
@media (min-width: 768px) {
  .attachment__text {
    font-size: 14px;
    width: calc(100% - 48px);
  }
}
.attachment__text b {
  color: #0d110f;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .attachment__text b {
    font-size: 16px;
  }
}

.page-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .page-404 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page-404__pic {
  width: 100%;
}
@media (min-width: 992px) {
  .page-404__pic {
    width: calc(50% - 16px);
  }
}
.page-404__body {
  width: 100%;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) {
  .page-404__body {
    width: calc(50% - 16px);
    padding: 0;
  }
}
.page-404__numb {
  color: #99e1f1;
}
@media (min-width: 768px) {
  .page-404__numb {
    width: 149px;
    height: 64px;
  }
}
.page-404__title {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  width: 100%;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .page-404__title {
    font-size: 40px;
    line-height: 52px;
  }
}
.page-404__text {
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .page-404__text {
    font-size: 18px;
    line-height: 24px;
  }
}
.page-404__button {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .page-404__button {
    margin-top: 60px;
  }
}

.empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.empty__pic {
  width: 100%;
  max-width: 500px;
}
.empty__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-top: 32px;
  text-align: center;
}
.empty__title {
  width: 100%;
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.empty__text {
  width: 100%;
  color: #767674;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .empty__text {
    font-size: 18px;
    line-height: 24px;
  }
}
.empty__text a {
  color: #0d110f;
  text-decoration: underline;
}
.empty__text a:hover {
  color: #00b3db;
}
.empty__button {
  margin-top: 20px;
}

.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  margin-top: 12px;
}
.pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination li:first-child {
  margin-right: 24px;
}
.pagination li:last-child {
  margin-left: 24px;
}
.pagination__current {
  border-radius: 4px;
  min-width: 36px;
  height: 36px;
  padding: 0 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #00b3db;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pagination__item {
  border-radius: 4px;
  min-width: 36px;
  height: 36px;
  padding: 0 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination__item:hover {
  background: #ccf0f8;
}
.pagination__nav {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  border: 1px solid #99e1f1;
  background: none;
  padding: 0;
}
.pagination__nav:hover {
  border-color: #00b3db;
  background: #00b3db;
  color: #fff;
}
@media (min-width: 768px) {
  .pagination__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
}
.search__form-input {
  padding-right: 108px;
  position: relative;
  z-index: 1;
}
.search__form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 16px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.search__form-buttons:before {
  content: "";
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 1px;
  height: 28px;
  background: #d1d1d1;
  border-radius: 999px;
}
.search__form-loop {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 22px;
  height: 22px;
  padding: 0;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
}
.search__form-loop:hover {
  color: #008faf;
}
.search__form-close {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 22px;
  height: 22px;
  padding: 0;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0d110f;
}
.search__label {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .search__label {
    margin-top: 28px;
  }
}
.search__list {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .search__list {
    margin-top: 28px;
  }
}
.search__item {
  font-size: 12px;
  line-height: 16px;
  background: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #d5dde4;
  padding: 20px 16px;
}
@media (min-width: 992px) {
  .search__item {
    font-size: 14px;
    line-height: 20px;
    padding: 24px 20px;
  }
}
.search__item-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
.search__item-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media (min-width: 992px) {
  .search__item-text {
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.search__item-text mark {
  background: none;
  color: #0d110f;
  font-weight: 600;
}
.search__item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .search__item-date {
    margin-top: 16px;
  }
}
.search__item-path {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 12px;
}
.search__item-path a:hover {
  color: #00b3db;
}
.search__item-path svg {
  color: #484846;
}
.search__more {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .search__more {
    margin-top: 28px;
  }
}

.video {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.video div {
  width: 100%;
  aspect-ratio: 1010/460;
  min-height: 240px;
  max-height: 460px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d110f;
}
.video button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(13, 17, 15, 0.4);
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
}
.video button:hover {
  color: #008faf;
}
.video.active button {
  display: none;
}
.video a {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 179, 219, 0.4);
  color: #fff;
  gap: 18px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  border-radius: 0 4px 4px 0;
  z-index: 3;
  position: absolute;
  left: 0;
  bottom: 20px;
  height: 50px;
}
@media (min-width: 768px) {
  .video a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.video.active a {
  display: none;
}
.video span {
  color: #767674;
}

.const {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .const {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .const {
    gap: 24px;
  }
}
.const h1,
.const h2,
.const h3,
.const h4,
.const h5,
.const h6 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .const h1,
  .const h2,
  .const h3,
  .const h4,
  .const h5,
  .const h6 {
    font-size: 32px;
    line-height: 40px;
  }
}
.const h1:first-child,
.const h2:first-child,
.const h3:first-child,
.const h4:first-child,
.const h5:first-child,
.const h6:first-child {
  margin-top: 0;
}
.const p {
  margin: 0;
}
.const p a {
  text-decoration: underline;
  color: #00b3db;
}
.const p a:hover {
  color: #008faf;
}
.const__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.const__img img {
  width: 100%;
  aspect-ratio: 1010/460;
  min-height: 240px;
  max-height: 460px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.const__img span {
  color: #767674;
}
.const ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.const ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 18px;
}
.const ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #00b3db;
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 0;
}
.const ul li a {
  text-decoration: underline;
  color: #00b3db;
}
.const ul li a:hover {
  color: #008faf;
}
.const blockquote {
  margin: 0;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #fff;
  border-radius: 4px;
  border: 4px solid #00b3db;
  border-top: none;
  border-bottom: none;
  padding: 16px 20px;
}

.tabs {
  width: 100%;
  display: grid;
  background: #e9e9e8;
  padding: 4px;
  grid-template-columns: 1fr 1fr;
  border-radius: 4px;
  gap: 4px;
}
@media (min-width: 768px) {
  .tabs {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: none;
  background: none;
  padding: 0;
  height: 32px;
}
@media (min-width: 768px) {
  .tabs__item {
    padding: 0 24px;
  }
}
.tabs__item.active {
  background: #00b3db;
  color: #fff;
}

.toggle {
  display: block;
  width: 36px;
  height: 20px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.toggle__input {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
}
.toggle__icon {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #c3c7d9;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.toggle__icon:before {
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  left: 2px;
  width: 16px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #fff;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.toggle__input:checked + .toggle__icon {
  background: #00b3db;
}
.toggle__input:checked + .toggle__icon:before {
  left: 18px;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid #e9e9e8;
}
@media (min-width: 768px) {
  .rating {
    padding: 14px 20px;
  }
}
.rating__title {
  color: #afafb8;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .rating__title {
    font-size: 16px;
    line-height: 22px;
  }
}
.rating [data-star-rating] .gl-star-rating--stars {
  gap: 4px;
}
.rating [data-star-rating] .gl-star-rating--stars > span {
  width: 28px;
  height: 28px;
  background-size: 28px 28px;
}
@media (min-width: 768px) {
  .rating [data-star-rating] .gl-star-rating--stars > span {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
}
.rating [data-star-rating] .gl-star-rating--stars[aria-label]:before {
  display: none;
}
.rating [data-star-rating] .gl-star-rating--stars[aria-label]:after {
  background: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #0d110f;
  padding: 0;
  margin: 0;
  padding-left: 10px;
  position: static;
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  border-radius: 0;
  padding: 2px 0;
  border: none;
  margin-left: 16px;
}
@media (min-width: 768px) {
  .rating [data-star-rating] .gl-star-rating--stars[aria-label]:after {
    font-size: 16px;
    line-height: 22px;
    padding-left: 16px;
    margin-left: 16px;
  }
}

.header {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-box-shadow: 0px 2px 12px 0px rgba(17, 14, 11, 0.06);
          box-shadow: 0px 2px 12px 0px rgba(17, 14, 11, 0.06);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 16px 0;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .header__body {
    height: 96px;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 50%;
}
@media (min-width: 768px) {
  .header__left {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .header__left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(50% - 102px);
  }
}
.header__center {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
}
@media (min-width: 992px) {
  .header__center {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 204px;
    margin: 0;
    padding: 0;
  }
}
.header__center:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #e7e8e7;
}
@media (min-width: 992px) {
  .header__center:after {
    display: none;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 50%;
}
@media (min-width: 768px) {
  .header__right {
    width: 30%;
  }
}
@media (min-width: 992px) {
  .header__right {
    width: calc(50% - 102px);
  }
}
.header__burger {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background: none;
  border: none;
  margin-right: 20px;
}
.header__burger:hover {
  color: #00b3db;
}
.header__burger svg,
.header__burger img {
  width: 24px;
  aspect-ratio: 24/16;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__link {
  display: none;
  margin-left: 22px;
}
@media (min-width: 768px) {
  .header__link {
    display: block;
  }
}
.header__link:hover {
  color: #00b3db;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo svg,
.header__logo img {
  height: 22px;
}
@media (min-width: 992px) {
  .header__logo svg,
  .header__logo img {
    height: 26px;
  }
}
@media (min-width: 1300px) {
  .header__logo svg,
  .header__logo img {
    height: 32px;
  }
}
.header__button {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background: none;
  border: none;
  color: #00b3db;
  position: relative;
}
.header__button:hover {
  color: #008faf;
}
@media (min-width: 768px) {
  .header__button:last-child {
    width: auto;
  }
}
.header__button_search {
  display: none;
}
.header__button svg,
.header__button img {
  position: relative;
  z-index: 1;
}
.header__button b {
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #484846;
  color: #fff;
  position: absolute;
  left: 11px;
  bottom: 11px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1;
  overflow: hidden;
}
.header__button span {
  display: none;
  color: #0d110f;
  padding-left: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .header__button span {
    display: block;
  }
}
.header__button:hover span {
  color: #767674;
}

.header-hided .header {
  top: -100%;
}

.header-menu {
  z-index: 4;
  overflow: hidden;
  position: fixed;
  width: 0;
  height: calc(100% - 120px);
  bottom: 0;
  left: 0;
}
@media (min-width: 992px) {
  .header-menu {
    height: calc(100% - 96px);
  }
}
.header-menu__overlay {
  z-index: 1;
  background: rgba(13, 17, 15, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.header-menu__close {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #00b3db;
  padding: 0;
  background: #fff;
  position: fixed;
  left: 442px;
  bottom: -100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .header-menu__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-menu__close:hover {
  background: #00b3db;
  color: #fff;
}
.header-menu__close svg {
  position: relative;
  left: -1px;
}
.header-menu__body {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #fff;
  z-index: 2;
  max-width: 498px;
  padding: 40px 16px;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  overflow: hidden;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .header-menu__body {
    padding: 60px;
    padding-right: 80px;
    gap: 48px;
  }
}
@media (min-width: 1300px) {
  .header-menu__body {
    padding: 80px;
    gap: 80px;
  }
}
.header-menu__navs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.header-menu__navs-item {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 1300px) {
  .header-menu__navs-item {
    font-size: 24px;
    line-height: 32px;
  }
}
.header-menu__navs-item:hover {
  color: #00b3db;
}
.header-menu__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .header-menu__bottom {
    gap: 48px;
  }
}
.header-menu__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media (min-width: 1300px) {
  .header-menu__info {
    gap: 32px;
  }
}
.header-menu__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1300px) {
  .header-menu__info-item {
    font-size: 16px;
    line-height: 22px;
  }
}
.header-menu__info-item > a {
  color: #00b3db;
  text-decoration: underline;
}
.header-menu__info-item > a:hover {
  color: #008faf;
}
.header-menu__info-label {
  color: #a3a3a3;
}
.header-menu__info .socials {
  margin-top: 6px;
}

.menu-actived {
  overflow: hidden;
}
.menu-actived .header {
  z-index: 11;
}
.menu-actived .header__burger {
  color: #00b3db;
}
.menu-actived .header__burger svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu-actived .header-menu {
  width: 100%;
  z-index: 10;
}
.menu-actived .header-menu__overlay {
  opacity: 1;
}
.menu-actived .header-menu__close {
  bottom: 20px;
}
.menu-actived .header-menu__body {
  left: 0;
}

.header-search {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.header-search__overlay {
  z-index: 1;
  background: rgba(13, 17, 15, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.header-search__body {
  height: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
  top: 140px;
}
@media (min-width: 992px) {
  .header-search__body {
    top: 120px;
  }
}
.header-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.header-search__form-input {
  padding-right: 108px;
  position: relative;
  z-index: 1;
}
.header-search__form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 16px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.header-search__form-buttons:before {
  content: "";
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 1px;
  height: 28px;
  background: #d1d1d1;
  border-radius: 999px;
}
.header-search__form-loop {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 22px;
  height: 22px;
  padding: 0;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
}
.header-search__form-loop:hover {
  color: #008faf;
}
.header-search__form-close {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 22px;
  height: 22px;
  padding: 0;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0d110f;
}
.header-search__results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-radius: 4px;
  border: 1px solid #00b3db;
  padding: 16px;
  background: #fff;
}
.header-search__results-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  max-height: 363px;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 16px;
}
.header-search__results-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.header-search__results-item {
  border-top: 1px solid #e9e9e8;
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-search__results-item:first-child {
  border-top: none;
  padding-top: 0;
}
.header-search__results-item-pic {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-search__results-item-text {
  width: calc(100% - 72px);
  padding-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.header-search__results-item-text b {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header-search__results-item-text i {
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.header-search__results-item:hover .header-search__results-item-text b {
  color: #00b3db;
}
.header-search__results-more {
  font-weight: 700;
  padding: 0;
  background: none;
  border: none;
  color: #00b3db;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .header-search__results-more {
    font-size: 16px;
    line-height: 22px;
  }
}
.header-search__results-more:hover {
  color: #008faf;
}

.search-actived {
  overflow: hidden;
}
.search-actived .header {
  z-index: 11;
}
.search-actived .header__button_search {
  color: #008faf;
}
.search-actived .header-search {
  height: 100%;
}
.search-actived .header-search__overlay {
  opacity: 1;
}
.search-actived .header-search__body {
  opacity: 1;
}

.footer {
  background: #fff;
  padding-top: 40px;
  overflow: hidden;
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .footer__body {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .footer__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer__left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
}
@media (min-width: 992px) {
  .footer__left {
    width: 300px;
  }
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .footer__right {
    width: calc(100% - 300px);
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo svg {
  width: 156px;
  height: 32px;
}
@media (min-width: 768px) {
  .footer__logo svg {
    width: 204px;
    height: 42px;
  }
}
.footer__socials {
  width: 100%;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .footer__menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
.footer__menu-link {
  font-weight: 600;
}
.footer__menu-link:hover {
  color: #00b3db;
}
.footer__info {
  margin-top: 32px;
  padding-top: 32px;
  display: grid;
  gap: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .footer__info {
    gap: 40px;
    width: 480px;
    grid-template-columns: 1fr 1fr;
  }
}
.footer__info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  height: 1px;
  background: #e9e9e8;
}
@media (min-width: 768px) {
  .footer__info:before {
    width: 20000px;
  }
}
@media (min-width: 992px) {
  .footer__info:before {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.footer__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  font-weight: 600;
}
.footer__info-item span {
  color: #a3a3a3;
  font-weight: 400;
}
.footer__info-item a {
  text-decoration: underline;
}
.footer__info-item a:hover {
  color: #00b3db;
}
.footer__bottom {
  margin-top: 40px;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-size: 14px;
  line-height: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }
}
@media (min-width: 1300px) {
  .footer__bottom {
    margin-top: 80px;
  }
}
.footer__bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  height: 1px;
  background: #e9e9e8;
}
@media (min-width: 768px) {
  .footer__bottom:before {
    width: 20000px;
  }
}
.footer__policy:hover {
  color: #00b3db;
}
.footer__dev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.footer__dev:hover {
  color: #00b3db;
}
.footer__dev svg {
  width: 31px;
  aspect-ratio: 31/40;
}
.footer__dev span {
  width: calc(100% - 31px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
  padding-left: 12px;
}

.top-pic {
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  background: #0d110f;
}
.top-pic:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 15, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.top-pic img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-pic .container {
  position: relative;
  z-index: 3;
}
.top-pic__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  min-height: 520px;
}
@media (min-width: 768px) {
  .top-pic__body {
    min-height: 380px;
  }
}
@media (min-width: 1300px) {
  .top-pic__body {
    min-height: 450px;
  }
}
.top-pic__title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  max-width: 1040px;
}
@media (min-width: 992px) {
  .top-pic__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1300px) {
  .top-pic__title {
    font-size: 48px;
    line-height: 52px;
  }
}
.top-pic__text {
  margin: 0;
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  max-width: 1040px;
}
@media (min-width: 992px) {
  .top-pic__text {
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
  }
}
.top-pic__callback {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .top-pic__callback {
    margin-top: 60px;
  }
}

.service {
  font-size: 14px;
  line-height: 20px;
  color: #484846;
  overflow: hidden;
  padding-top: 60px;
}
@media (min-width: 992px) {
  .service {
    padding-top: 80px;
  }
}
.service__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (min-width: 992px) {
  .service__body {
    gap: 80px;
  }
}
.service__body-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service__subtitle {
  margin-top: 8px;
}
.service__item {
  background: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 2px solid #cdd6f8;
}
.service__item-pic {
  position: relative;
  overflow: hidden;
  height: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  border-bottom: 2px solid #cdd6f8;
  border-radius: 0 0 4px 4px;
}
@media (min-width: 992px) {
  .service__item-pic {
    color: #0d110f;
  }
}
.service__item-pic:before {
  content: "";
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d110f;
  opacity: 0.5;
}
@media (min-width: 992px) {
  .service__item-pic:before {
    background: #f2f4fd;
    opacity: 1;
  }
}
.service__item-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .service__item-pic img {
    opacity: 0;
  }
}
.service__item-pic-body {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 12px;
  width: 100%;
}
.service__item-pic-name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  width: calc(100% - 36px);
  padding-right: 16px;
}
@media (min-width: 768px) {
  .service__item-pic-name {
    font-size: 20px;
    line-height: 28px;
  }
}
.service__item-pic-arrow {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #00b3db;
  background: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service__item-pic-arrow:hover {
  background: #00b3db;
}
.service__item:hover .service__item-pic {
  color: #fff;
}
@media (min-width: 992px) {
  .service__item:hover .service__item-pic:before {
    background: #0d110f;
    opacity: 0.5;
  }
}
@media (min-width: 992px) {
  .service__item:hover .service__item-pic img {
    opacity: 1;
  }
}
.service__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 20px 16px;
}
.service__item-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.service__item-price {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: -8px;
}
.service__item-price span {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.service__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .service__item-list {
    font-size: 16px;
    line-height: 22px;
  }
}
.service__item-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.service__item-delete {
  padding: 0;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}
.service__item-delete:hover {
  color: #00b3db;
}
.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .service__list {
    margin-top: 28px;
  }
}
.service__list-items {
  display: grid;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .service__list-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .service__list-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1300px) {
  .service__list-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service__list .service__item {
  display: none;
}
.service__list .service__item:nth-child(1), .service__list .service__item:nth-child(2), .service__list .service__item:nth-child(3), .service__list .service__item:nth-child(4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .service__list .service__item:nth-child(5), .service__list .service__item:nth-child(6), .service__list .service__item:nth-child(7), .service__list .service__item:nth-child(8), .service__list .service__item:nth-child(9) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1300px) {
  .service__list .service__item:nth-child(10), .service__list .service__item:nth-child(11), .service__list .service__item:nth-child(12) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.service__list.active .service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service__notify {
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
}
@media (min-width: 768px) {
  .service__notify {
    padding: 24px 40px;
    font-size: 16px;
    line-height: 22px;
  }
}
.service__notify a {
  color: #00b3db;
  text-decoration: underline;
}
.service__notify a:hover {
  color: #008faf;
}
@media (min-width: 768px) {
  .service__notify span {
    display: block;
  }
}
.service__info {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .service__info {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  border-radius: 4px;
  background: #fff;
  padding: 20px 16px;
  min-height: 350px;
}
@media (min-width: 768px) {
  .service__info-item {
    font-size: 16px;
    line-height: 22px;
    padding: 24px;
  }
}
.service__info-item-icon {
  height: 102px;
  aspect-ratio: 1/1;
  color: #ccf0f8;
  position: absolute;
  bottom: 20px;
  right: 16px;
  z-index: 1;
}
@media (min-width: 768px) {
  .service__info-item-icon {
    height: 148px;
    bottom: 24px;
    right: 24px;
  }
}
.service__info-item:first-child .service__info-item-icon {
  aspect-ratio: 174/150;
}
.service__info-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .service__info-item-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.service__info-item-text {
  margin: 0;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .service__info-item-text {
    font-weight: 600;
  }
}
.service__info-item-button {
  margin-top: 28px;
}
.service__info-item-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .service__info-item-list {
    gap: 20px;
    margin-top: 20px;
  }
}
@media (min-width: 1300px) {
  .service__info-item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service__info-item-thing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
}
.service__info-item-thing b {
  font-weight: 400;
  color: #a3a3a3;
}
.service__info-item-thing span,
.service__info-item-thing a {
  text-decoration: underline;
}
.service__info-item-thing > a:hover {
  color: #00b3db;
}
.service__info-item-thing .socials {
  margin-top: 2px;
}
@media (min-width: 768px) {
  .service__info-item-thing .socials {
    margin-top: 6px;
  }
}

.service-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-page__title {
  margin-bottom: 8px;
}
.service-page__subtitle {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .service-page__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 28px;
  }
}
.service-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .service-page__list {
    gap: 28px;
  }
}
.service-page__list-body {
  width: 100%;
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .service-page__list-body {
    gap: 20px;
  }
}
@media (min-width: 1300px) {
  .service-page__list-body {
    grid-template-columns: 1fr 1fr;
  }
}
.service-page__list.active .service-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .service-page__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.service-page__item-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .service-page__item-one {
    width: calc(100% - 200px);
    padding-right: 20px;
  }
}
.service-page__item-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .service-page__item-two {
    width: 200px;
  }
}
.service-page__item-pic {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: #f5f6fb;
  color: #0d110f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-page__item-pic svg {
  position: relative;
  z-index: 1;
}
.service-page__item-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service-page__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 72px);
  gap: 8px;
  padding-left: 12px;
}
.service-page__item-text b {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.service-page__item-text span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 20px;
}
.service-page__item-button {
  width: calc(100% - 56px);
  padding: 0;
  font-size: 14px;
  height: 44px;
}
.service-page__item-arrow {
  color: #484846;
  width: 44px;
  height: 44px;
  border: 1px solid #00b3db;
  background: #fff;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
}
.service-page__item-arrow:hover {
  border-color: #008faf;
  background: #008faf;
  color: #fff;
}
.service-page__item-arrow svg {
  width: 18px;
  height: 16px;
}
.service-page__item-more {
  width: 100%;
  padding: 0;
  font-size: 14px;
  height: 44px;
}
.service-page__item-more i {
  width: 46px;
}
.service-page__item-more b {
  width: calc(100% - 46px);
}

.news {
  overflow: hidden;
  padding-top: 60px;
}
@media (min-width: 992px) {
  .news {
    padding-top: 80px;
  }
}
.news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__swiper {
  width: 100%;
}
.news__swiper .swiper {
  padding-bottom: 62px;
}
.news__swiper .swiper-more {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  margin: 0;
}
@media (min-width: 768px) {
  .news__swiper .swiper-more {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.news__swiper .swiper-more .button {
  height: 40px;
}
.swiper-slide-news {
    max-width: 404px;
    min-height: 444px;
    margin-right: 20px;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-radius: 4px;
}
.news__item-pic {
  width: 100%;
  height: 220px;
  border-radius: 0 0 4px 4px;
  background: #ccf0f8;
  overflow: hidden;
  position: relative;
}
.news__item-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news__item:hover .news__item-pic img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.news__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 16px;
}
.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  min-height: 116px;
}
.news__item-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
.news__item-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
.news__item-button {
  margin-top: 20px;
}

.news-page {
  width: 100%;
}
.news-page__toper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .news-page__toper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.news-page__title {
  margin: 0;
}
@media (min-width: 768px) {
  .news-page__title {
    max-width: 50%;
  }
}
.news-page__tabs {
  background: #e9e9e8;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 4px;
}
.news-page__tabs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  padding: 0 24px;
  height: 32px;
  border-radius: 4px;
}
.news-page__tabs-item:hover {
  color: #008faf;
}
.news-page__tabs-item.active {
  background: #00b3db;
  color: #fff;
}
.news-page__tabs-item span {
  display: none;
}
@media (min-width: 768px) {
  .news-page__tabs-item span {
    display: inline;
  }
}
.news-page__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-page__empty-icon {
  width: 100%;
  height: 180px;
  aspect-ratio: 259/220;
}
@media (min-width: 768px) {
  .news-page__empty-icon {
    height: 220px;
  }
}
.news-page__empty-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  text-align: center;
}
.news-page__empty-title {
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.news-page__empty-text {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #767674;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .news-page__empty-text {
    font-size: 18px;
    line-height: 24px;
  }
}
.news-page__empty-text a {
  color: #0d110f;
  text-decoration: underline;
}
.news-page__empty-text a:hover {
  color: #00b3db;
}
.news-page__empty-button {
  margin-top: 32px;
}
.news-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  .news-page__body {
    gap: 28px;
  }
}
.news-page__body-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .news-page__body-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .news-page__body-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.news-page__body .news__item {
  display: none;
}
.news-page__body .news__item:nth-child(1), .news-page__body .news__item:nth-child(2), .news-page__body .news__item:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .news-page__body .news__item:nth-child(4), .news-page__body .news__item:nth-child(5), .news-page__body .news__item:nth-child(6) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1300px) {
  .news-page__body .news__item:nth-child(7), .news-page__body .news__item:nth-child(8), .news-page__body .news__item:nth-child(9) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.news-page__body.active .news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-header {
  overflow: hidden;
  background: #000;
  position: relative;
  color: #fff;
}
.news-header:before {
  content: "";
  background: rgba(13, 17, 15, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-header__img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-header .container {
  position: relative;
  z-index: 3;
}
.news-header .breadcrumbs {
  color: #00b3db;
}
.news-header .breadcrumbs li:before {
  background: #fff;
}
.news-header .breadcrumbs a {
  color: #fff;
}
.news-header__body {
  padding-top: 20px;
  padding-bottom: 96px;
}
@media (min-width: 992px) {
  .news-header__body {
    padding-bottom: 166px;
  }
}
.news-header__title {
  margin: 0;
  margin-top: 80px;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  max-width: 722px;
}
@media (min-width: 992px) {
  .news-header__title {
    margin-top: 126px;
    font-size: 40px;
    line-height: 52px;
  }
}
.news-header__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 22px;
  max-width: 722px;
}
@media (min-width: 992px) {
  .news-header__text {
    margin-top: 20px;
  }
}

.fancybox__backdrop {
  background: rgba(13, 17, 15, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.fancybox__slide {
  padding: 10px;
}
.fancybox__content {
  width: 100%;
  border-radius: 8px;
  padding: 20px 12px;
}
@media (min-width: 768px) {
  .fancybox__content {
    padding: 32px;
  }
}
.fancybox__content .is-close-btn {
  background: none !important;
  width: 36px;
  height: 36px;
  color: #fff;
  top: -48px !important;
  right: 0 !important;
  opacity: 1 !important;
}
@media (min-width: 768px) {
  .fancybox__content .is-close-btn {
    top: -36px !important;
    right: -36px !important;
  }
}
.fancybox__content .is-close-btn:hover {
  color: #00b3db;
}
.fancybox__content .is-close-btn svg {
  width: 18px;
  height: 18px;
}

.modal {
  max-width: 460px;
  color: #0d110f;
}
.modal_big {
  max-width: 828px;
}
.modal_service {
  padding: 12px;
}
.modal__title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.modal__title svg {
  position: relative;
  top: -2px;
}
.modal__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .modal__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
}
.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.modal__body p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #484846;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .modal__body p {
    margin-bottom: 32px;
  }
}
.modal__body p a {
  color: #00b3db;
  text-decoration: underline;
}
.modal__body p a:hover {
  color: #008faf;
}
.modal__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .modal__fields {
    margin-top: 24px;
  }
}
.modal__fields-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .modal__fields-link {
    font-size: 16px;
    line-height: 22px;
  }
}
.modal__fields-link a {
  color: #00b3db;
}
.modal__fields-link a:hover {
  color: #008faf;
}
.modal__fields-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.modal__fields-item-label {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .modal__fields-item-label {
    font-size: 16px;
    line-height: 22px;
  }
}
.modal__checkbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 22px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .modal__checkbox {
    margin-top: 24px;
  }
}
.modal__button {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .modal__button {
    margin-top: 24px;
  }
}
.modal__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .modal__service {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.modal__service-photo {
  width: 100%;
  height: 185px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .modal__service-photo {
    width: 340px;
    height: 100%;
    min-height: 340px;
  }
}
.modal__service-body {
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .modal__service-body {
    width: calc(100% - 340px);
    padding: 0;
    padding-left: 28px;
  }
}
.modal__sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .modal__sign {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 24px;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .modal__sign .button-icon {
    width: 136px;
  }
}
.modal__sign-text {
  width: 100%;
  text-align: center;
  color: #767674;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .modal__sign-text {
    width: calc(100% - 136px);
    padding-left: 24px;
    text-align: left;
  }
}
.modal__sign-text a {
  color: #00b3db;
  text-decoration: underline;
}
.modal__sign-text a:hover {
  color: #008faf;
}
.modal#edit {
  max-width: 540px;
}
.modal__edit {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .modal__edit {
    margin-top: 24px;
    gap: 24px;
  }
}
.modal__edit .modal__fields {
  margin: 0;
}
.modal__edit-fields {
  border-radius: 4px;
  padding: 16px;
  background: #f5f6fb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .modal__edit-fields {
    padding: 32px 40px;
  }
}
.modal__edit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  position: relative;
}
.modal__edit-item span {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .modal__edit-item span {
    font-size: 16px;
    line-height: 22px;
  }
}
.modal__edit-item svg {
  position: absolute;
  bottom: 14px;
  right: 20px;
  color: #00b3db;
}
.modal__edit-item [data-imask-card-1] {
  padding-right: 60px;
}
.modal__edit-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.modal__edit-buttons {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .modal__edit-buttons {
    grid-template-columns: 1fr 1fr;
  }
}
.modal__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .modal__rate {
    gap: 32px;
    margin-top: 32px;
  }
}
.modal__rate .rating {
  width: 100%;
}
.modal__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__success-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e6f8fc;
  color: #00b3db;
  border-radius: 4px;
  width: 80px;
  height: 80px;
}
@media (min-width: 768px) {
  .modal__success-icon {
    width: 110px;
    height: 110px;
  }
}
.modal__success-icon svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .modal__success-icon svg {
    width: 50px;
    height: 50px;
  }
}
.modal__success-title {
  font-weight: 600;
  margin-top: 20px;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .modal__success-title {
    margin-top: 24px;
    font-size: 24px;
    line-height: 32px;
  }
}
.modal__success-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  width: 100%;
  color: #484846;
}
@media (min-width: 768px) {
  .modal__success-text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 22px;
  }
}
.modal__success-button {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .modal__success-button {
    margin-top: 24px;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .card {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .card {
    gap: 80px;
  }
}
.card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .card__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.card__body-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 992px) {
  .card__body-left {
    width: 508px;
  }
}
.card__body-right {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .card__body-right {
    width: calc(100% - 508px);
    padding-top: 16px;
    padding-left: 20px;
  }
}
@media (min-width: 1300px) {
  .card__body-right {
    padding-left: 40px;
  }
}
.card__big-pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 4px;
  padding: 8px;
}
@media (min-width: 992px) {
  .card__big-pic {
    padding: 12px;
  }
}
.card__big-pic img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 266px;
  max-height: 484px;
  border-radius: 4px;
}
@media (min-width: 992px) {
  .card__big-pic img {
    height: 484px;
  }
}
.card__min-pics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 768px) {
  .card__min-pics {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 992px) {
  .card__min-pics {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1300px) {
  .card__min-pics {
    grid-template-columns: repeat(6, 1fr);
  }
}
.card__min-pics-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  padding: 3px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .card__min-pics-item {
    padding: 6px;
  }
}
.card__min-pics-item.active {
  border-color: #00b3db;
}
.card__min-pics-item img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.card__title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .card__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.card__text {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .card__text {
    margin-top: 12px;
  }
}
.card__price {
  margin-top: 20px;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .card__price {
    margin-top: 28px;
  }
}
.card__price span {
  font-size: 24px;
  font-weight: 400;
}
.card__quantity {
  margin-top: 20px;
}
.card__add-button {
  margin-top: 20px;
}
.card__bottom-text {
  margin-top: 20px;
}
.card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}
.card__actions-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  padding: 0;
  background: none;
  border: none;
  color: #0633dd;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.card__actions-item:hover {
  color: #008faf;
}
.card__actions-item.active {
  display: none;
}
.card__actions-item i {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .card__actions-item i {
    width: 22px;
    height: 22px;
  }
}
.card__actions-item svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .card__actions-item svg {
    width: 20px;
    height: 20px;
  }
}
.card__actions-item span {
  width: calc(100% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 20px;
  padding-left: 8px;
}
@media (min-width: 768px) {
  .card__actions-item span {
    width: calc(100% - 22px);
    min-height: 22px;
  }
}
@media (min-width: 768px) {
  .card__actions .textarea textarea {
    height: 130px;
  }
}
.card__actions-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}
.card__actions-controls-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background: none;
  border: none;
  color: #0d110f;
}
.card__actions-controls-item:hover {
  color: #00b3db;
}
.card__actions-controls-item[disabled] {
  color: #a3a3a3;
  cursor: not-allowed;
}
.card__actions-controls-item i {
  width: 20px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card__actions-controls-item span {
  width: calc(100% - 20px);
  padding-left: 8px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .card__actions-controls-item span {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }
}
.card__tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .card__tabs {
    gap: 20px;
  }
}
.card__tabs:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #e9e9e8;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 999px;
}
.card__tabs-item {
  position: relative;
  z-index: 2;
  border: none;
  background: none;
  font-weight: 600;
  padding: 0;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .card__tabs-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.card__tabs-item:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #0633dd;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 999px;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.card__tabs-item.active:before {
  opacity: 1;
}
.card__tabs-body {
  overflow: hidden;
  opacity: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.card__tabs-body.active {
  overflow: visible;
  opacity: 1;
  height: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.card__tabs-body h2 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 992px) {
  .card__tabs-body h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.card__tabs-body p {
  margin: 0;
}
.card__imgs {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .card__imgs {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .card__imgs {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1300px) {
  .card__imgs {
    grid-template-columns: repeat(6, 1fr);
  }
}
.card__imgs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}
.card__imgs-item img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  width: 100%;
  min-height: 122px;
  max-height: 154px;
}
@media (min-width: 992px) {
  .card__imgs-item img {
    height: 154px;
  }
}
.card__imgs-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}
.card__imgs-empty span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  width: 100%;
  min-height: 122px;
  max-height: 154px;
  background: #e6f8fc;
  color: #9badf1;
}
@media (min-width: 992px) {
  .card__imgs-empty span {
    height: 154px;
  }
}

.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1300px) {
  .cart {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
.cart__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 1300px) {
  .cart__body {
    width: calc(100% - 404px);
    padding-right: 20px;
  }
}
.cart__toper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 4px;
  padding: 16px;
}
@media (min-width: 768px) {
  .cart__toper {
    padding: 16px 20px;
  }
}
.cart__delete-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background: none;
  border: none;
}
.cart__delete-all i {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #00b3db;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .cart__delete-all i {
    width: 24px;
    height: 24px;
  }
}
.cart__delete-all:hover i {
  color: #008faf;
}
@media (min-width: 768px) {
  .cart__delete-all svg {
    width: 16px;
    height: 20px;
  }
}
.cart__delete-all span {
  width: calc(100% - 20px);
  font-size: 14px;
  line-height: 20px;
  padding-left: 8px;
}
@media (min-width: 768px) {
  .cart__delete-all span {
    width: calc(100% - 24px);
  }
}
.cart__delete-all[disabled] {
  color: #e9e9e8;
  cursor: not-allowed;
}
.cart__delete-all[disabled] i {
  color: #e9e9e8;
}
.cart__list {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.cart__list-item {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .cart__list-item {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .cart__list-item {
    gap: 28px;
  }
}
.cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: relative;
  padding-bottom: 52px;
}
@media (min-width: 992px) {
  .cart__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
}
.cart__item-main {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .cart__item-main {
    width: calc(100% - 356px);
  }
}
.cart__item-photo {
  background: #f5f6fb;
  border-radius: 4px;
  padding: 4px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .cart__item-photo {
    width: 100px;
  }
}
.cart__item-photo img {
  width: 100%;
  height: 72px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .cart__item-photo img {
    height: 92px;
  }
}
.cart__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: calc(100% - 124px);
}
@media (min-width: 992px) {
  .cart__item-text {
    width: calc(100% - 152px);
  }
}
.cart__item-text a {
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 16px;
}
@media (min-width: 992px) {
  .cart__item-text a {
    font-size: 18px;
  }
}
.cart__item-text a:hover {
  color: #00b3db;
}
.cart__item-text span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 12px;
  line-height: 18px;
}
.cart__item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 168px;
  position: relative;
  left: 36px;
}
@media (min-width: 992px) {
  .cart__item-quantity {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0 16px;
    padding-top: 28px;
    left: 0;
    width: 200px;
  }
}
.cart__item-quantity i {
  font-style: normal;
  text-align: center;
  color: #a3a3a3;
  height: 20px;
  line-height: 20px;
}
.cart__item-price {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-left: 36px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .cart__item-price {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-left: 0;
    width: 120px;
  }
}
.cart__item-price span {
  font-weight: 600;
}
.cart__item-delete {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  background: #fafafa;
  color: #a3a3a3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border: none;
  border-radius: 4px;
  width: calc(100% - 36px);
  height: 36px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 992px) {
  .cart__item-delete {
    width: 36px;
    position: static;
    color: #a3a3a3;
  }
}
.cart__item-delete:hover {
  background: #e6f8fc;
  color: #00b3db;
}
@media (min-width: 992px) {
  .cart__item-delete:hover {
    background: #e6f8fc;
    color: #00b3db;
  }
}
.cart__spoiler {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 36px;
}
.cart__spoiler-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f5f6fb;
  border-radius: 4px;
  padding: 16px;
}
.cart__spoiler-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cart__spoiler-button {
    font-size: 16px;
    line-height: 22px;
  }
}
.cart__spoiler-button b {
  width: calc(100% - 20px);
  font-weight: 600;
}
.cart__spoiler-button i {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart__spoiler-button svg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.cart__spoiler-button:hover {
  color: #00b3db;
}
.cart__spoiler-button.active i svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cart__spoiler-text {
  overflow: hidden;
  opacity: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.cart__spoiler-text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  color: #767674;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 992px) {
  .cart__spoiler-text-item {
    font-size: 14px;
    line-height: 20px;
  }
}
.cart__spoiler-text-item b {
  color: #0d110f;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.cart__spoiler-text-item span {
  font-weight: 600;
  margin-bottom: -4px;
}
.active + .cart__spoiler-text {
  opacity: 1;
  height: auto;
  overflow: visible;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: 16px;
}
.cart__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 1300px) {
  .cart__total {
    width: 404px;
  }
}
.cart__total-title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.cart__total-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.cart__total-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart__total-summary {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #f3f3f3;
  padding-top: 20px;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .contacts {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 1300px) {
  .contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contacts__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 1300px) {
  .contacts__left {
    width: calc(50% - 16px);
  }
}
.contacts__title {
  width: 100%;
}
@media (min-width: 768px) {
  .contacts__title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 8px;
  }
}
.contacts__text {
  width: 100%;
  color: #484846;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contacts__text {
    font-size: 18px;
    line-height: 24px;
  }
}
.contacts__fields {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.contacts__checkbox {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .contacts__checkbox {
    font-size: 14px;
    line-height: 20px;
  }
}
.contacts__button {
  margin-top: 20px;
}
.contacts__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 16px;
  background: #fff;
  border-radius: 4px;
  margin: 0 -16px;
  margin-top: 32px;
  padding-bottom: 150px;
  position: relative;
}
@media (min-width: 768px) {
  .contacts__right {
    padding: 24px;
    padding-bottom: 282px;
    margin: 0 -24px;
    margin-top: 32px;
  }
}
@media (min-width: 1300px) {
  .contacts__right {
    width: calc(50% - 16px);
    margin: 0;
  }
}
.contacts__right-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.contacts__right-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .contacts__right-list {
    gap: 20px;
  }
}
.contacts__right-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .contacts__right-list-item {
    gap: 10px;
  }
}
.contacts__right-list-item span {
  color: #A3A3A3;
}
.contacts__right-list-item a {
  text-decoration: underline;
}
.contacts__right-list-item a:hover {
  color: #00b3db;
}
.contacts__right-list-item i {
  text-decoration: underline;
  font-style: normal;
}
.contacts__right-bg {
  width: 161px;
  aspect-ratio: 161/147;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 24px;
}
@media (min-width: 768px) {
  .contacts__right-bg {
    width: 296px;
    right: 36px;
    bottom: 36px;
  }
}
.reg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reg__body {
  width: 100%;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .reg__body {
    gap: 28px;
  }
}
@media (min-width: 992px) {
  .reg__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.reg__body.active {
  opacity: 1;
  height: auto;
  overflow: visible;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .reg__body.active {
    margin-top: 28px;
  }
}
.reg__body-item {
  width: 100%;
  padding: 20px 16px;
  background: #fff;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .reg__body-item {
    padding: 24px;
    max-width: 480px;
  }
}
.reg__body-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .reg__body-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.reg__body-subtitle {
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .reg__body-subtitle {
    font-size: 16px;
    line-height: 22px;
  }
}
.reg__body-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.reg__body-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reg__body-bottom-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .reg__body-bottom-body {
    gap: 20px;
    max-width: 480px;
  }
}
.reg__body-bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media (min-width: 768px) {
  .reg__body-bottom-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .reg__body-bottom .button-icon {
    width: 240px;
  }
}
.reg__body-bottom-text {
  width: 100%;
  text-align: center;
  color: #767674;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .reg__body-bottom-text {
    width: calc(100% - 240px);
    padding-left: 24px;
    text-align: left;
  }
}
.reg__body-bottom-text a {
  color: #0d110f;
  text-decoration: underline;
}
.reg__body-bottom-text a:hover {
  color: #00b3db;
}

.cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .cabinet {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.cabinet .title {
  width: 100%;
}
.cabinet__left {
  overflow: hidden;
  width: 100%;
  height: 0;
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
}
@media (min-width: 992px) {
  .cabinet__left {
    position: static;
    width: 286px;
    height: auto;
    opacity: 1;
  }
}
.cabinet__left-overlay {
  z-index: 1;
  background: rgba(13, 17, 15, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
}
@media (min-width: 992px) {
  .cabinet__left-overlay {
    display: none;
  }
}
.cabinet__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) {
  .cabinet__right {
    width: calc(100% - 286px);
    padding-left: 32px;
  }
}
.cabinet__right .service__list {
  margin: 0;
}
.cabinet__right .service__list.cabinet__service-list {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .cabinet__right .service__list.cabinet__service-list {
    margin-bottom: 28px;
  }
}
@media (min-width: 992px) {
  .cabinet__right .service__list-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .cabinet__right .service__list-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.cabinet__right h2 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 1300px) {
  .cabinet__right h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.cabinet__tabs {
  margin-bottom: 20px;
}
.cabinet__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cabinet__body-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.cabinet__body-item.active {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  height: auto;
  opacity: 1;
}
.cabinet__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 4px;
  padding: 16px 8px;
  width: calc(100% - 32px);
  max-width: 1252px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cabinet__menu {
    width: calc(100% - 48px);
  }
}
@media (min-width: 992px) {
  .cabinet__menu {
    width: 100%;
  }
}
.cabinet__menu-item {
  padding: 10px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  position: relative;
  padding-right: 24px;
}
.cabinet__menu-item:hover {
  color: #00b3db;
}
.cabinet__menu-item:last-child {
  margin-top: 28px;
}
.cabinet__menu-item.active {
  background: #e6f8fc;
}
.cabinet__menu-item.active:after {
  opacity: 1;
}
.cabinet__menu-item.active svg {
  color: #00b3db;
}
.cabinet__menu-item:after {
  content: "";
  border-radius: 1px;
  width: 2px;
  height: 24px;
  background: #00b3db;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.cabinet__menu-item svg {
  width: 24px;
  height: 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #484846;
}
.cabinet__menu-item span {
  width: calc(100% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding-left: 12px;
}
.cabinet__balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: 4px;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .cabinet__balance {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1300px) {
  .cabinet__balance {
    padding: 24px 20px;
  }
}
.cabinet__balance-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .cabinet__balance-info {
    width: auto;
  }
}
.cabinet__balance-info div {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}
.cabinet__balance-info span {
  font-weight: 600;
  font-size: 20px;
}
.cabinet__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .cabinet__payments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 28px;
  }
}
.cabinet__payments-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 1300px) {
  .cabinet__payments-item {
    gap: 12px;
  }
}
.cabinet__payments-item-body {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  border-radius: 4px;
  padding: 20px 16px;
  min-height: 160px;
}
@media (min-width: 1300px) {
  .cabinet__payments-item-body {
    padding: 24px 20px;
  }
}
.cabinet__payments-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.cabinet__payments-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cabinet__payments-item-title span {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding-right: 8px;
  width: calc(100% - 24px);
}
@media (min-width: 1300px) {
  .cabinet__payments-item-title span {
    font-size: 20px;
    line-height: 28px;
    width: calc(100% - 28px);
  }
}
.cabinet__payments-item-title button {
  color: #00b3db;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background: none;
  border: none;
}
@media (min-width: 1300px) {
  .cabinet__payments-item-title button {
    width: 28px;
    height: 28px;
  }
}
.cabinet__payments-item-title button:hover {
  color: #008faf;
}
.cabinet__payments-item-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #767674;
}
@media (min-width: 1300px) {
  .cabinet__payments-item-name {
    font-size: 16px;
    line-height: 22px;
  }
}
.cabinet__payments-item-bottom {
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
}
@media (min-width: 1300px) {
  .cabinet__payments-item-bottom {
    font-size: 16px;
    line-height: 22px;
  }
}
.cabinet__payments-add {
  border: 4px solid #fff;
  border-radius: 4px;
  background: #f5f6fb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 0;
  height: 160px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}
@media (min-width: 1300px) {
  .cabinet__payments-add {
    font-size: 16px;
    line-height: 22px;
  }
}
.cabinet__payments-add span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background: #9badf1;
  color: #fff;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 1300px) {
  .cabinet__payments-add span {
    width: 44px;
    height: 44px;
  }
}
.cabinet__payments-add:hover span {
  background: #00b3db;
}
.cabinet__add-balance {
  padding: 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  font-size: 14px;
  line-height: 20px;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 1300px) {
  .cabinet__add-balance {
    font-size: 16px;
    line-height: 22px;
    gap: 24px;
  }
}
.cabinet__add-balance h2 {
  margin: 0;
}
.cabinet__add-balance-value {
  width: 100%;
  color: #767674;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .cabinet__add-balance-value {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cabinet__add-balance-value span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.cabinet__add-balance-value span .input {
  width: 160px;
}
.cabinet__add-balance-text {
  width: 100%;
}
.cabinet__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.cabinet__empty-icon {
  width: 100%;
  height: 180px;
  aspect-ratio: 259/220;
}
@media (min-width: 768px) {
  .cabinet__empty-icon {
    height: 220px;
  }
}
.cabinet__empty-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  text-align: center;
}
.cabinet__empty-title {
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.cabinet__empty-text {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #767674;
  max-width: 580px;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .cabinet__empty-text {
    font-size: 18px;
    line-height: 24px;
  }
}
.cabinet__empty-text a {
  color: #0d110f;
  text-decoration: underline;
}
.cabinet__empty-text a:hover {
  color: #00b3db;
}
.cabinet__empty-button {
  margin-top: 32px;
}
.cabinet__chat-toper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cabinet__chat-toper {
    gap: 12px;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
  }
}
.cabinet__chat {
  width: 100%;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  border: 2px solid #fff;
  background: #fff url(../images/19.jpg) no-repeat 50% 50%;
  background-size: auto 240px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cabinet__chat {
    border: 1px solid #e9e9e8;
    padding: 3px;
    gap: 12px;
  }
}
.cabinet__chat-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  background: #f2f4fd;
  gap: 12px;
  padding: 16px;
}
@media (min-width: 768px) {
  .cabinet__chat-top {
    padding: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cabinet__chat-top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cabinet__chat-top-avatar {
  background: #fff;
  border-radius: 4px;
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
}
.cabinet__chat-top-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
  padding-left: 12px;
  width: calc(100% - 52px);
}
.cabinet__chat-top-name b {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .cabinet__chat-top-name b {
    font-weight: 700;
  }
}
.cabinet__chat-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 12px;
  overflow: hidden;
  overflow-y: auto;
  height: 404px;
  width: 100%;
}
@media (min-width: 768px) {
  .cabinet__chat-center {
    height: auto;
    min-height: 404px;
    max-height: 550px;
    width: calc(100% - 4px);
  }
}
.cabinet__chat-center::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.cabinet__chat-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  background: #f2f4fd;
  padding: 16px;
}
@media (min-width: 768px) {
  .cabinet__chat-bottom {
    padding: 16px 20px;
  }
}
.cabinet__chat-bottom-inner {
  position: relative;
  height: 48px;
  width: 100%;
}
@media (min-width: 768px) {
  .cabinet__chat-bottom-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cabinet__chat-bottom-inner .input {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 88px;
}
@media (min-width: 768px) {
  .cabinet__chat-bottom-inner .input {
    height: 48px;
    padding-left: 20px;
    border: none;
  }
}
.cabinet__chat-bottom-inner div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 16px;
}
@media (min-width: 768px) {
  .cabinet__chat-bottom-inner div {
    right: 20px;
  }
}
.cabinet__chat-bottom-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
  background: none;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.cabinet__chat-bottom-button:hover {
  color: #008faf;
}
@media (min-width: 768px) {
  .cabinet__chat-bottom-button:hover {
    background: #00b3db;
    color: #fff;
  }
}
.cabinet__chat-bottom-button input {
  display: none;
}
.cabinet__chat-bottom-button svg {
  width: 20px;
  height: 20px;
}
.cabinet__chat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .cabinet__chat-item {
    padding: 20px;
  }
}
.cabinet__chat-item.user {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.cabinet__chat-item.user .cabinet__chat-item-msg {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 768px) {
  .cabinet__chat-item.user .cabinet__chat-item-msg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cabinet__chat-item.user .cabinet__chat-item-msg div {
  background: #e7ebfc;
}
.cabinet__chat-item-ava {
  background: #f5f6fb;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #00b3db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .cabinet__chat-item-ava {
    width: 44px;
    height: 44px;
  }
}
.cabinet__chat-item-ava svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .cabinet__chat-item-ava svg {
    width: 32px;
    height: 32px;
  }
}
.cabinet__chat-item-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  width: calc(100% - 44px);
}
@media (min-width: 768px) {
  .cabinet__chat-item-msg {
    width: calc(100% - 56px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.cabinet__chat-item-msg div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  background: #9badf1;
  padding: 12px;
  min-height: 44px;
}
@media (min-width: 768px) {
  .cabinet__chat-item-msg div {
    min-height: 52px;
    padding: 16px;
    max-width: calc(100% - 100px);
  }
}
.cabinet__chat-item-msg span {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 16px;
  color: #767674;
}
@media (min-width: 768px) {
  .cabinet__chat-item-msg span {
    font-size: 14px;
    line-height: 20px;
    max-width: 100px;
  }
}
.cabinet__tickets {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cabinet__tickets-tabs {
  background: #e9e9e8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 4px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cabinet__tickets-tabs {
    max-width: 400px;
    margin-bottom: 28px;
  }
}
.cabinet__tickets-tabs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  padding: 0 24px;
  height: 32px;
  border-radius: 4px;
}
.cabinet__tickets-tabs-item:hover {
  color: #008faf;
}
.cabinet__tickets-tabs-item.active {
  background: #00b3db;
  color: #fff;
}
.cabinet__tickets-tabs-item span {
  display: none;
}
@media (min-width: 768px) {
  .cabinet__tickets-tabs-item span {
    display: inline;
  }
}
.cabinet__tickets-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .cabinet__tickets-body {
    border: 1px solid #e9e9e8;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    gap: 0;
  }
}
.cabinet__tickets-body-toper {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f2f4fd;
  border-radius: 8px;
  border: 3px solid #fff;
  padding: 20px;
}
@media (min-width: 768px) {
  .cabinet__tickets-body-toper {
    display: grid;
  }
}
.cabinet__tickets-body-toper-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cabinet__tickets-body-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 20px 16px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  padding-right: 64px;
}
@media (min-width: 768px) {
  .cabinet__tickets-body-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: none;
    border-radius: 0;
    padding: 14px 20px;
  }
}
.cabinet__tickets-body-item-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .cabinet__tickets-body-item-col {
    min-height: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cabinet__tickets-body-item-col span {
  color: #767674;
}
@media (min-width: 768px) {
  .cabinet__tickets-body-item-col span {
    display: none;
  }
}
.cabinet__tickets-body-item-arrow {
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: 1px solid #99e1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0d110f;
  border-radius: 4px;
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 1;
}
@media (min-width: 768px) {
  .cabinet__tickets-body-item-arrow {
    top: 50%;
    right: 20px;
    margin-top: -16px;
  }
}
.cabinet__tickets-body-item-arrow:hover {
  color: #008faf;
  border-color: #00b3db;
}
@media (min-width: 768px) {
  .cabinet__tickets-body-item + .cabinet__tickets-body-item {
    border-top: 1px solid #e9e9e8;
  }
}
.cabinet__tickets-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cabinet__tickets-button {
    margin-top: 28px;
  }
}
.cabinet__subscribe {
  width: 100%;
  padding: 20px 16px;
  background: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (min-width: 768px) {
  .cabinet__subscribe {
    gap: 24px;
    padding: 24px 20px;
  }
}
.cabinet__subscribe-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cabinet__subscribe-item {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .cabinet__subscribe-item + .cabinet__subscribe-item {
    margin-top: 8px;
  }
}
.cabinet__subscribe-title {
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.cabinet__subscribe-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 416px;
}
.cabinet__subscribe-input-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cabinet__subscribe-input-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cabinet__subscribe-input span {
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
}
@media (min-width: 768px) {
  .cabinet__subscribe-input span {
    font-size: 16px;
    line-height: 22px;
  }
}
.cabinet__subscribe-checkbox {
  width: 100%;
  max-width: 416px;
}
.cabinet__subscribe-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  padding: 0;
  background: none;
  border: none;
}
@media (min-width: 768px) {
  .cabinet__subscribe-add {
    margin-top: 8px;
  }
}
.cabinet__subscribe-add:hover {
  color: #00b3db;
}
.cabinet__subscribe-add i {
  width: 20px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
}
.cabinet__subscribe-add b {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  width: calc(100% - 20px);
  padding-left: 8px;
}
@media (min-width: 768px) {
  .cabinet__subscribe-add b {
    font-size: 16px;
    line-height: 22px;
  }
}
.cabinet__docs {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
@media (min-width: 1300px) {
  .cabinet__docs {
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 4px;
  }
}
.cabinet__docs-top {
  padding: 3px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1300px) {
  .cabinet__docs-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cabinet__docs-top-inner {
  background: #f2f4fd;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.5fr;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 2px;
}
.cabinet__docs-body {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .cabinet__docs-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .cabinet__docs-body {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cabinet__docs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 4px;
  padding: 20px 16px;
}
@media (min-width: 1300px) {
  .cabinet__docs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.5fr;
    background: none;
    padding: 18px 20px;
    border-radius: 0;
    border-bottom: 1px solid #f3f3f3;
  }
}
.cabinet__docs-row:last-child {
  border-bottom: none;
}
.cabinet__docs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
@media (min-width: 1300px) {
  .cabinet__docs-item {
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1300px) {
  .cabinet__docs-item:last-child {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.cabinet__docs-item span {
  color: #767674;
}
@media (min-width: 1300px) {
  .cabinet__docs-item span {
    display: none;
  }
}
.cabinet__docs-item a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00b3db;
}
.cabinet__docs-item a:hover {
  color: #008faf;
}
.cabinet__personal-data {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 8px;
  background: #fff;
  padding: 20px 16px;
}
@media (min-width: 768px) {
  .cabinet__personal-data {
    gap: 20px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .cabinet__personal-data {
    font-size: 16px;
    line-height: 22px;
    padding: 24px 20px;
  }
}
.cabinet__personal-data-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .cabinet__personal-data-item {
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .cabinet__personal-data-item {
    gap: 8px;
  }
}
.cabinet__personal-data-item_fullwidth {
  width: 100%;
}
.cabinet__personal-data-label {
  color: #767674;
}
.cabinet__personal-data-pen {
  padding: 0;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.cabinet__personal-data-pen:hover {
  color: #00b3db;
}
.cabinet__personal-data-pen svg {
  width: 16px;
  height: 16px;
  color: #00b3db;
}
.cabinet__personal-data-pen u {
  width: calc(100% - 16px);
  padding-left: 10px;
}
.cabinet__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background: none;
  border: none;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .cabinet__back {
    margin-bottom: 12px;
  }
}
.cabinet__back i {
  border: 1px solid #99e1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  width: 24px;
  height: 24px;
}
.cabinet__back:hover i {
  border-color: #00b3db;
}
.cabinet__back span {
  width: calc(100% - 24px);
  padding-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  font-size: 16px;
  line-height: 22px;
}
.cabinet__partner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .cabinet__partner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cabinet__partner-left {
  padding: 20px 12px;
  background: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .cabinet__partner-left {
    width: calc(100% - 310px);
  }
}
@media (min-width: 1300px) {
  .cabinet__partner-left {
    padding: 20px 16px;
  }
}
.cabinet__partner-left-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.cabinet__partner-left-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.cabinet__partner-left-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
}
.cabinet__partner-left-item span {
  color: #a3a3a3;
}
.cabinet__partner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .cabinet__partner-right {
    width: 290px;
  }
}
.cabinet__partner-right img {
  width: 100%;
  height: 150px;
  border: 4px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.cabinet__partner-right-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 16px;
  padding-top: 12px;
}
.cabinet__partner-right-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.cabinet__partner-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
}
.cabinet__partner-right-item span {
  color: #a3a3a3;
}
.cabinet__partner-right-item a:hover {
  color: #00b3db;
}
.cabinet__nav {
  width: 100%;
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .cabinet__nav {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .cabinet__nav {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
.cabinet__nav-item {
  min-height: 100px;
  padding: 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  background: #f2f4fd;
  border: 2px solid #cdd6f8;
  width: 100%;
}
.cabinet__nav-item:hover {
  border-color: #00b3db;
}
.cabinet__nav-item span {
  width: calc(100% - 40px);
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  padding-right: 16px;
}
@media (min-width: 1300px) {
  .cabinet__nav-item span {
    font-size: 20px;
    line-height: 28px;
  }
}
.cabinet__nav-item svg {
  width: 40px;
  height: 40px;
  color: #00b3db;
}

.cabinet-actived {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cabinet-actived {
    overflow: auto;
  }
}
.cabinet-actived .header {
  z-index: 11;
}
.cabinet-actived .cabinet__left {
  z-index: 10;
  height: calc(100% - 120px);
  opacity: 1;
  padding: 24px 0;
}
@media (min-width: 992px) {
  .cabinet-actived .cabinet__left {
    padding: 0;
    height: auto;
  }
}
.cabinet__subs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 20px;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    gap: 12px;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .cabinet__subs {
        margin-bottom: 28px;
    }
}
.cabinet__subs i {
    width: 82px;
    aspect-ratio: 1/1;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #00b3db;
    background: #f5f6fb;
    border-radius: 999px;
}
.cabinet__subs i svg {
    width: 40px;
    aspect-ratio: 1/1;
}
.cabinet__subs b {
    margin: 0;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
}
@media (min-width: 768px) {
    .cabinet__subs b {
        font-size: 20px;
        line-height: 28px;
    }
}
.cabinet__subs span {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .cabinet__subs span {
        font-size: 16px;
        line-height: 22px;
    }
}

.cabinet-actived {
    overflow: hidden;
}
@media (min-width: 992px) {
    .cabinet-actived {
        overflow: auto;
    }
}
.cabinet-actived .header {
    z-index: 11;
}
.cabinet-actived .cabinet__left {
    z-index: 10;
    height: calc(100% - 120px);
    opacity: 1;
    padding: 24px 0;
}
@media (min-width: 992px) {
    .cabinet-actived .cabinet__left {
        padding: 0;
        height: auto;
    }
}
.button-more {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}
@media (min-width: 768px) {
    .button-more {
        margin-top: 28px;
    }
}

.distributions-empty-info, .applications-empty-info {
    margin-left: 20px;
}

