﻿@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
  line-height: 140%;
  font-weight: 400;
  color: var(--black);
  -webkit-appearance: none;
}
*:focus-visible {
  outline: auto 0px;
}

strong {
  font-weight: bold;
}

:root {
  --black: #333333;
  --blackHover: #494949;
  --red: #BC294B;
  --reghover: #B21F41;
  --redBg: #BC294B0D;
  --grey: #F4F6FB;
  --main: #BC294B;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: #fff;
  color: var(--black);
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

li {
  color: var(--black);
}

.container {
  width: 1290px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    width: 768px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 90vw;
  }
}
.noscroll {
  overflow: hidden;
}

main {
  background: var(--grey);
  padding-bottom: 100px;
}

.button-full {
  padding: 20px 27px;
  color: #fff;
  background: var(--red);
  border-radius: 12px;
  border: 1px solid var(--red);
  margin-right: 12px;
  font-size: 16px;
  font-weight: 500;
}
.button-full:hover {
  background: transparent;
  color: var(--red);
}
.button-pool {
  border-radius: 12px;
  border: 1px solid var(--red);
  padding: 20px 27px;
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
}
.button-pool:hover {
  background: var(--red);
  color: #fff;
}

@media (max-width: 1024px) {
  .button-full {
    padding: 11px 0;
    margin-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
  .button-pool {
    padding: 11px 0;
    text-align: center;
  }
}
.page-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 50px;
}
.page-title-title {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0;
}

@media (max-width: 1024px) {
  .page-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
  }
  .page-title-title {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0;
  }
}
.pads {
  padding: 30px;
}

.padb {
  padding: 50px;
}

@media (max-width: 1024px) {
  .padb {
    padding: 50px 20px;
  }
}
.breadcrumbs {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 40px;
}
.breadcrumbs > a {
  color: var(--blackHover);
  font-weight: 300;
  opacity: 0.5;
}
.breadcrumbs > span {
  font-weight: 300;
}

.tip-click {
  position: relative;
  z-index: 100;
  display: block;
  background: red;
  border-radius: 50%;
  width: 20px;
  line-height: 20px;
  text-align: center;
  color: white;
  cursor: pointer;
}

.tip {
  /*   display: inline-block; */
  position: absolute;
  width: 400px;
  background: lightblue;
  border-radius: 5px;
  padding: 30px 20px 20px;
  top: 0;
  left: 0;
  display: none;
}

.support:focus .tip {
  display: block;
}

.support:focus .tip-click {
  background: green;
}

.mt50 {
  margin-top: 50px;
  display: block;
}

.mt80 {
  margin-top: 80px;
  display: block;
}

.mt40 {
  margin-top: 40px;
  display: block;
}

.mt30 {
  margin-top: 30px;
  display: block;
}

.mb30 {
  display: block;
  margin-bottom: 30px;
}

.mb80 {
  margin-bottom: 80px;
}

.slick-prev {
  position: relative;
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  opacity: 0.5;
}
.slick-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 100%;
  height: 100%;
  background-image: url(../img/clients-arrow-1.svg);
  background-position: center;
  background-size: contain;
}
.slick-prev:hover {
  opacity: 1;
}
.slick-next {
  position: relative;
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  opacity: 0.5;
}
.slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  right: -25%;
  width: 100%;
  height: 100%;
  background-image: url(../img/clients-arrow-1.svg);
  background-position: center;
  background-size: contain;
  transform: rotate(180deg);
}
.slick-next:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .breadcrumbs-wrapper {
    display: none;
  }
  .pads {
    padding: 30px 0;
  }
}
.wpcf7-spinner {
  display: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.panel-wrapper {
  display: none;
}

@media (max-width: 1024px) {
  .panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
  }
  .panel-wrapper {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    border-top: 1px solid rgba(51, 51, 51, 0.1490196078);
    background: #fff;
    z-index: 999;
  }
  .panel > a {
    width: 15%;
  }
  .panel > a > img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.faq-wrapper {
  margin-bottom: 100px;
}

@media (max-width: 1024px) {
  .faq-wrapper {
    margin-bottom: 50px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

p .wpcf7-submit.active {
  position: relative;
}
p .wpcf7-submit.active::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
}

.wpforms-container .wpforms-field {
  position: unset !important;
}

.suggestions-wrapper {
  position: absolute !important;
  background: #fff !important;
  z-index: 99999 !important;
}
.suggestions-wrapper * {
  white-space: normal !important;
}
.suggestions-wrapper > div {
  border: 1px solid #000 !important;
  position: relative !important;
  max-width: 100% !important;
}
.suggestions-wrapper > div > div {
  word-break: break-all !important;
  max-width: 100% !important;
  display: block !important;
  white-space: normal !important;
}
.suggestions-wrapper > div > div > span {
  display: block !important;
  word-break: break-all !important;
  max-width: 100% !important;
  white-space: normal !important;
}
.suggestions-wrapper .suggestions-value {
  flex-wrap: wrap !important;
  display: block !important;
  white-space: normal !important;
}

div.wpforms-container .wpforms-form .wpforms-field:not(.wpforms-field-phone):not(.wpforms-field-select-style-modern):not(.wpforms-field-radio):not(.wpforms-field-checkbox):not(.wpforms-field-layout) {
  overflow-x: inherit !important;
  max-width: 100% !important;
  padding-left: 2px;
}

.wpforms-form-4284 .wpforms-container.inline-fields .wpforms-submit-container {
  align-self: start !important;
  margin-top: 15px !important;
  display: flex;
}

.calc-block div.wpforms-container-full {
  margin: 0px 0 !important;
  width: 100%;
}
.calc-block .wpforms-container.inline-fields .wpforms-form {
  width: 100% !important;
}
.calc-block .wpforms-container.inline-fields .wpforms-field-container .wpforms-field:last-of-type {
  width: 100% !important;
}
.calc-block .wpforms-container.inline-fields .wpforms-field-container {
  width: 66% !important;
}
.calc-block div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  width: 31% !important;
}
.calc-block div.wpforms-container-full .wpforms-field-label {
  display: none !important;
}
.calc-block div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=text] {
  height: 56px !important;
  border-radius: 8px !important;
}
.calc-block .submit-front-form {
  background: var(--main);
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  height: 52px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
}

@media (max-width: 1024px) {
  .calc-block .wpforms-container.inline-fields .wpforms-form {
    flex-direction: column !important;
  }
  .calc-block .wpforms-container.inline-fields .wpforms-field-container {
    width: 100% !important;
  }
  .calc-block div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    width: 100% !important;
  }
  .calc-block .wpforms-container .wpforms-field {
    padding: 5px 0;
  }
}
.footable_parent {
  overflow: scroll !important;
}

.suggestions-suggestion {
  margin-bottom: 15px !important;
}

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

.gap15 {
  gap: 15px;
}

.red-button_medium {
  background: var(--red);
  padding: 20px 25px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--white);
}
.red-button_medium:hover {
  background: var(--reghover);
}

.red-button_small {
  background: var(--red);
  padding: 12px 25px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--white);
}
.red-button_small:hover {
  background: var(--reghover);
}

@media (max-width: 1024px) {
  .red-button_medium {
    padding: 12px 15px;
  }
}
.span_section_orange {
  border-radius: 100px;
  background: #FED070;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
}

.span_section_green {
  border-radius: 100px;
  background: #DCF3DE;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
}

.span_section_grey {
  border-radius: 100px;
  background: #F4F6FB;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
}

.span_section_blue {
  border-radius: 100px;
  background: #E3EEFE;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
}

.span_section_red {
  border-radius: 100px;
  background: #FEF5FE;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
}

.span_section_orange_big {
  border-radius: 5px;
  background: rgba(255, 165, 0, 0.1019607843);
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
  padding: 0 20px;
  padding-top: 60px;
  padding-bottom: 40px;
  display: block;
  margin: 10px 0;
}

.span_section_green_big {
  border-radius: 5px;
  background: rgba(1, 178, 83, 0.0509803922);
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
  padding: 0 20px;
  padding-top: 60px;
  padding-bottom: 40px;
  display: block;
  margin: 10px 0;
}

.span_section_grey_big {
  border-radius: 5px;
  background: #F4F6FB;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
  padding: 0 20px;
  padding-top: 60px;
  padding-bottom: 40px;
  display: block;
  margin: 10px 0;
}

.span_section_blue_big {
  border-radius: 5px;
  background: #E3EEFE;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
  padding: 0 20px;
  padding-top: 60px;
  padding-bottom: 40px;
  display: block;
  margin: 10px 0;
}

.span_section_red_big {
  border-radius: 5px;
  background: rgba(188, 41, 75, 0.0509803922);
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 300;
  padding: 0 20px;
  padding-top: 60px;
  padding-bottom: 40px;
  display: block;
  margin: 10px 0;
}

.background-bg-wrapper {
  width: 1290px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.background-bg-wrapper .container {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.background-bg-wrapper > ol {
  padding-left: 39px;
}

@media (max-width: 1024px) {
  .background-bg-wrapper {
    width: 768px;
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .background-bg-wrapper {
    width: 90vw;
  }
}
.header-wrapper-mob {
  display: none;
}
.header-top {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 14px;
}
.header-top > span {
  margin-right: 20px;
  font-size: 14px;
  font-weight: 300;
}
.header-top > a {
  color: var(--red);
  border-bottom: 1px dashed var(--red);
  font-size: 14px;
  font-weight: 300;
}
.header-main {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-main-wrapper {
  background: var(--grey);
}
.header-main-nav {
  width: 40%;
}
.header-main-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-main-nav > ul > li {
  font-size: 14px;
  font-weight: 300;
}
.header-main-contacts {
  display: flex;
  width: 50%;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.header-main-contacts > span {
  font-size: 12px;
  font-weight: 300;
  padding: 10px;
  background: var(--red);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}
.header-main-contacts > span:hover {
  background: var(--reghover);
}
.header-main-contacts > div {
  display: flex;
  flex-direction: column;
}
.header-main-contacts > div > a {
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}
.header-main-contacts > div > span {
  font-size: 12px;
  font-weight: 300;
  color: var(--black);
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0.5;
  cursor: pointer;
}
.header-main-contacts > div > span:hover {
  opacity: 1;
}
.header-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.header-footer-logo {
  width: 9%;
}
.header-footer-logo > img {
  -o-object-fit: cover;
     object-fit: cover;
}
.header-footer-nav {
  width: 60%;
}
.header-footer-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-footer-nav > ul > li > a {
  font-size: 16px;
  font-weight: 500;
}
.header-footer-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.header-footer-action > a {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .header-top {
    text-align: center;
    font-size: 12px;
  }
  .header-top > a {
    font-size: 12px;
  }
  .header-top-wrapper {
    background: #f4f6fb;
  }
  .header-top-wrapper-news {
    background: var(--black);
  }
  .header-top-wrapper-news .header-top {
    padding: 10px 0;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-top-wrapper-news .header-top > span {
    color: var(--white);
    opacity: 0.5;
    font-size: 10px;
    display: block;
  }
  .header-top-wrapper-news .header-top > a {
    font-size: 10px;
    padding: 5px 15px;
    background: var(--red);
    border-radius: 4px;
    color: var(--white);
    font-weight: 400;
    display: block;
  }
  .header-top.news {
    color: var(--white);
  }
  .header-top.news a {
    background: transparent;
    border-bottom: 1px dashed var(--red);
    padding: 0;
    color: var(--red);
  }
  .header-wrapper {
    display: none;
  }
  .header-wrapper-mob {
    display: block;
    overflow-y: scroll;
  }
  .header-wrapper-mob::-webkit-scrollbar {
    width: 0;
  }
  .header-wrapper-mob.active {
    height: 100vh;
  }
  .header-wrapper-mob.active .header-mob {
    border-bottom: 1px solid rgba(51, 51, 51, 0.1490196078);
  }
  .header-wrapper-mob .header-top-wrapper .header-top > span {
    margin-right: 10px;
  }
  .header-mob {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  .header-mob > div {
    width: 13%;
  }
  .header-mob > a {
    width: 32%;
  }
  .header-mob-right {
    width: 113px !important;
    display: flex;
    gap: 20px;
  }
  .header-mob-right > ul {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .header-mob-right > ul > li > a {
    display: flex;
  }
  .header-mob-burger {
    width: 29%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .header-mob-burger > div {
    height: 2px;
    background: #333;
    width: 100%;
    border-radius: 100px;
  }
  .header-mob-burger.active > div {
    width: 80%;
  }
  .header-mob-burger.active > div:nth-child(2) {
    display: none;
  }
  .header-mob-burger.active > div:nth-child(1) {
    transform: rotate(45deg);
    margin-top: 7px;
    margin-bottom: -2px;
  }
  .header-mob-burger.active > div:nth-child(3) {
    transform: rotate(-45deg);
    margin-top: -7px;
    margin-bottom: 7px;
  }
  .header-menu {
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  .header-menu-wrapper {
    display: none;
  }
  .header-menu-wrapper.active {
    display: block;
    padding-bottom: 100px;
  }
  .header-menu-list {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1490196078);
  }
  .header-menu-list > li > a {
    padding: 10px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-menu-list:nth-child(2) > li > a {
    font-weight: 400;
  }
  .header-menu-list.lk > li:nth-child(2) {
    opacity: 0.3;
  }
  .header-menu-num {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .header-menu-num > span {
    opacity: 0.5;
    font-weight: 300;
    font-size: 14px;
  }
  .header-menu-btn {
    margin-bottom: 10px;
  }
  .header-menu-btn > div {
    padding: 10px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 300;
    font-size: 18px;
    background: var(--red);
    border-radius: 8px;
    color: #fff;
  }
  .header-menu-btn > span {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 4px;
    color: var(--red);
  }
  .header-menu-mail {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
  }
  .header-menu-time {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #01B253;
  }
  .header-menu-social {
    margin-bottom: 10px;
  }
  .header-menu-social > div {
    display: flex;
    gap: 10px;
  }
  .header-menu-social > span {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    display: block;
  }
  .header-menu-social:last-child {
    margin-bottom: 0;
  }
}
.hero {
  padding-top: 30px;
  padding-bottom: 80px;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero-top-offer {
  width: 60%;
  padding: 30px;
  border-radius: 16px;
  background-image: url(../img/hero-bg.png);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-position: center top;
}
.hero-top-offer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(217, 217, 217, 0) 100%);
  border-radius: 16px;
  z-index: 1;
}
.hero-top-img {
  margin-bottom: 10px;
  width: 60%;
  opacity: 0;
}
.hero-top-action {
  width: 39%;
}
.hero-top-search {
  background: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  margin-bottom: 20px;
}
.hero-top-search > span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}
.hero-top-search > form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.hero-top-search > form > label {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  width: 100%;
}
.hero-top-search > form > input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  background: #fff !important;
  border-radius: 8px;
  position: relative;
}
.hero-top-search > form > button {
  position: absolute;
  right: 5px;
  top: 50%;
  background: transparet;
  border: none;
  background: #fff;
  display: flex;
  padding: 5px 15px;
  border-left: 1px solid rgba(51, 51, 51, 0.15);
}
.hero-top-collect {
  background: #fff;
  padding: 20px 30px;
  border-radius: 16px;
}
.hero-top-collect > span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}
.hero-top-form > p {
  display: flex;
  flex-direction: column;
}
.hero-top-form > p > span {
  font-size: 12px;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.hero-top-form > p > select {
  border: 1px solid rgba(51, 51, 51, 0.15);
  background: var(--white);
  padding: 10px 15px;
  margin-bottom: 14px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/select-arrow-1.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  padding-right: 25px;
  background-position-x: calc(100% - 8px);
}
.hero-top-form > p > input {
  border: 1px solid rgba(51, 51, 51, 0.15);
  background: var(--white);
  padding: 10px 15px;
  margin-bottom: 14px;
  border-radius: 8px;
  padding-right: 25px;
}
.hero-top-form > p:last-child {
  position: relative;
}
.hero-top-form > p:last-child > svg {
  content: "";
  position: absolute;
  top: 20%;
  right: 5%;
  width: 35px;
  height: 35px;
  background-image: url(../img/tarif-arrow-1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5px 8px;
  background: #FFFFFF;
  opacity: 0.5;
  border-radius: 100px;
}
.hero-top-form > p:last-child > input {
  padding: 20px;
  background: var(--red);
  color: #fff;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
}
.hero-offer-text {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  width: 75%;
  color: #fff;
  z-index: 2;
  position: relative;
}
.hero-offer-text > span {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
.hero-offer-action {
  display: flex;
  z-index: 2;
  position: relative;
}
.hero-offer-action > a:nth-child(1) {
  margin-right: 12px;
  cursor: pointer;
}
.hero-footer {
  margin: 80px 0;
}
.hero-footer-list {
  display: flex;
  justify-content: space-between;
}
.hero-footer-item {
  width: 24%;
  background: #fff;
  border-radius: 16px;
  padding: 30px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.hero-footer-item > p {
  width: 100%;
}
.hero-footer-item > p > span {
  padding: 5px 8px;
  border-radius: 5px;
  background: #f4f6fb;
}
.hero-footer-item > p:first-child {
  font-size: 18px !important;
  font-weight: 600 !important;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 0;
  }
  .hero-top {
    display: flex;
    flex-direction: column;
  }
  .hero-top-offer {
    width: 101vw;
    border-radius: 0;
    margin-left: -6%;
    padding-top: 200px;
  }
  .hero-top-offer::before {
    border-radius: 0;
  }
  .hero-top-action {
    width: 100%;
    margin-top: 20px;
  }
  .hero-top-form > p {
    font-size: 14px;
  }
  .hero-top-form > p > span {
    font-size: 12px;
  }
  .hero-top-form > p:last-child > input {
    padding: 12px !important;
    font-size: 14px;
  }
  .hero-top-form > p:last-child > svg {
    width: 25px;
    height: 25px;
  }
  .hero-offer-text {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-bottom: 75px;
  }
  .hero-offer-text > span {
    font-size: 14px;
    text-align: center;
    font-weight: 400;
  }
  .hero-offer-action {
    gap: 20px;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
  .hero-offer-action > a {
    text-align: center;
    font-size: 14px;
  }
  .hero-offer-action > a:nth-child(1) {
    margin-right: 0;
  }
  .hero-footer {
    overflow: scroll;
    margin: 0 -5% !important;
  }
  .hero-footer::-webkit-scrollbar {
    width: 0;
  }
  .hero-footer-list {
    min-width: 330%;
    gap: 20px;
    padding: 0 5%;
  }
  .hero-footer.front {
    margin: 80px -5% !important;
  }
}
.clients-wrapper {
  margin-bottom: 80px;
}
.clients-title__title {
  display: flex;
  justify-content: space-between;
}
.clients-title__title > span {
  color: var(--red);
  font-size: 14px;
  cursor: pointer;
}
.clients-block {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.clients-block .slick-track {
  display: flex !important;
}
.clients-block-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 20px 15px;
  width: 16%;
  box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin: 0 10px;
  min-height: 100% !important;
  height: auto !important;
}
.clients-block-item > img {
  width: 50%;
  height: 50%;
  margin-bottom: 20px;
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
}
.clients-block-item > span {
  text-align: center;
  display: flex;
  height: 30%;
}
.clients-block .slick-prev {
  position: absolute;
  z-index: 9;
  left: 0;
  top: 30%;
}
.clients-block .slick-next {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 30%;
}

@media (max-width: 1024px) {
  .clients-block {
    overflow: scroll;
    margin-right: -5%;
    align-items: stretch;
  }
  .clients-block::-webkit-scrollbar {
    width: 0;
  }
  .clients-block-item {
    width: -moz-max-content;
    width: max-content;
    min-width: 60vw;
  }
  .clients-block-item:last-child {
    margin-right: 5%;
  }
  .clients-block-item > img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 70%;
    height: 50%;
  }
  .clients-block-item > span {
    height: 50%;
  }
}
.pop-wrapper {
  margin-bottom: 80px;
}
.pop-block {
  display: flex;
  justify-content: space-between;
}
.pop-block-scroll {
  display: flex;
  justify-content: space-between;
}
.pop-block-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  width: 32.5%;
  padding: 32px 40px;
}
.pop-block-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.pop-block-subtitle {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 70px;
}
.pop-block-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pop-block-link > a {
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
  position: relative;
  display: flex;
  align-items: center;
}
.pop-block-link > a::after {
  content: "";
  background-image: url(../img/arrow-right-1.svg);
  width: 6px;
  height: 11px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-left: 15px;
  opacity: 0.5;
}
.pop-block-link > img {
  width: 40%;
}

@media (max-width: 1024px) {
  .pop-block {
    overflow-x: scroll;
    margin-right: -5%;
  }
  .pop-block::-webkit-scrollbar {
    width: 0;
  }
  .pop-block-scroll {
    width: 300%;
    margin-right: 5%;
  }
  .pop-block-item {
    padding: 20px 20px;
    width: -moz-max-content;
    width: max-content;
    margin-right: 20px;
  }
  .pop-block-item:last-child {
    margin-right: 0;
  }
  .pop-block-subtitle {
    margin-bottom: 20px;
  }
}
.footer-breadscrumbs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-breadscrumbs-wrapper {
  background: var(--grey);
  padding-bottom: 20px;
  padding-top: 10px;
}
.footer-breadscrumbs > a {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 300;
  color: var(--blackHover);
  display: flex;
  gap: 7px;
}
.footer-breadscrumbs > span {
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
  color: var(--blackHover);
}
.footer-wrapper {
  padding: 50px;
  padding-bottom: 0px;
  background: var(--black);
  margin-top: -25px;
}
.footer-wrapper * {
  color: var(--white);
}
.footer-top {
  display: flex;
  justify-content: space-between;
}
.footer-top-lists {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer-top-list {
  width: 30%;
}
.footer-top-list.seo > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 6px;
}
.footer-top-list.seo > ul > li {
  font-size: 12px;
  padding: 5px 12px;
  background: #2E2E2E;
  color: #fff;
  border-radius: 5px;
  opacity: 1;
}
.footer-top-list .mob {
  display: none;
}
.footer-top-list.contact-mob {
  display: none;
}
.footer-top-list > span {
  font-weight: 500;
}
.footer-top-list > ul {
  margin-top: 15px;
}
.footer-top-list > ul > li {
  margin-bottom: 12px;
  opacity: 0.7;
}
.footer-top-list > ul > li > a {
  font-size: 16px;
  font-weight: 400;
}
.footer-top-list:nth-child(3) > ul > li {
  border-bottom: 1px dashed #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-top-list.us > div.contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.footer-top-list.us > div.contact > span {
  display: flex;
  flex-direction: column;
}
.footer-top-list.us > div.contact > span > a {
  font-size: 18px;
  font-weight: 600;
}
.footer-top-list.us > div .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-top-list.us > div .socials > .green-span {
  color: #01B253;
}
.footer-top-list.us > div .socials > span {
  width: 100%;
}
.footer-top-list.us > div .socials:last-child {
  margin-bottom: 0;
}
.footer-top-list.button {
  width: 25%;
}
.footer-top-form {
  width: 30%;
}
.footer-top-top-form {
  display: flex;
  flex-direction: column;
}
.footer-form-title {
  margin-bottom: 5px;
}
.footer-form-subtitle {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
  display: flex;
}
.footer-form-form > div > form > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.footer-form-form > div > form > div.email > p {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.footer-form-form > div > form > div.email > p > span {
  width: 49%;
}
.footer-form-form > div > form > div > p {
  display: flex;
  flex-direction: column;
}
.footer-form-form > div > form > div > p > span {
  font-size: 14px;
  opacity: 0.5;
}
.footer-form-form > div > form > div > p > span > input {
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  padding: 12px 15px;
  width: 100%;
}
.footer-form-form > div > form > div > p > span > select {
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  padding: 12px 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/select-arrow-1.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  padding-right: 25px;
  background-position-x: calc(100% - 8px);
  background-color: #fff;
  width: 100%;
}
.footer-form-form > div > form > div > p > span > textarea {
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  padding: 12px 15px;
  height: 60px;
  width: 100%;
}
.footer-form-form > div > form > div > p:last-child > input {
  width: 100%;
  padding: 12px 15px !important;
  background: var(--red);
  border: none;
  color: #fff;
  border-radius: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-top: 20px;
}
.footer-bottom-logo {
  width: 9%;
}
.footer-bottom-save {
  opacity: 1;
}
.footer-bottom-policy {
  opacity: 1;
}
.footer-bottom > div:last-child {
  width: 10%;
}
.footer-bottom > div:last-child > div {
  font-size: 7px;
  opacity: 0.5;
}
.footer-bottom > div:last-child > span > a {
  display: block;
  margin-top: 10px;
  color: #6D83D1;
  font-size: 14px;
}
.footer-tracking .ibaggage-delivery-modal-window {
  background-color: transparent;
  box-shadow: none;
}
.footer-tracking .ibaggage-delivery-modal-window .ibaggage-delivery-container div:nth-child(2) {
  display: none;
}
.footer-tracking .ibaggage-delivery-modal-close, .footer-tracking .ibaggage-delivery-modal-title, .footer-tracking .ibaggage-delivery-block-form {
  display: none;
}

@media (max-width: 1024px) {
  .footer-wrapper {
    padding: 50px 20px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-top-lists {
    width: 100%;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .footer-top-list {
    width: 100%;
  }
  .footer-top-list .desc {
    display: none;
  }
  .footer-top-list .mob {
    display: flex;
  }
  .footer-top-list:nth-child(3) > ul > li {
    border-bottom: 1px dashed #fff;
    width: -moz-fit-content;
    width: fit-content;
  }
  .footer-top-list.contact-mob {
    display: flex;
    flex-direction: column;
  }
  .footer-top-list.contact-mob > div.contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }
  .footer-top-list.contact-mob > div.contact > span {
    display: flex;
    flex-direction: column;
  }
  .footer-top-list.contact-mob > div.contact > span > a {
    font-size: 18px;
    font-weight: 600;
  }
  .footer-top-list.contact-mob > div.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
  }
  .footer-top-list.contact-mob > div.socials > .green-span {
    color: #01B253;
  }
  .footer-top-list.contact-mob > div.socials > span {
    width: 100%;
  }
  .footer-top-list.contact-mob > div.socials:last-child {
    margin-bottom: 0;
  }
  .footer-top-list.button {
    width: 100%;
    flex-direction: row;
  }
  .footer-top-list.button a {
    width: 50%;
  }
  .footer-top-list.us .socials {
    display: none !important;
  }
  .footer-top-form {
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(51, 51, 51, 0.15);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #fff;
  }
  .footer-bottom > * {
    margin-bottom: 10px;
  }
  .footer-bottom-logo {
    width: 30%;
  }
  .footer-bottom > div:last-child {
    font-size: 11px;
    width: 100%;
  }
}
.naprav-wrapper {
  margin-bottom: 100px;
}
.naprav-wrapper-new .naprav-block-title {
  font-size: 22px;
  font-weight: 700;
}
.naprav-wrapper-new .naprav-block-item {
  width: 100%;
}
.naprav-wrapper-new .naprav-block-item > a {
  text-align: center;
  font-size: 16px;
  color: #525C76;
  border-bottom: 1px dashed #525C76;
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}
.naprav-wrapper-new .naprav-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.naprav-wrapper-new .naprav-list-item {
  width: 26%;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.1490196078);
  padding-bottom: 3px;
  margin-bottom: 10px !important;
  display: flex;
  justify-content: space-between;
}
.naprav-wrapper-new .naprav-list-item > span {
  color: #525C76;
  font-weight: 400;
  font-size: 16px;
}
.naprav-wrapper-new .naprav-list-item > div {
  display: flex;
  gap: 8px;
  padding: 0;
  justify-content: flex-end;
}
.naprav-wrapper-new .naprav-list-item > div > span {
  padding: 2px 8px;
  background: #F4F6FB;
  border-radius: 100px;
  color: var(--black) !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  opacity: 1 !important;
  font-size: 14px !important;
  font-weight: 300;
}
.naprav-wrapper-part .naprav-list-item {
  width: 47%;
}
.naprav-block {
  display: flex;
  justify-content: space-between;
}
.naprav-block-item {
  width: 49.5%;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
}
.naprav-block-title {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
}
.naprav-list-item {
  border-bottom: 1px solid rgb(244, 246, 251);
  margin-bottom: 10px;
}
.naprav-list-item:last-child {
  margin-bottom: 0;
}
.naprav-list-item > span {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
  color: var(--black);
}
.naprav-list-item > div {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.naprav-list-item > div > span:first-child {
  color: var(--red);
  margin-right: 30px;
  width: -webkit-fill-available;
  max-width: -moz-max-content;
  max-width: max-content;
}
.naprav-list-item > div > span:last-child {
  margin-left: 30px;
  opacity: 0.5;
  min-width: -moz-max-content;
  min-width: max-content;
}
.naprav-list-item > div > div {
  width: -moz-max-content;
  width: max-content;
}

@media (max-width: 1024px) {
  .naprav-wrapper-new .naprav-block-title {
    font-size: 18px;
    font-weight: 600;
  }
  .naprav-wrapper-new .naprav-block-item {
    width: 100%;
    padding: 50px 10px;
  }
  .naprav-wrapper-new .naprav-list-item {
    width: 100%;
    justify-content: flex-start;
    gap: 5px;
  }
  .naprav-wrapper-new .naprav-list-item > span {
    font-size: 12px;
    width: 59%;
  }
  .naprav-wrapper-new .naprav-list-item > div {
    width: 40%;
  }
  .naprav-wrapper-new .naprav-list-item > div > span {
    width: auto !important;
    font-size: 12px !important;
    font-weight: 300 !important;
  }
  .naprav-wrapper-part .naprav-list-item {
    width: 100%;
  }
  .naprav-block {
    overflow: scroll;
    margin: 0 -6%;
    padding: 0 6%;
  }
  .naprav-block::-webkit-scrollbar {
    width: 0;
  }
  .naprav-block-title {
    font-size: 16px;
  }
  .naprav-block-item {
    width: 90%;
    min-width: 85vw;
    margin-right: 10px;
  }
  .naprav-list-item > div > span:first-child {
    margin-right: 0;
    width: 50%;
  }
  .naprav-list-item > div > span:last-child {
    width: 40%;
    margin-left: 0;
  }
  .naprav-list-item > div > div {
    display: none;
  }
}
.about-wrapper {
  margin-bottom: 100px;
}
.about-block {
  border-radius: 16px;
  background: #fff;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.about-block:last-child {
  padding: 50px;
  margin-bottom: 0;
}
.about-block-text {
  width: 53%;
}
.about-block-text-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about-block-text-item > p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-block-text-item > p:last-child {
  margin-bottom: 0;
}
.about-block-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-block-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.about-block-span {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
.about-block-span > p {
  display: block;
  margin-bottom: 14px;
}
.about-block-span > p:last-child {
  margin-bottom: 0;
}
.about-block-btns {
  display: flex;
}
.about-block-btns > a:nth-child(1) {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .about-block {
    padding: 20px;
  }
  .about-block:last-child {
    padding: 50px 30px;
  }
  .about-block-text {
    width: 100%;
  }
  .about-block-text-item > p {
    font-size: 16px;
    font-weight: 400;
  }
  .about-block-text-item > p:first-child {
    font-size: 18px;
    font-weight: 600;
  }
  .about-block-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .about-block-subtitle {
    font-size: 16px;
    font-weight: 500;
  }
  .about-block-btns {
    flex-direction: column;
  }
}
.history-wrapper {
  margin-bottom: 100px;
}
.history-block-item {
  box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: #FBFBFB;
  padding: 20px;
  display: flex;
  align-items: center;
}
.history-block-item > span {
  margin-right: 20px;
  padding: 10px;
  background: var(--redBg);
  border-radius: 10px;
}
.history-block-item > div {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .history-block {
    display: flex;
    overflow: scroll;
    margin-right: -5%;
  }
  .history-block::-webkit-scrollbar {
    width: 0;
  }
  .history-block-item {
    width: 100%;
    min-width: 85vw;
    max-width: 300px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .history-block-item > span {
    margin-bottom: 10px;
  }
  .history-block-item:last-child {
    margin-right: 5%;
  }
}
.nums-block {
  display: flex;
  justify-content: space-between;
}
.nums-block-item {
  width: 19%;
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nums-block-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--red);
}

@media (max-width: 1024px) {
  .nums-block {
    display: flex;
    overflow: scroll;
    margin-right: -5%;
  }
  .nums-block::-webkit-scrollbar {
    width: 0;
  }
  .nums-block-item {
    width: 100%;
    min-width: 85vw;
    max-width: 300px;
    margin-right: 20px;
  }
  .nums-block-item:last-child {
    margin-right: 5%;
  }
}
.tarif-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tarif-block-nav {
  width: 29%;
  padding: 25px 30px;
  border-radius: 16px;
  background: #fff;
}
.tarif-block-nav > div {
  padding: 15px;
  border-radius: 16px;
  cursor: pointer;
}
.tarif-block-nav > div:hover {
  background: var(--red);
  color: #fff;
}
.tarif-block-nav > div.active {
  background: var(--red);
  color: #fff;
}
.tarif-block-list {
  width: 68%;
}
.tarif-block-list-wrapper {
  display: none;
}
.tarif-block-list-wrapper.active {
  display: block;
}
.tarif-list-item {
  background: #fff;
  padding: 15px 40px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tarif-list-img {
  width: 6%;
}
.tarif-list-title {
  font-weight: 600;
  width: 60%;
}
.tarif-list-action {
  width: 26%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tarif-list-action > span {
  padding: 5px 0;
  width: 34%;
  background: rgba(82, 92, 118, 0.1019607843);
  text-align: center;
  border-radius: 4px;
  color: var(--red);
}
.tarif-list-action > a {
  color: var(--red);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
}
.tarif-list-action > a::after {
  content: "";
  margin-left: 10px;
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../img/tarif-arrow-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .tarif .page-title-title {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .tarif-block {
    flex-direction: column;
  }
  .tarif-block-nav {
    width: 100%;
    display: flex;
    padding: 0;
    overflow: scroll;
    background: transparent;
    margin-bottom: 40px;
    gap: 5px;
  }
  .tarif-block-nav::-webkit-scrollbar {
    width: 0;
  }
  .tarif-block-nav > div {
    font-size: 12px;
    font-weight: 300;
    padding: 10px;
    min-width: -moz-max-content;
    min-width: max-content;
    border: 1px solid rgba(51, 51, 51, 0.15);
  }
  .tarif-block-nav > div.active {
    border: 1px solid var(--red);
  }
  .tarif-block-list {
    width: 100%;
  }
  .tarif-list-item {
    flex-wrap: wrap;
    padding: 20px;
  }
  .tarif-list-title {
    width: 100%;
    margin-bottom: 15px;
  }
  .tarif-list-action {
    width: 100%;
  }
  .tarif-list-action > a {
    font-size: 16px;
    font-weight: 400;
  }
}
.news-wrapper {
  margin-bottom: 100px;
}
.news-blocks {
  flex-wrap: wrap;
}
.news-block, .news-blocks {
  display: flex !important;
  width: 100%;
}
.news-block > .slick-list, .news-blocks > .slick-list {
  width: 100%;
}
.news-block > .slick-list > .slick-track, .news-blocks > .slick-list > .slick-track {
  margin: 0;
  display: flex !important;
  align-items: stretch;
}
.news-block-one, .news-blocks-one {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.news-block-one .news-block-item, .news-blocks-one .news-block-item {
  width: 23.8%;
  padding: 30px 15px;
  border-radius: 20px;
  margin-right: 0;
  margin-bottom: 0;
  background: transparent;
  background: #FFFFFF;
  border: 1px solid #D8D9DE;
  transition: 0.5s;
}
.news-block-one .news-block-item:hover, .news-blocks-one .news-block-item:hover {
  border: 1px solid var(--main, #BC294B);
  transition: 0.5s;
}
.news-block-one .news-block-text, .news-blocks-one .news-block-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  border-radius: 20px;
  padding: 0;
  justify-content: space-between;
  height: 100%;
}
.news-block-one .news-block-date, .news-blocks-one .news-block-date {
  font-size: 14px;
  font-weight: 400;
}
.news-block-one .news-block-title, .news-blocks-one .news-block-title {
  font-size: 14px;
  opacity: 1;
  font-weight: 400;
  margin-bottom: 0;
  height: auto;
  color: #333;
}
.news-block-one .news-block-action, .news-blocks-one .news-block-action {
  display: flex;
  justify-content: flex-end;
}
.news-block-one .news-block-more, .news-blocks-one .news-block-more {
  border-bottom: none;
  color: #000;
  width: 40px;
  height: 40px;
  overflow: hidden;
  transform: scale(2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.news-block-one .news-block-more:hover, .news-blocks-one .news-block-more:hover {
  opacity: 1;
}
.news-block.front, .news-blocks.front {
  position: relative;
}
.news-block.front .slick-prev, .news-blocks.front .slick-prev {
  position: absolute;
  z-index: 9;
  left: 0;
  top: 30%;
}
.news-block.front .slick-next, .news-blocks.front .slick-next {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 30%;
}
.news-block.front .news-block-item, .news-blocks.front .news-block-item {
  margin-right: 0;
  margin: 0 10px !important;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
}
.news-block-item, .news-blocks-item {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 3%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.news-block-item:nth-child(4n), .news-blocks-item:nth-child(4n) {
  margin-right: 0;
}
.news-block-img, .news-blocks-img {
  display: flex;
  justify-content: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 16px;
}
.news-block-img > img, .news-blocks-img > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-block-text, .news-blocks-text {
  padding: 20px;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.news-block-title, .news-blocks-title {
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
  height: 50px;
}
.news-block-subtitle, .news-blocks-subtitle {
  margin-bottom: 20px;
  font-size: 14px;
}
.news-block-action, .news-blocks-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.news-block-date, .news-blocks-date {
  font-size: 14px;
  font-weight: 300;
}
.news-block-more, .news-blocks-more {
  font-size: 14px;
  font-weight: 300;
  border-bottom: 1px dashed var(--red);
  color: var(--red);
  display: block;
}

@media (max-width: 1024px) {
  .news-wrapper .news-block-img {
    margin-bottom: -25px;
  }
  .news-wrapper .news-block-text {
    height: 115px;
  }
  .news-block.front, .news-blocks.front {
    overflow: scroll;
    margin-right: -6%;
  }
  .news-block.front .news-block-item, .news-blocks.front .news-block-item {
    min-width: 80vw;
  }
  .news-block.front::-webkit-scrollbar, .news-blocks.front::-webkit-scrollbar {
    width: 0;
  }
  .news-block-one .news-block-item, .news-blocks-one .news-block-item {
    width: 47%;
  }
  .news-block-one .news-block-text, .news-blocks-one .news-block-text {
    height: auto;
  }
  .news-blocks .news-block-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    background: #fff;
    gap: 8px;
    padding: 20px;
    border-radius: 8px;
    flex-direction: row;
  }
  .news-blocks .news-block-img {
    width: 30%;
    height: auto;
  }
  .news-blocks .news-block-text {
    background: transparent;
    padding: 0;
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: auto;
  }
  .news-blocks .news-block-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .news-blocks .news-block-subtitle {
    font-size: 12px;
    font-weight: 300;
  }
  .news-blocks .news-block-action {
    width: 150%;
  }
}
.other-block {
  display: flex;
}
.other-block .news-block-subtitle > p {
  display: none;
}
.other-block-one {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.other-block-one .news-block-item {
  width: 18%;
  padding: 30px 15px;
  border-radius: 20px;
  margin-right: 0;
  margin-bottom: 0;
  background: var(--white, #FFF);
  border: 1px solid var(--white, #FFF);
}
.other-block-one .news-block-item:hover {
  border: 1px solid var(--main, #BC294B);
}
.other-block-one .news-block-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  border-radius: 20px;
  padding: 0;
  justify-content: space-between;
  height: 100%;
}
.other-block-one .news-block-date {
  font-size: 16px;
  font-weight: 500;
}
.other-block-one .news-block-title {
  font-size: 14px;
  opacity: 0.5;
  font-weight: 400;
  margin-bottom: 0;
  height: auto;
}
.other-block-one .news-block-action {
  display: flex;
  justify-content: flex-end;
}
.other-block-one .news-block-more {
  border-bottom: none;
  color: #000;
  width: 40px;
  height: 40px;
  overflow: hidden;
  transform: scale(2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.other-block-one .news-block-more:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .other-block {
    margin-right: -5%;
    overflow: scroll;
  }
  .other-block::-webkit-scrollbar {
    width: 0;
  }
  .other-block-one .news-block-item {
    width: 47%;
  }
  .other-block .news-block-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    background: #fff;
    gap: 8px;
    padding: 20px;
    min-width: 90%;
    max-width: 300px;
    margin-right: 20px;
    border-radius: 8px;
  }
  .other-block .news-block-img {
    width: 30%;
    height: auto;
    border-radius: 8px;
  }
  .other-block .news-block-text {
    background: transparent;
    padding: 0;
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .other-block .news-block-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .other-block .news-block-subtitle {
    font-size: 12px;
    font-weight: 300;
  }
  .other-block .news-block-action {
    width: 155%;
  }
}
.item-block {
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  padding: 50px;
  background: #fff;
  margin-bottom: 100px;
}
.item-img {
  width: 32%;
}
.item-text {
  width: 65%;
}
.item-text-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.item-text-subtitle a {
  border-bottom: 1px dashed var(--red);
}

@media (max-width: 1024px) {
  .item-block {
    padding: 20px;
    flex-direction: column;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .item-img {
    width: 100%;
  }
  .item-text {
    width: 100%;
  }
  .item-text-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
  }
  .item-text-subtitle {
    font-size: 14px;
    font-weight: 400;
  }
}
.help-block-list {
  width: 70%;
}
.help-block-item {
  padding: 20px 30px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 10px;
}
.help-block-item.active > .help-block-subtitle {
  display: block;
  padding-top: 30px;
}
.help-block-item.active > .help-block-icon > svg {
  display: none;
}
.help-block-item.active > .help-block-icon > svg:last-child {
  display: block;
}
.help-block-title {
  font-size: 20px;
  font-weight: 400;
  width: 90%;
  cursor: pointer;
}
.help-block-icon {
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.help-block-icon > svg {
  display: none;
}
.help-block-icon > svg:first-child {
  display: flex;
}
.help-block-subtitle {
  width: 100%;
  display: none;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .help-block-list {
    width: 100%;
  }
  .help-block-title {
    font-size: 16px;
  }
}
.calc {
  background: #fff;
  padding: 50px 30px;
  border-radius: 10px;
  margin-bottom: 100px;
}
.calc-wrapper.front .calc-block-form {
  width: 100%;
}
.calc-wrapper.front .calc-block-form > label > select {
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/select-arrow-1.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  padding-right: 25px;
  background-position-x: calc(100% - 8px);
}
.calc-wrapper.front .calc-block-form > label > input {
  border: 1px solid rgba(51, 51, 51, 0.15);
  background: var(--white);
  padding: 15px;
  border-radius: 8px;
  padding-right: 25px;
}
.calc-wrapper.front .calc-block-form > label:last-child::after {
  right: 3%;
}
.calc-wrapper.front .calc-block-form > label:last-child > input {
  padding: 15px;
  width: 100%;
  background: var(--red);
  border: none;
  color: #fff;
  border-radius: 8px;
  text-align: left;
  position: relative;
  text-align: center;
  padding-right: 50px;
  font-weight: 500;
  font-size: 16px;
  border: none;
}
.calc-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.calc-block.active {
  display: flex;
}
.calc-block-form {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.calc-block-form > label {
  display: flex;
  flex-direction: column;
  width: 35%;
  position: relative;
}
.calc-block-form > label > span {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.5;
}
.calc-block-form > label > select {
  background: #F4F6FB;
  border-radius: 8px;
  padding: 15px;
}
.calc-block-form > label:last-child {
  position: relative;
  width: 26%;
  display: flex;
  align-items: flex-end;
}
.calc-block-form > label:last-child::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  top: 35%;
  background-image: url("../img/arrow-right-calc-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.calc-block-form > label:last-child > input {
  padding: 15px;
  width: 100%;
  background: var(--red);
  border: none;
  color: #fff;
  border-radius: 8px;
  text-align: left;
  position: relative;
}
.calc-in {
  padding: 30px 50px;
  background: #fff;
  border-radius: 16px;
  width: 65%;
}
.calc-in > div > div:last-child > input {
  padding: 15px 20px;
}
.calc-in > div > div:last-child > input:nth-child(1) {
  background: var(--red);
  border: none;
  border-radius: 12px;
  color: #fff;
}
.calc-in > div > div:last-child > input:nth-child(2) {
  border-radius: 12px;
  border: 1px solid rgba(188, 41, 75, 0.1);
  color: var(--red);
  background: transparent;
}
.calc-in-one, .calc-in-two, .calc-in-three, .calc-in-four {
  display: none;
}
.calc-in-one.active, .calc-in-two.active, .calc-in-three.active, .calc-in-four.active {
  display: block;
}
.calc-in-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.calc-in-step {
  margin-bottom: 40px;
  opacity: 0.5;
  text-align: center;
  display: block;
  width: 100%;
}
.calc-in-block-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.calc-in-block-item > div {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.calc-in-block-item > div > label {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.calc-in-block-item > div > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-block-item > div > label > select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  background: transparent;
}
.calc-in-block-item > div > label > ul {
  display: flex;
  margin-top: 5px;
}
.calc-in-block-item > div > label > ul > li {
  font-size: 12px;
  font-weight: 300;
  color: var(--red);
  opacity: 0.5;
  margin-right: 20px;
}
.calc-in-block-item > div > label:nth-child(2) {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 20px;
}
.calc-in-block-item > div > label:nth-child(2) > div {
  width: 49%;
  display: flex;
  margin-right: 0;
}
.calc-in-block-item > div > label:nth-child(2) > div > label {
  width: 100%;
  padding: 2px 0px;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
.calc-in-block-item > div > label:nth-child(3) {
  margin-bottom: 20px;
}
.calc-in-block-item > div > label:nth-child(3) > div {
  display: none;
}
.calc-in-block-item > div > label:nth-child(3) > div.active {
  display: flex;
  flex-direction: column;
}
.calc-in-block-item > div > label:nth-child(3) > div > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-block-item > div > label:nth-child(3) > div > input {
  padding: 10px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  font-size: 14px;
}
.calc-in-block-item > div > label:nth-child(3) > div > select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  background: transparent;
}
.calc-in-block-item > div > label:nth-child(3) > div > ul {
  display: flex;
  margin-top: 5px;
}
.calc-in-block-item > div > label:nth-child(3) > div > ul > li {
  font-size: 12px;
  font-weight: 300;
  color: var(--red);
  opacity: 0.5;
  margin-right: 20px;
}
.calc-in-block-item > div > label:nth-child(4) {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.calc-in-block-item > div > label:nth-child(4) > div {
  width: 49%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.calc-in-block-item > div > label:nth-child(4) > div > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-block-item > div > label:nth-child(4) > div > input {
  padding: 12px 15px;
  background: transparent;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-block-item > div > label:nth-child(6) > textarea {
  resize: none;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-block-item:nth-child(4) {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.calc-in-block-item:nth-child(4) > label {
  display: flex;
  margin-bottom: 20px;
}
.calc-in-block-item:nth-child(4) > label > div {
  padding: 12px 15px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > span {
  margin-top: 20px;
  display: flex;
  align-items: center;
  background: var(--grey);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > span > span {
  color: var(--red);
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 80%;
  padding: 0;
  position: relative;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > div > div {
  padding: 5px;
  background: var(--grey);
  display: flex;
  align-items: center;
  height: 41px;
  border-radius: 8px;
  margin-left: 18px;
  position: absolute;
  right: -55px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > div > span {
  opacity: 0.2;
  font-size: 14px;
  font-weight: 300;
  padding-bottom: 13px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > div > label {
  display: flex;
  flex-direction: column;
  width: 17%;
  position: relative;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > div > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > div > label > span:nth-child(3) {
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  bottom: 14%;
  right: 5px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(2) > div > label > input {
  font-size: 14px;
  font-weight: 300;
  padding: 10px 15px;
  padding-right: 30px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(3) {
  display: flex;
  flex-direction: column;
  width: 40%;
  position: relative;
}
.calc-in-block-item:nth-child(4) > label:nth-child(3) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  display: block;
}
.calc-in-block-item:nth-child(4) > label:nth-child(3) > span:last-child {
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  bottom: 13%;
  right: 10px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(3) > input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  width: 100%;
  font-size: 14px;
  font-weight: 300;
}
.calc-in-block-item:nth-child(4) > label:nth-child(4) {
  display: flex;
  flex-direction: column;
  width: 40%;
}
.calc-in-block-item:nth-child(4) > label:nth-child(4) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(4) > input {
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  width: 100%;
  margin-bottom: 5px;
}
.calc-in-block-item:nth-child(4) > label:nth-child(4) > ul {
  display: flex;
}
.calc-in-block-item:nth-child(4) > label:nth-child(4) > ul > li {
  color: var(--red);
  margin-right: 20px;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
  opacity: 0.5;
}
.calc-in-block-item:nth-child(6) {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.calc-in-block-item:nth-child(6) > label:nth-child(1) {
  display: flex;
  flex-wrap: wrap;
}
.calc-in-block-item:nth-child(6) > label:nth-child(1) > div {
  background: var(--grey);
  border-radius: 8px;
  padding: 12px 20px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}
.calc-in-block-item:nth-child(6) > label:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
}
.calc-in-block-item:nth-child(6) > label:nth-child(2) > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 115px;
  position: relative;
  margin-right: 10px;
  margin-bottom: 20px;
}
.calc-in-block-item:nth-child(6) > label:nth-child(2) > div > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
  width: 100%;
  display: block;
}
.calc-in-block-item:nth-child(6) > label:nth-child(2) > div > span:last-child {
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.calc-in-block-item:nth-child(6) > label:nth-child(2) > div > input {
  padding: 10px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-block-item:nth-child(8) {
  display: flex;
  flex-direction: column;
}
.calc-in-block-item:nth-child(8) > label {
  width: 59%;
}
.calc-in-block-item:nth-child(8) > label > div {
  margin-bottom: 20px;
}
.calc-in-block-item:nth-child(8) > label > div > label {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 300;
}
.calc-in-block-item:nth-child(8) > label:nth-child(2), .calc-in-block-item:nth-child(8) > label:nth-child(3) {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 40%;
}
.calc-in-block-item:nth-child(8) > label:nth-child(2) > span, .calc-in-block-item:nth-child(8) > label:nth-child(3) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-block-item:nth-child(8) > label:nth-child(2) > select, .calc-in-block-item:nth-child(8) > label:nth-child(3) > select {
  font-size: 14px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  padding: 10px 15px;
  border-radius: 8px;
}
.calc-in-two .calc-in-block-item, .calc-in-three .calc-in-block-item {
  flex-direction: column;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label, .calc-in-three .calc-in-block-item:nth-child(2) > label {
  width: 100%;
  margin-bottom: 20px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(1), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(1) {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(1) > div, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(1) > div {
  margin-right: 20px;
  display: flex;
  flex-direction: row;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(1) > div > input, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(1) > div > input {
  margin-right: 15px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(1) > div > label, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(1) > div > label {
  font-size: 14px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(2), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(2) {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 15px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(2) > span, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(2) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(2) > input, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(2) > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(3), .calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(8), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(3), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(8) {
  width: 40%;
  display: flex;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(3) > label, .calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(8) > label, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(3) > label, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(8) > label {
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  width: 49%;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(3) > label > span, .calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(8) > label > span, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(3) > label > span, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(8) > label > span {
  font-size: 12px;
  font-weight: 300;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(3) > label > input, .calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(8) > label > input, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(3) > label > input, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(8) > label > input {
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 8px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(4), .calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(5), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(4), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(5) {
  display: flex;
  flex-direction: column;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(4) > span, .calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(5) > span, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(4) > span, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(5) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(4) > input, .calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(5) > input, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(4) > input, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(5) > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(6), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(6) {
  display: flex;
  flex-direction: column;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(6) > span, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(6) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(6) > select, .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(6) > select {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-two .calc-in-block-item:nth-child(2) > label:nth-child(7), .calc-in-three .calc-in-block-item:nth-child(2) > label:nth-child(7) {
  display: flex;
  gap: 15px;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(1), .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(1) {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(1) > span, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(1) > span {
  font-size: 12px;
  font-weight: 300;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(1) > input, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(1) > input {
  font-size: 14px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  width: 50%;
  padding: 12px 15px;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(2), .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(2) > span, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(2) > span {
  font-size: 12px;
  font-weight: 300;
  background: transparent;
  margin-top: 0;
  padding: 0;
  margin-bottom: 5px;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(2) > label, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(2) > label {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(2) > label > input, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(2) > label > input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  font-size: 14px;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(2) > label > input:nth-child(1), .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(2) > label > input:nth-child(1) {
  width: 70%;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(2) > label > input:nth-child(2), .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(2) > label > input:nth-child(2) {
  width: 25%;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(4), .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(4) {
  background: var(--grey);
  border-radius: 8px;
  margin-bottom: 15px;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(4) > div, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(4) > div {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(4) > div > span, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(4) > div > span {
  opacity: 0.5;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(5), .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(5) {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(5) > div, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(5) > div {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-two .calc-in-block-item:nth-child(4) > label:nth-child(5) > div > span, .calc-in-three .calc-in-block-item:nth-child(4) > label:nth-child(5) > div > span {
  margin-right: 10px;
}
.calc-in-two .calc-in-block-item:nth-child(6) > label > div, .calc-in-three .calc-in-block-item:nth-child(6) > label > div {
  padding: 0;
}
.calc-in-two .calc-in-block-item:nth-child(6) > label > div > label, .calc-in-three .calc-in-block-item:nth-child(6) > label > div > label {
  padding: 5px 20px;
}
.calc-in-four .calc-in-block-item {
  display: flex;
  flex-direction: column;
}
.calc-in-four .calc-in-block-item > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-four .calc-in-block-item > label {
  margin-bottom: 20px;
  display: block;
}
.calc-in-four .calc-in-block-item > label > div {
  margin-right: 10px;
}
.calc-in-four .calc-in-block-item > label > div > label {
  padding: 5px 10px;
}
.calc-in-four .calc-in-block-item > label:nth-child(7) {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.calc-in-four .calc-in-block-item > label:nth-child(7) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-four .calc-in-block-item > label:nth-child(7) > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.calc-in-four .calc-in-block-item > label:nth-child(8) {
  display: flex;
  flex-direction: column;
}
.calc-in-four .calc-in-block-item > label:nth-child(8) > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.calc-in-four .calc-in-block-item > label:nth-child(8) > textarea {
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  resize: none;
  width: 100%;
}
.calc-item-span {
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid #F4F6FB;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.calc-out {
  width: 32%;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
}
.calc-out-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--grey);
}
.calc-out-header > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: center;
}
.calc-out-header > a {
  font-size: 14px;
  font-weight: 300;
  color: var(--red);
}
.calc-out-body > div:nth-child(1) {
  margin-bottom: 20px;
}
.calc-out-body > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.calc-out-body > div:nth-child(2) > span {
  font-size: 12px;
  font-weight: 300;
}
.calc-out-body > div:nth-child(3) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.calc-out-body > div:nth-child(3) > svg {
  width: -moz-fit-content;
  width: fit-content;
}
.calc-out-body > div:nth-child(3) > span {
  color: var(--red);
}
.calc-out-body > div:nth-child(4) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calc-out-body > div:nth-child(4) > span {
  width: 40%;
  font-size: 12px;
  font-weight: 300;
}
.calc-out-body > div:nth-child(8) {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 20px;
}
.calc-out-body > div:nth-child(8) > div {
  display: flex;
  flex-direction: column;
}
.calc-out-body > div:nth-child(8) > div > span:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
}
.calc-out-body > div:nth-child(8) > div > span:nth-child(2) {
  text-align: center;
}
.calc-out-body > div:nth-child(9) > div {
  display: flex;
  justify-content: space-between;
}
.calc-out-body > div:nth-child(9) > div > span:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
  display: block;
  margin-right: 5px;
}
.calc-out-body > div:nth-child(9) > div > span:nth-child(2) {
  width: 100%;
  display: block;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1019607843);
}
.calc-out-body > div:nth-child(9) > div > span:nth-child(3) {
  font-size: 14px;
  margin-left: 5px;
  display: block;
}
.calc-out-body > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
}
.calc-out-footer > div {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-bottom: 1px solid rgba(51, 51, 51, 0.1490196078);
  margin-top: 20px;
}
.calc-out-footer > div > span {
  width: 100%;
  margin-bottom: 10px;
}
.calc-out-footer > div > span:last-child {
  margin-bottom: 0;
  color: var(--red);
}
.calc-out-footer > div > span:last-child > span {
  margin-bottom: 0;
  color: var(--red);
}
.calc-out-footer > a {
  font-size: 14px;
  display: block;
  color: var(--red);
  text-align: center;
}
.calc-out-footer > a:nth-child(2) {
  margin-top: 20px;
  margin-bottom: 10px;
}
.calc-out-footer > input {
  background: var(--red);
  border-radius: 8px;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  border: none;
  color: #fff;
  margin-top: 20px;
}
.calc-out-add {
  margin-top: 20px;
}
.calc-out-add > div {
  display: flex;
  flex-direction: column;
}
.calc-out-add > div > span {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.calc-out-add > div > span:nth-child(2) {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .calc {
    padding: 30px 20px;
  }
  .calc-block-form {
    flex-direction: column;
    align-items: flex-start;
  }
  .calc-block-form > label {
    width: 100%;
    margin-bottom: 14px;
  }
  .calc-block-form > label:last-child {
    width: 100%;
  }
}
.order-wrapper {
  margin-bottom: 100px;
}
.order-block {
  display: flex;
  justify-content: space-between;
}
.order-block-scroll {
  display: flex;
  justify-content: space-between;
}
.order-block-item {
  width: 32%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  display: flex;
}
.order-block-num {
  margin-right: 14px;
  color: var(--red);
  font-size: 18px;
  font-weight: 600;
  opacity: 0.2;
}
.order-block-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.order-block-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.order-block-subtitle {
  padding-bottom: 20px;
  border-bottom: 1px solid #F4F6FB;
  height: 75%;
}
.order-block-subtitle > b {
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.order-block-subtitle > ul {
  margin-bottom: 20px;
}
.order-block-subtitle > ul:last-child {
  margin-bottom: 0;
}
.order-block-btn {
  padding: 15px 20px;
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.order-block-btn::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url(../img/arrow-right-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}
.order-block-btn > a {
  color: var(--red);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .order-block {
    overflow: scroll;
    margin-right: -5vw;
  }
  .order-block::-webkit-scrollbar {
    width: 0;
  }
  .order-block-scroll {
    width: 350%;
    padding-right: 10px;
  }
  .order-block-item {
    padding: 20px;
    width: 100%;
    min-width: 80vw;
    margin-right: 20px;
  }
  .order-block-item:last-child {
    margin-right: 0;
  }
  .order-block-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .order-block-btn {
    padding: 15px 0;
  }
  .order-block-btn > a {
    width: 140%;
  }
}
.form {
  display: flex;
  justify-content: space-between;
}
.form-text {
  display: flex;
  justify-content: space-between;
  width: 50%;
}
.form-text-span {
  padding-top: 75px;
}
.form-text-span > h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.form-text-span > span {
  font-size: 20px;
  font-weight: 600;
}
.form-text-img {
  width: 41%;
}
.form-item {
  width: 40%;
  padding-top: 40px;
}
.form-item div {
  display: flex;
  justify-content: space-between;
}
.form-item div > label {
  width: 49%;
}
.form-item span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
}
.form-item label {
  display: flex;
  flex-direction: column;
  padding: 5px 15px;
  border-radius: 8px;
  background: var(--grey);
  margin-bottom: 20px;
}
.form-item input {
  background: transparent;
  border: none;
}
.form-item textarea {
  resize: none;
  border: none;
  background: transparent;
}
.form-item > form > label:last-child {
  padding: 0;
  background: var(--red);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.form-item > form > label:last-child > input {
  padding: 10px 20px;
  width: 100%;
  text-align: left;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
}
.form-item > form > label:last-child > svg {
  position: absolute;
  right: 20px;
}

.form_radio_btn {
  display: inline-block;
  margin-right: 10px;
}

.form_radio_btn input[type=radio] {
  display: none;
}

.form_radio_btn input[type=checkbox] {
  display: none;
}

.form_radio_btn label {
  display: inline-block;
  cursor: pointer;
  padding: 12px 10px;
  line-height: 34px;
  border: 1px solid rgba(152, 71, 83, 0.1019607843);
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 8px;
}
.form_radio_btn label:hover {
  border: 1px solid var(--red);
}

/* Checked */
.form_radio_btn input[type=radio]:checked + label {
  background: var(--red);
  color: #fff;
}

/* Hover */
.form_radio_btn label:hover {
  color: #666;
}

/* Disabled */
.form_radio_btn input[type=radio]:disabled + label {
  background: var(--red);
  color: #666;
}

.form_radio_btn input[type=checkbox]:checked + label {
  background: var(--red);
  color: #fff;
}

/* Disabled */
.form_radio_btn input[type=checkbox]:disabled + label {
  background: var(--red);
  color: #666;
}

.form_radio input[type=radio] {
  display: none;
}

.form_radio input[type=checkbox] {
  display: none;
}

.form_radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  line-height: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.form_radio label:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  bottom: 1px;
  border: 1px solid var(--red);
  border-radius: 100px;
}

.form_radio input[type=radio]:checked + label:before {
  background: var(--red);
}

.form_radio input[type=checkbox]:checked + label:before {
  background: var(--red);
}

.form_radio label:hover:before {
  filter: brightness(120%);
}

.form_radio input[type=checkbox]:disabled + label:before {
  filter: grayscale(100%);
}

.fillial-block {
  border-radius: 16px;
  padding: 50px;
  background: #fff;
}
.fillial-block-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.fillial-block-search {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.fillial-block-search > span {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
}
.fillial-block-search > form > label {
  border: 1px solid rgba(51, 51, 51, 0.1490196078) !important;
  border-radius: 8px !important;
}
.fillial-block-search > form input.is-search-input {
  padding: 15px !important;
  opacity: 0.5 !important;
}
.fillial-block-filter {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
}
.fillial-block-filter > div {
  margin-right: 5px;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
}
.fillial-block-filter > div:first-child {
  text-transform: unset;
}
.fillial-block-filter > div > a {
  padding: 5px 10px;
  border: 1px solid #F4F6FB;
  border-radius: 100px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
}
.fillial-block-filter > div > a:hover {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}
.fillial-block-text__header {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.fillial-block-text__header > a {
  color: #525C76;
  border-bottom: 1px dashed #525C76;
  display: flex;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}
.fillial-block-text__header > div {
  display: flex;
  gap: 20px;
}
.fillial-block-text__header > div > span {
  padding: 5px 10px;
  border: 1px solid #BC294B;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 300;
  color: #BC294B;
  cursor: pointer;
}
.fillial-block-text__header > div > span.active {
  background: #BC294B;
  color: #fff;
}
.fillial-block-content {
  margin-top: 20px;
  padding-top: 50px;
  border-top: 1px solid #F4F6FB;
}
.fillial-block-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.fillial-block-list__item {
  display: none;
  width: 100%;
  gap: 10px;
}
.fillial-block-list__item.active {
  display: flex;
}
.fillial-block-list__item.active.fillial-block-map {
  margin: 0 -4%;
  width: 110%;
}
.fillial-block-list__item > iframe {
  width: 100%;
  margin-left: 0px;
  margin-right: -20px;
}
.fillial-block-item {
  width: 49.5%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.0509803922);
  border-radius: 10px;
}
.fillial-block-none .fillial-item-pay {
  border-bottom: none;
}
.fillial-items-city {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 3px;
}
.fillial-items-adress {
  font-size: 12px;
  font-weight: 300;
  width: 200%;
}
.fillial-items-num > a {
  font-size: 14px;
  font-weight: 400;
}
.fillial-item-page .fillial-block-content {
  border-top: none;
}
.fillial-block-content {
  display: flex;
  justify-content: space-between;
}
.fillial-item-block__nav {
  display: none;
}
.fillial-item-block__nav.active {
  display: block;
}
.fillial-item-info {
  width: 43%;
  padding: 30px 20px;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: #fff;
}
.fillial-item-info-item > a {
  color: var(--red);
}
.fillial-item-info > a {
  color: var(--red);
}
.fillial-item-cart {
  width: 55%;
}
.fillial-item-cart > iframe {
  height: 387px;
}
.fillial-item-map {
  width: 60%;
}
.fillial-item-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.fillial-item-tags > span {
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  font-size: 12px;
  font-weight: 300;
  margin-right: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}
.fillial-item-tags > span.active {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}
.fillial-item-tags > span:hover {
  border: 1px solid var(--red);
}
.fillial-item-adress {
  font-size: 14px;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.fillial-item-adress > span {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}
.fillial-item-adress > a {
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  color: var(--red);
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.fillial-item-adress .fillial-item-phone {
  display: flex;
  flex-direction: column;
  height: 90px;
}
.fillial-item-adress .fillial-item-phone > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 4px;
}
.fillial-item-adress .fillial-item-phone > div > span {
  display: block;
}
.fillial-item-adress .fillial-item-phone > div > a {
  text-align: right;
}
.fillial-item-graffik {
  margin-bottom: 20px;
}
.fillial-item-graffik > span {
  font-size: 12px;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.fillial-item-graffik > div > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 3px;
}
.fillial-item-graffik > div > div > span {
  font-size: 14px;
  font-weight: 300;
}
.fillial-item-graffik > div > div > span:nth-child(1) {
  margin-right: 5px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.fillial-item-graffik > div > div > span:nth-child(2) {
  margin-left: 5px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
}
.fillial-item-gallery {
  margin-bottom: 20px;
}
.fillial-item-gallery * {
  transition: none;
}
.fillial-item-gallery > span {
  font-size: 12px;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
  opacity: 0.5;
}
.fillial-item-gallery > div {
  display: flex;
}
.fillial-item-gallery > div > a {
  display: block;
  width: 20%;
}
.fillial-item-gallery > div > a > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100px;
  -o-object-position: center;
     object-position: center;
}
.fillial-item-limits {
  margin: 40px -20px;
  padding: 20px;
  border: 1px solid #BC294B;
  border-radius: 10px;
  position: relative;
}
.fillial-item-limits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.fillial-item-limits > span {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}
.fillial-item-limits > ul > li {
  font-size: 14px;
  font-weight: 300;
}
.fillial-item-can {
  padding-bottom: 10px;
  border-bottom: 1px solid #F4F6FB;
  margin-bottom: 10px;
}
.fillial-item-can > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  opacity: 0.5;
  display: block;
}
.fillial-item-can > div {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.fillial-item-can > div > span {
  display: flex;
  width: 47%;
  gap: 10px;
}
.fillial-item-can > div > span > span {
  font-size: 14px;
  font-weight: 300;
}
.fillial-item-can > div > span > div {
  position: relative;
}
.fillial-item-can > div > span > div > svg {
  opacity: 0.5;
}
.fillial-item-can > div > span > div > div {
  display: none;
}
.fillial-item-can > div > span > div:hover > div {
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #F4F6FB;
  padding: 10px;
  font-size: 14px;
  border-radius: 16px;
  width: 240px;
  box-shadow: 4px 3px 20px 0px rgba(0, 0, 0, 0.368627451);
}
.fillial-item-add {
  padding-bottom: 10px;
  border-bottom: 1px solid #F4F6FB;
  margin-bottom: 10px;
}
.fillial-item-add > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  opacity: 0.5;
  display: block;
}
.fillial-item-add > div {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.fillial-item-add > div > span {
  display: flex;
  width: 47%;
  gap: 10px;
}
.fillial-item-add > div > span > span {
  font-size: 14px;
  font-weight: 300;
}
.fillial-item-add > div > span > div {
  position: relative;
}
.fillial-item-add > div > span > div > svg {
  opacity: 0.5;
}
.fillial-item-add > div > span > div > div {
  display: none;
}
.fillial-item-add > div > span > div:hover > div {
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #F4F6FB;
  padding: 10px;
  font-size: 14px;
  border-radius: 16px;
  width: 240px;
  box-shadow: 4px 3px 20px 0px rgba(0, 0, 0, 0.368627451);
}
.fillial-item-pay {
  padding-bottom: 10px;
  border-bottom: 1px solid #F4F6FB;
  margin-bottom: 10px;
}
.fillial-item-pay > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  opacity: 0.5;
  display: block;
}
.fillial-item-pay > div {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
}
.fillial-item-pay > div > span {
  font-size: 14px;
  font-weight: 300;
  width: 47%;
  margin-bottom: 10px;
}
.fillial-item-description {
  margin-bottom: 20px;
}
.fillial-item-description > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  opacity: 0.5;
  display: block;
}
.fillial-item-description > p {
  font-size: 12px;
  font-weight: 300;
}
.fillial-item-city {
  font-size: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F4F6FB;
  margin-bottom: 15px;
}
.fillial-item-city > a {
  margin-top: 5px;
  display: block;
  font-size: 14px;
  font-weight: 300;
}
.fillial-item-more {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  font-size: 14px;
}
.fillial-item-more > span {
  opacity: 0.5;
}
.fillial-item-more > a {
  display: block;
  color: var(--red);
}

.fillial-block-none .fillial-item-city {
  font-size: 16px;
  font-weight: 500;
}
.fillial-block-none .fillial-item-more > a {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .fillial-item-can > div > span, .fillial-item-add > div > span {
    position: relative;
  }
  .fillial-item-can > div > span > div, .fillial-item-add > div > span > div {
    position: static;
  }
  .fillial-block {
    padding: 30px 10px;
  }
  .fillial-block-content {
    flex-direction: column;
    margin-top: 0;
    padding-top: 20px;
  }
  .fillial-block-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 50px;
  }
  .fillial-block-search {
    width: 100%;
  }
  .fillial-block-search > span {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
  }
  .fillial-block-filter {
    width: 112%;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0 -6%;
    padding: 3% 6%;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
  }
  .fillial-block-filter > div {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .fillial-block-filter::-webkit-scrollbar {
    width: 0;
  }
  .fillial-block-filter .form_radio_btn label {
    font-size: 14px;
    font-weight: 300;
  }
  .fillial-block-list {
    flex-direction: column;
    width: 100%;
  }
  .fillial-block-list__item > iframe {
    margin-left: 0;
    margin-right: 0;
  }
  .fillial-block-list__item.active.fillial-block-map {
    width: 106%;
    margin: 0 -3%;
  }
  .fillial-block-item {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  .fillial-items-adress {
    font-size: 12px;
    width: 100%;
  }
  .fillial-items-city {
    margin-bottom: 5px;
    display: block;
    font-weight: 400;
  }
  .fillial-items-num {
    font-weight: 400;
    font-size: 14px;
  }
  .fillial-item-page .fillial-block-header {
    display: none;
  }
  .fillial-item-page .fillial-block-content {
    flex-direction: column-reverse;
    margin-top: 0;
    padding-top: 0;
  }
  .fillial-item-limits {
    margin: 40px -9px;
  }
  .fillial-item-info {
    width: 100%;
    box-shadow: none;
    padding: 0;
  }
  .fillial-item-info-item > a {
    margin-bottom: 70px;
  }
  .fillial-item-can > div, .fillial-item-add > div {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .fillial-item-can > div > span, .fillial-item-add > div > span {
    width: 70%;
  }
  .fillial-item-can > div > span > div:hover > div, .fillial-item-add > div > span > div:hover > div {
    position: absolute;
    left: 0;
    right: auto;
    width: 85vw;
  }
  .fillial-item-pay > div {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .fillial-item-pay > div > span {
    width: 100%;
    margin-bottom: 0;
  }
  .fillial-item-cart {
    width: 100%;
    margin-bottom: 20px;
  }
  .fillial-item-graffik > div > div > span:nth-child(1) {
    width: 35%;
  }
  .fillial-item-graffik > div > div > span:nth-child(2) {
    width: 40%;
  }
  .fillial-item-graffik > div > div > span:nth-child(3) {
    width: 27%;
  }
  .fillial-item-adress .fillial-item-phone {
    height: 150px;
  }
  .fillial-item-adress .fillial-item-phone > div {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  .fillial-item-adress .fillial-item-phone > div > span {
    display: block;
    margin-bottom: 5px;
  }
  .fillial-item-adress .fillial-item-phone > div > span:nth-child(1) {
    width: 55%;
  }
  .fillial-item-adress .fillial-item-phone > div > span:nth-child(2) {
    width: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1019607843);
    margin-bottom: 2px;
  }
  .fillial-item-adress .fillial-item-phone > div > a {
    width: 45%;
    text-align: right;
  }
  .fillial-block-text__header {
    width: 100%;
  }
  .fillial-block-text__header > div {
    gap: 10px;
  }
  .fillial-block-text__header > div > span {
    font-size: 14px;
  }
}
.thank {
  width: 50%;
  margin: 0 auto;
  background: #fff;
  padding: 50px 30px;
  border-radius: 16px;
}
.thank-wrapper {
  display: none;
}
.thank-wrapper.active {
  display: flex;
}
.thank-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.thank-num {
  padding: 12px 15px;
  margin: 0 auto;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 16px;
  font-size: 14px;
  margin-bottom: 30px;
}
.thank-block .calc-out-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
.thank-block .calc-out-body > div {
  width: 100%;
}
.thank-block .calc-out-body > div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.3;
  margin-bottom: 0;
  width: 100%;
}
.thank-block .calc-out-body > div:nth-child(3) {
  width: 100%;
}
.thank-block .calc-out-body > div:nth-child(4) {
  width: 100%;
}
.thank-block .calc-out-body > div:nth-child(7) {
  display: flex;
  justify-content: space-between;
}
.thank-block .calc-out-body > div:nth-child(7) > div {
  display: flex;
  flex-direction: column;
  width: 27%;
}
.thank-block .calc-out-body > div:nth-child(7) > div > span:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
}
.thank-block .calc-out-body > div:nth-child(8) {
  flex-direction: column;
}
.thank-block .calc-out-body > div:nth-child(8) > div {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.thank-block .calc-out-body > div:nth-child(8) > div > span:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
}
.thank-block .calc-out-body > div:nth-child(8) > div > span:nth-child(3) {
  font-size: 14px;
  font-weight: 300;
}
.thank-block .calc-out-body > span {
  padding-right: 27%;
}
.thank-block .calc-out-body > svg {
  margin-top: 15px;
  margin-bottom: -15px;
}
.thank-block .calc-out-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
.thank-block .calc-out-footer > div {
  width: 100%;
}
.thank-block .calc-out-footer > div:nth-child(1) > span:nth-child(1) {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.thank-block .calc-out-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin: 0 auto;
  margin-top: 20px;
}
.thank-block .calc-out-add > div {
  width: 100%;
}
.thank-block .calc-out-add > div > span {
  font-size: 14px;
  font-weight: 300;
}
.thank-actions {
  display: flex;
  width: 70%;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 30px;
}
.thank-actions > a {
  padding: 15px 20px;
  border-radius: 16px;
}
.thank-actions > a:nth-child(1) {
  border: 1px solid var(--red);
  color: var(--red);
}
.thank-actions > a:nth-child(2) {
  background: var(--red);
  color: #fff;
}

.find-wrapper {
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.find-wrapper-one {
  display: none !important;
}
.find-wrapper-one.active {
  display: flex !important;
}
.find-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 50px;
}
.find-input {
  width: 50%;
}
.find-input > form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.find-input > form > label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 10px;
}
.find-input > form > input {
  padding: 20px 20px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.find-input > form > div {
  position: absolute;
  bottom: 14%;
  right: 2%;
  width: 35px;
  height: 35px;
  padding: 3px;
  background: #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.1);
}
.find-input > form > div > input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.find-input > form > div > svg {
  position: relative;
  z-index: 2;
}
.find-item-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  background: transparent;
  justify-content: space-between;
}
.find-item-info {
  background: #fff;
  width: 74%;
  padding: 30px 50px;
  border-radius: 16px;
}
.find-item-attention {
  background: #FBFBFB;
  border-left: 3px solid var(--red);
  padding: 20px;
  margin-bottom: 40px;
}
.find-item-attention > p > a {
  color: var(--red);
}
.find-item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}
.find-item-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.find-item-hystory {
  background: #fff;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  width: 24%;
  padding: 30px;
}
.find-block-info {
  width: 62%;
  border-right: 1px solid rgba(51, 51, 51, 0.1490196078);
}
.find-block-info > div {
  display: flex;
  flex-direction: column;
}
.find-block-info > div > span:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 5px;
}
.find-block-info > div > span:nth-child(2) {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}
.find-block-info > div.nopay {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.find-block-info > div.nopay > a {
  position: absolute;
  top: 0;
  right: -100px;
  font-size: 14px;
  font-weight: 300;
  padding: 0 10px;
  height: 70%;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
}
.find-block-info > div.noadress {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.find-block-info > div.noadress > span:nth-child(2) {
  color: var(--red);
}
.find-block-info > div.noadress > a {
  position: absolute;
  top: 0;
  right: -150px;
  font-size: 14px;
  font-weight: 300;
  padding: 0 10px;
  height: 70%;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
}
.find-block-info > .find-info-line {
  width: 350px;
}
.find-block-info > .find-info-line > div {
  display: flex;
  justify-content: space-between;
}
.find-block-info > .find-info-line:nth-child(3) {
  margin-bottom: 15px;
}
.find-block-info > .find-info-line:nth-child(3) > div:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 5px;
}
.find-block-info > .find-info-line:nth-child(3) > div:nth-child(2) {
  font-size: 14px;
  font-weight: 300;
}
.find-block-info > .find-info-line:nth-child(4) {
  flex-direction: row;
  justify-content: space-between;
  width: 45%;
  margin-bottom: 15px;
}
.find-block-info > .find-info-line:nth-child(4) > div {
  display: flex;
  flex-direction: column;
}
.find-block-info > .find-info-line:nth-child(4) > div > span:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
}
.find-block-info > .find-info-line:nth-child(4) > div > span:nth-child(2) {
  font-size: 14px;
  font-weight: 300;
}
.find-block-nav {
  width: 35%;
  display: flex;
  flex-direction: column;
}
.find-block-nav > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
}
.find-block-nav > a {
  margin-bottom: 10px;
  color: var(--red);
  cursor: pointer;
}
.find-block-nav > a:nth-child(3) {
  mbm: 20px;
}
.find-block-action {
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 0.1490196078);
  margin-top: 40px;
  padding-top: 40px;
}
.find-block-action > div {
  margin-bottom: 15px;
}
.find-block-action > div > span {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 5px;
}
.find-block-action > div > div {
  display: flex;
}
.find-block-action > div > div > input {
  font-size: 14px;
  font-weight: 300;
  width: 50%;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  margin-right: 15px;
}
.find-block-action > div > div > div {
  border-radius: 8px;
  background: #F4F6FB;
  padding: 10px;
  display: flex;
  align-items: center;
}
.find-block-action > a {
  padding: 15px 20px;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.find-hystory-title {
  opacity: 0.5;
  margin-bottom: 20px;
}
.find-hystory-item {
  display: flex;
  padding-bottom: 10px;
}
.find-hystory-item:last-child > .find-hystory-lines > span:last-child {
  display: none;
}
.find-hystory-lines {
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.find-hystory-lines > span:nth-child(1) {
  border-radius: 100px;
  border: 1px solid var(--red);
  width: 18px;
  height: 18px;
  margin-bottom: 5px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.find-hystory-lines > span:nth-child(2) {
  background: var(--red);
  width: 1px;
  position: absolute;
  height: 123%;
  z-index: 0;
}
.find-hystory-lines.active > span:nth-child(1), .find-hystory-lines.ibaggage-delivery-status-item-ready > span:nth-child(1) {
  background: var(--red);
}
.find-hystory-text {
  width: 80%;
  display: flex;
  flex-direction: column;
}
.find-hystory-text > span:nth-child(1) {
  font-size: 14px;
  margin-bottom: 5px;
}
.find-hystory-text > span:nth-child(2) {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5x;
}

@media (max-width: 1024px) {
  .find-title {
    display: none;
  }
  .find-input {
    width: 90%;
  }
  .find-input > form > div {
    box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.05);
  }
  .find-item-wrapper {
    flex-direction: column-reverse;
  }
  .find-item-info {
    width: 100%;
    padding: 30px 20px;
  }
  .find-item-hystory {
    width: 100%;
    margin-bottom: 20px;
  }
  .find-item-content {
    display: flex;
    flex-direction: column;
  }
  .find-item-block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .find-block-info {
    border-right: none;
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
  }
  .find-block-info > .find-info-line:nth-child(3) {
    width: 100%;
  }
  .find-block-info > .find-info-line:nth-child(3) > div:nth-child(2) {
    width: 100%;
  }
  .find-block-info > .find-info-line:nth-child(3) > div:nth-child(2) > span:nth-child(1) {
    width: -moz-fit-content;
    width: fit-content;
  }
  .find-block-info > .find-info-line:nth-child(3) > div:nth-child(2) > span:nth-child(2) {
    width: 30%;
  }
  .find-block-info > .find-info-line:nth-child(3) > div:nth-child(2) > span:nth-child(2) > svg {
    width: 100%;
  }
  .find-block-info > .find-info-line:nth-child(3) > div:nth-child(2) > span:nth-child(3) {
    width: -moz-fit-content;
    width: fit-content;
  }
  .find-block-info > .find-info-line:nth-child(4) {
    width: 80%;
  }
  .find-block-info > div.nopay {
    width: 70%;
  }
  .find-block-info > div.nopay > a {
    width: -45%;
  }
  .find-block-info > div.noadress {
    margin-bottom: 30px;
  }
  .find-block-info > div.noadress > a {
    position: relative;
    right: 0;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    font-size: 14px;
  }
  .find-block-nav {
    width: 100%;
  }
  .find-block-action > div > div > input {
    width: 80%;
  }
  .find-block-action > a {
    width: 100%;
    text-align: center;
  }
}
.pay-form {
  padding: 50px 30px;
  background: #fff;
  border-radius: 16px;
}
.pay-form > h2 {
  margin-bottom: 50px;
}
.pay-form-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pay-form-item {
  width: 50%;
}
.pay-form-item > form {
  display: flex;
  flex-wrap: wrap;
}
.pay-form-item > form > label {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.5;
}
.pay-form-item > form > input:nth-child(2) {
  width: 85%;
  padding: 10px 15px;
  border-right: none;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.pay-form-item > form > input:nth-child(3) {
  width: 15%;
  margin-left: -10px;
  border-radius: 6px;
  background: var(--red);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 13px;
}
.pay-form-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.pay-info-block {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.pay-info-title {
  width: 25%;
  background: #fff;
  border-radius: 16px;
}
.pay-info-title > ul {
  padding: 20px 30px;
}
.pay-info-title > ul > li {
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
}
.pay-info-title > ul > li:hover {
  background: var(--red);
  color: #fff;
}
.pay-info-title > ul > li.active {
  background: var(--red);
  color: #fff;
}
.pay-info-subtitle {
  width: 72%;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
}
.pay-info-subtitle > ul > li {
  font-size: 14px;
  font-weight: 500;
  display: none;
  flex-direction: column;
}
.pay-info-subtitle > ul > li.active {
  display: flex;
}
.pay-info-subtitle > ul > li > p {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .pay-form {
    padding: 30px 20px;
  }
  .pay-form > h2 {
    margin: 0;
    margin-bottom: 50px;
  }
  .pay-form-line {
    flex-direction: column;
  }
  .pay-form-item {
    width: 100%;
  }
  .pay-form-item > form {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .pay-form-item > form > input {
    width: 100%;
  }
  .pay-form-item > form > input:nth-child(2) {
    width: 100%;
    margin-bottom: 10px;
  }
  .pay-form-item > form > input:last-child {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .pay-form-list {
    width: 100%;
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
  }
  .pay-form-list > img {
    min-width: 20vw;
    align-items: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .pay-form-list::-webkit-scrollbar {
    width: 0;
  }
  .pay-info {
    flex-direction: column;
    margin-top: 40px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
  }
  .pay-info-block {
    flex-direction: column;
  }
  .pay-info .page-title-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 50px;
  }
  .pay-info-title {
    width: 100%;
    margin-bottom: 50px;
  }
  .pay-info-title > ul {
    padding: 0;
    display: flex;
    width: 113%;
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: flex-start;
  }
  .pay-info-title > ul::-webkit-scrollbar {
    width: 0;
  }
  .pay-info-title > ul > li {
    min-width: -moz-max-content;
    min-width: max-content;
    font-size: 12px;
    font-weight: 300;
    padding: 10px;
    border: 1px solid rgba(51, 51, 51, 0.15);
    border-radius: 100px;
  }
  .pay-info-title > ul > li.active {
    border: 1px solid rgba(51, 51, 51, 0.15);
    background: rgb(188, 41, 75);
  }
  .pay-info-subtitle {
    width: 100%;
    padding: 0;
  }
  .pay-text {
    flex-direction: column;
    margin-top: 40px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
  }
  .pay-text-block {
    flex-direction: column;
  }
  .pay-text .page-title-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 50px;
  }
  .pay-text-title {
    width: 100%;
    margin-bottom: 50px;
  }
  .pay-text-title > ul {
    padding: 0;
    display: flex;
  }
  .pay-text-title > ul > li {
    font-size: 12px;
    font-weight: 300;
    padding: 10px;
    border: 1px solid rgba(51, 51, 51, 0.15);
    border-radius: 100px;
  }
  .pay-text-title > ul > li.active {
    border: 1px solid rgba(51, 51, 51, 0.15);
    background: rgb(188, 41, 75);
  }
  .pay-text-subtitle {
    width: 100%;
    padding: 0;
  }
  .pay-text .pay-info-title > ul {
    gap: 5px;
  }
}
.dogovor {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
}
.dogovor-item input[type=submit] {
  cursor: pointer;
}
.dogovor-item-attetion {
  margin-top: 20px;
  text-align: center;
  color: var(--red);
}
.dogovor-block > div {
  display: none;
  margin: 0 auto;
}
.dogovor-block > div.active {
  display: block;
}
.dogovor-block-one {
  width: 50%;
}
.dogovor-block-one .dogovor-item {
  display: flex;
  flex-direction: column;
}
.dogovor-block-one .dogovor-item > label {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.dogovor-block-one .dogovor-item > label:hover {
  background: var(--red);
}
.dogovor-block-one .dogovor-item > label:hover > span {
  color: #fff;
}
.dogovor-block-one .dogovor-item > label:last-child {
  margin-bottom: 0;
}
.dogovor-block-two {
  width: 40%;
}
.dogovor-block-two .dogovor-item {
  display: flex;
  flex-direction: column;
}
.dogovor-block-two .dogovor-item > label {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.dogovor-block-two .dogovor-item > label:last-child {
  margin-bottom: 0;
}
.dogovor-block-two .dogovor-item > label > span {
  font-size: 12px;
  font-weight: 300;
}
.dogovor-block-two .dogovor-item > label > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
}
.dogovor-block-two .dogovor-item > input {
  margin: 0 auto;
  margin-top: 40px;
  padding: 15px 20px;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--red);
  border: none;
  color: #fff;
  border-radius: 12px;
}
.dogovor-block-three {
  width: 50%;
}
.dogovor-block-three .dogovor-item {
  display: flex;
  flex-direction: column;
}
.dogovor-block-three .dogovor-item > label {
  display: flex;
  flex-direction: column;
}
.dogovor-block-three .dogovor-item > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-three .dogovor-item > label > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  margin-bottom: 20px;
}
.dogovor-block-three .dogovor-item > label > textarea {
  resize: none;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  margin-bottom: 20px;
}
.dogovor-block-three .dogovor-item > label > label {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.dogovor-block-three .dogovor-item > label > label > span {
  font-size: 14px;
  font-weight: 300;
}
.dogovor-block-three .dogovor-item > div {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-bottom: 20px;
}
.dogovor-block-three .dogovor-item > div > label {
  width: 100%;
}
.dogovor-block-three .dogovor-item > div > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-three .dogovor-item > div > label > input {
  padding: 10px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  width: 100%;
}
.dogovor-block-three .dogovor-item > div.dogovor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  width: 100%;
}
.dogovor-block-three .dogovor-item > div.dogovor > span {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgb(244, 246, 251);
}
.dogovor-block-three .dogovor-item > div.dogovor > span > div {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.dogovor-block-three .dogovor-item > div.dogovor > span > div > a {
  color: var(--red);
}
.dogovor-block-three .dogovor-item > div.dogovor > img {
  width: 100%;
  height: 400px;
}
.dogovor-block-three .dogovor-item > input {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 8px;
}
.dogovor-block-four {
  width: 50%;
}
.dogovor-block-four .dogovor-item {
  display: flex;
  flex-direction: column;
}
.dogovor-block-four .dogovor-item > h3 {
  margin-bottom: 20px;
}
.dogovor-block-four .dogovor-item > label {
  display: flex;
  flex-direction: column;
}
.dogovor-block-four .dogovor-item > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-four .dogovor-item > label > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  margin-bottom: 20px;
}
.dogovor-block-four .dogovor-item > label > label {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.dogovor-block-four .dogovor-item > label > label > span {
  font-size: 14px;
  font-weight: 300;
}
.dogovor-block-four .dogovor-item > label > textarea {
  resize: none;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  margin-bottom: 20px;
}
.dogovor-block-four .dogovor-item > div {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-bottom: 20px;
}
.dogovor-block-four .dogovor-item > div > label {
  width: 100%;
}
.dogovor-block-four .dogovor-item > div > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-four .dogovor-item > div > label > input {
  padding: 10px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  width: 100%;
}
.dogovor-block-four .dogovor-item > div.email {
  width: 100%;
}
.dogovor-block-four .dogovor-item > div.dogovor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  width: 100%;
}
.dogovor-block-four .dogovor-item > div.dogovor > span {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgb(244, 246, 251);
}
.dogovor-block-four .dogovor-item > div.dogovor > span > div {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.dogovor-block-four .dogovor-item > div.dogovor > span > div > a {
  color: var(--red);
}
.dogovor-block-four .dogovor-item > div.dogovor > img {
  width: 100%;
  height: 400px;
}
.dogovor-block-four .dogovor-item > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-four .dogovor-item > span > a {
  color: var(--red);
}
.dogovor-block-four .dogovor-item > input {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 8px;
  margin-top: 15px;
}
.dogovor-block-five {
  width: 50%;
}
.dogovor-block-five .dogovor-item {
  display: flex;
  flex-direction: column;
}
.dogovor-block-five .dogovor-item > label {
  display: flex;
  flex-direction: column;
}
.dogovor-block-five .dogovor-item > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-five .dogovor-item > label > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  margin-bottom: 20px;
}
.dogovor-block-five .dogovor-item > label > label {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.dogovor-block-five .dogovor-item > label > label > span {
  font-size: 14px;
  font-weight: 300;
}
.dogovor-block-five .dogovor-item > label > textarea {
  resize: none;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  margin-bottom: 20px;
}
.dogovor-block-five .dogovor-item > div {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-bottom: 20px;
}
.dogovor-block-five .dogovor-item > div > label {
  width: 100%;
}
.dogovor-block-five .dogovor-item > div > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-five .dogovor-item > div > label > input {
  padding: 10px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  width: 100%;
}
.dogovor-block-five .dogovor-item > div.email {
  width: 100%;
}
.dogovor-block-five .dogovor-item > div.dogovor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  width: 100%;
}
.dogovor-block-five .dogovor-item > div.dogovor > span {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgb(244, 246, 251);
}
.dogovor-block-five .dogovor-item > div.dogovor > span > div {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.dogovor-block-five .dogovor-item > div.dogovor > span > div > a {
  color: var(--red);
}
.dogovor-block-five .dogovor-item > div.dogovor > img {
  width: 100%;
  height: 400px;
}
.dogovor-block-five .dogovor-item > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dogovor-block-five .dogovor-item > span > a {
  color: var(--red);
}
.dogovor-block-five .dogovor-item > input {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 8px;
  margin-top: 15px;
}
.dogovor-block-five .dogovor-item > h3 {
  margin-bottom: 20px;
}
.dogovor-block-thank > .dogovor-thank {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dogovor-block-thank > .dogovor-thank-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.dogovor-block-thank > .dogovor-thank-text {
  text-align: center;
  width: 40%;
  margin: 0 auto;
}
.dogovor-block-thank > .dogovor-thank-text > p {
  margin-top: 3px;
}
.dogovor-block-thank > .dogovor-thank-button {
  padding: 15px 20px;
  border: 1px solid var(--red);
  font-weight: 500;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 20px;
  border-radius: 12px;
  color: var(--red);
}
.dogovor-title {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 50px;
}
.dogovor-title > span {
  margin-top: 20px;
  font-size: 16px;
  display: block;
  opacity: 0.5;
}

.dogovor-first-item.active {
  background: var(--red);
}
.dogovor-first-item.active > span {
  color: #fff;
}
.dogovor-together-adress, .dogovor-together-adress-one {
  position: relative;
  align-items: center;
}
.dogovor-together-adress::before, .dogovor-together-adress-one::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100px;
  border: 1px solid var(--red);
}
.dogovor-together-adress.active:before, .dogovor-together-adress-one.active:before {
  background: var(--red);
}
.dogovor-together-adress__input, .dogovor-together-adress-one__input {
  display: flex;
}
.dogovor-together-adress__input.active, .dogovor-together-adress-one__input.active {
  display: none;
}

@media (max-width: 1024px) {
  .dogovor {
    padding: 30px 10px;
  }
  .dogovor-block-one, .dogovor-block-two, .dogovor-block-three, .dogovor-block-four, .dogovor-block-five {
    width: 90%;
  }
  .dogovor-block-three .dogovor-item > div {
    width: 60%;
  }
  .dogovor-block-thank .dogovor-thank-text {
    width: 100%;
  }
}
.cross-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 100px;
}
.cross-top-text {
  width: 50%;
}
.cross-top-text__title {
  display: none;
}
.cross-top-title {
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 700;
}
.cross-top-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.cross-top-span {
  margin-bottom: 14px;
  display: block;
}
.cross-top-list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 40px;
}
.cross-top-list > li {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 15px;
  color: var(--red);
  border: 1px solid rgba(152, 71, 83, 0.1019607843);
  border-radius: 100px;
}
.cross-top-list > li:hover {
  background: var(--red);
  border-radius: 100px;
}
.cross-top-list > li:hover > a {
  color: #fff;
}
.cross-top-action {
  display: flex;
  gap: 12px;
}
.cross-top-action > a {
  padding: 20px 27px;
  border-radius: 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--red);
  color: var(--red);
}
.cross-top-action > a:first-child {
  background: var(--red);
  color: #fff;
  cursor: pointer;
}
.cross-top-img {
  width: 30%;
}
.cross-top-img > img {
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cross-center {
  padding: 50px 40px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.cross-center-img {
  width: 8%;
}
.cross-center-text {
  width: 69%;
}
.cross-center-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
.cross-bottom-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 50px;
}
.cross-bottom-block {
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
}
.cross-bottom-text > span {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.cross-bottom-text > ul > li {
  list-style-type: disc;
  margin-left: 20px;
}
.cross-bottom-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
}
.cross-bottom-line {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 2px;
  padding: 20px;
}
.cross-bottom-line:first-child {
  background: transparent;
}
.cross-bottom-name {
  width: 29%;
}
.cross-bottom-ed {
  width: 25%;
  text-align: center;
}
.cross-bottom-rub {
  width: 25%;
  text-align: center;
}
.cross-plus {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.cross-plus-wrapper {
  margin-bottom: 100px;
}
.cross-plus-item {
  width: 32%;
  display: flex;
  padding: 30px 40px;
  padding-bottom: 50px;
  background: #fff;
  border-radius: 16px;
}
.cross-plus-ice {
  padding: 20px;
  border-left: 3px solid #01B253;
  background: #fff;
  margin-top: 20px;
}
.cross-plus-ice.red {
  border-left: 3px solid var(--red);
}
.cross-in {
  display: flex;
  justify-content: space-between;
}
.cross-in-wrapper {
  margin-bottom: 100px;
}
.cross-in-wrapper.gos .cross-in-num {
  color: var(--black);
}
.cross-in-wrapper.gos .cross-in-span {
  color: var(--black);
}
.cross-in-item {
  display: flex;
  gap: 10px;
  padding: 20px 15px;
  padding-bottom: 25px;
  border-radius: 10px;
  background: #fff;
  width: 24%;
}
.cross-in-num {
  color: var(--red);
  opacity: 0.2;
  font-size: 18px;
  font-weight: 600;
}
.cross-in-span {
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
}
.cross-how {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cross-how-wrapper {
  margin-bottom: 100px;
}
.cross-how-wrapper.take .cross-how-item {
  width: 24%;
}
.cross-how-item {
  width: 19%;
  background: #fff;
  padding: 20px 10px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.cross-how-num {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.2;
  color: var(--red);
}
.cross-how-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 10px;
}
.cross-how-subtitle {
  opacity: 0.8;
}
.cross-form {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 100px;
}
.cross-form > form, .cross-form > div {
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cross-form > form > form, .cross-form > div > form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cross-form-left {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 49%;
}
.cross-form-left > p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.cross-form-left > p > label {
  width: 49%;
  display: flex;
  flex-direction: column;
}
.cross-form-left > p > label > span {
  font-size: 12px;
  font-weight: 300;
}
.cross-form-left > p > label > span > input {
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.15);
}
.cross-form-left > p > label > span > select {
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.15);
  text-align: center;
}
.cross-form-right {
  width: 49%;
}
.cross-form-right > p > label > span {
  font-size: 12px;
  font-weight: 300;
}
.cross-form-right > p > label > span > textarea {
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.15);
  resize: none;
  height: 83%;
}
.cross-form-submit {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.cross-form-submit > p {
  display: flex;
  flex-direction: row-reverse;
}
.cross-form-submit > p > span {
  display: flex;
  width: 100%;
  position: relative;
}
.cross-form-submit > p > span > input {
  width: 100%;
  padding: 15px 20px;
  background: var(--red);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
}
.cross-form-submit > p > span > input:hover {
  opacity: 0.7;
}
.cross-form-submit > div {
  position: absolute;
  top: 27%;
  right: 20px;
}
.cross-other {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cross-other-item {
  width: 24%;
  padding: 30px 20px;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  background: #fff;
}
.cross-other-text {
  width: 55%;
}
.cross-other-img {
  width: 40%;
}

@media (max-width: 1024px) {
  .cross-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .cross-top-text {
    order: 2;
    width: 100%;
  }
  .cross-top-text__title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .cross-top-title {
    display: none;
  }
  .cross-top-img {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }
  .cross-top-subtitle {
    font-size: 16px;
    font-weight: 500;
  }
  .cross-top-list {
    overflow-x: scroll;
    margin-right: -29px;
  }
  .cross-top-list::-webkit-scrollbar {
    width: 0;
  }
  .cross-top-list > li {
    font-size: 12px;
    font-weight: 300;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .cross-top-action {
    flex-direction: column;
    gap: 12px;
  }
  .cross-top-action > a {
    width: 100%;
    text-align: center;
  }
  .cross-center {
    margin-bottom: 50px;
    padding: 30px 20px;
  }
  .cross-center-img {
    display: none;
  }
  .cross-center-text {
    width: 100%;
  }
  .cross-bottom-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }
  .cross-bottom-text {
    margin-bottom: 20px;
  }
  .cross-bottom-title {
    font-size: 18px;
    font-weight: 600;
  }
  .cross-bottom-img {
    width: 60%;
  }
  .cross-bottom-table {
    margin-bottom: 50px;
  }
  .cross-bottom-name {
    width: 35%;
  }
  .cross-bottom-name, .cross-bottom-ed, .cross-bottom-rub {
    font-size: 12px;
    font-weight: 300;
  }
  .cross-bottom-line {
    margin-bottom: 2px;
  }
  .cross-how {
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
  }
  .cross-how::-webkit-scrollbar {
    width: 0;
  }
  .cross-how-wrapper {
    margin-bottom: 50px;
  }
  .cross-how-item {
    min-width: 80vw;
  }
  .cross-other {
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
  }
  .cross-other::-webkit-scrollbar {
    width: 0;
  }
  .cross-other-item {
    min-width: 80vw;
  }
  .cross-plus {
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
    flex-wrap: nowrap;
  }
  .cross-plus-wrapper {
    margin-bottom: 50px;
  }
  .cross-plus-wrapper > .cross-plus-ice {
    margin-top: 50px;
  }
  .cross-plus::-webkit-scrollbar {
    width: 0;
  }
  .cross-plus-item {
    min-width: 80vw;
  }
  .cross-in {
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
    gap: 10px;
  }
  .cross-in::-webkit-scrollbar {
    width: 0;
  }
  .cross-in-item {
    min-width: 80vw;
  }
  .cross-in-wrapper {
    margin-bottom: 50px;
  }
  .cross-form {
    margin-bottom: 50px;
  }
  .cross-form > form {
    flex-direction: column;
  }
  .cross-form-left {
    width: 100%;
    flex-direction: column;
  }
  .cross-form-left > label {
    width: 100%;
  }
  .cross-form-left > label:last-child {
    margin-top: 0;
  }
  .cross-form-right {
    width: 100%;
  }
  .cross-form-submit {
    width: 100%;
  }
  .cross-form-submit > span {
    width: 100%;
  }
}
.trans-wrapper .cross-bottom-table {
  margin-top: 50px;
  margin-bottom: 50px;
}
.trans-wrapper .cross-bottom-line:first-child > div {
  font-weight: 600;
  font-size: 18px;
}
.trans-wrapper .cross-bottom-rub {
  text-align: center;
}
.trans-wrapper .trans-park-how {
  width: 25%;
  text-align: center;
}
.trans-plus {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trans-plus-item {
  width: 32%;
  background: #fff;
  padding: 30px 40px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
}
.trans-plus-item > span {
  font-size: 18px;
  font-weight: 600;
  width: 75%;
}
.trans-plus-item > div {
  max-width: 25%;
}
.trans-plus-wrapper {
  margin-bottom: 100px;
}
.trans-park-wrapper {
  margin-bottom: 100px;
}
.trans-calc-wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 50px 30px;
  margin-bottom: 100px;
}
.trans-calc-wrapper .cross-bottom-title {
  margin-bottom: 30px;
}
.trans-calc > .from {
  display: flex;
  width: 50%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.trans-calc > .from > label {
  width: 45%;
}
.trans-calc > .from > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.trans-calc > .from > label > select {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  font-size: 14px;
  font-weight: 300;
  border-radius: 8px;
  width: 100%;
}
.trans-calc > .from > div {
  width: 10%;
  margin-top: -5px;
  text-align: center;
}
.trans-calc > .date {
  display: flex;
  width: 45%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.trans-calc > .date > label {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.trans-calc > .date > label:nth-child(2) {
  width: 38%;
}
.trans-calc > .date > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.trans-calc > .date > label > input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  font-size: 14px;
  font-weight: 300;
}
.trans-calc > .date > label > select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  font-size: 14px;
  font-weight: 300;
}
.trans-calc > .info {
  display: flex;
  width: 65%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.trans-calc > .info > label {
  display: flex;
  flex-direction: column;
}
.trans-calc > .info > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.trans-calc > .info > label > input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  font-size: 14px;
  font-weight: 300;
}
.trans-calc > .type {
  display: flex;
  width: 35%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.trans-calc > .type > label {
  display: flex;
  flex-direction: column;
}
.trans-calc > .type > label:first-child {
  width: 50%;
}
.trans-calc > .type > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.trans-calc > .type > label > select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  font-size: 14px;
  font-weight: 300;
  width: 100%;
}
.trans-calc > .big {
  margin-top: 20px;
  border-top: 1px solid #F4F6FB;
  display: flex;
  justify-content: space-between;
}
.trans-calc > .big > .contact {
  display: flex;
  flex-wrap: wrap;
  width: 49%;
}
.trans-calc > .big > .contact > label {
  width: 49%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.trans-calc > .big > .contact > label:last-child {
  width: 100%;
  margin-bottom: 0;
}
.trans-calc > .big > .contact > label > span {
  font-size: 14px;
  margin-bottom: 5px;
}
.trans-calc > .big > .contact > label > input {
  border-radius: 8px;
  padding: 15px;
  height: 90%;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
}
.trans-calc > .big > .want {
  width: 49%;
}
.trans-calc > .big > .want > label {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.trans-calc > .big > .want > label > span {
  font-size: 14px;
  margin-bottom: 5px;
}
.trans-calc > .big > .want > label > textarea {
  border-radius: 8px;
  padding: 15px;
  height: 90%;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  resize: none;
}
.trans-calc > .submit {
  margin-top: 30px;
}
.trans-calc > .submit > input {
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  background: var(--red);
  color: #fff;
}
.trans-doc {
  margin-bottom: 100px;
}
.trans-doc > .tarif-list-item {
  padding: 25px 40px;
}
.trans-faq-wrapper {
  margin-bottom: 100px;
}
.trans-faq-wrapper .storage-faq {
  display: flex;
  flex-direction: column;
}
.trans-faq-wrapper .storage-faq-item {
  background: #fff;
  padding: 20px 30px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.trans-faq-wrapper .storage-faq-item.active .storage-faq-title:after {
  background-image: url(../img/minus-1.svg);
}
.trans-faq-wrapper .storage-faq-item.active .storage-faq-subtitle {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 30px;
}
.trans-faq-wrapper .storage-faq-title {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.trans-faq-wrapper .storage-faq-title:after {
  content: "";
  display: block;
  background-image: url(../img/plus-1.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.trans-faq-wrapper .storage-faq-subtitle {
  height: 0;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .trans-faq-wrapper .storage-faq-wrapper {
    margin-bottom: 50px;
  }
  .trans-faq-wrapper .storage-faq-title {
    font-size: 16px;
    align-items: center;
  }
  .trans-faq-wrapper .storage-faq-title > span {
    width: 90%;
  }
  .trans-faq-wrapper .storage-faq-title:after {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 40px;
  }
  .trans-plus {
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .trans-plus-wrapper {
    margin-bottom: 50px;
  }
  .trans-plus-item {
    min-width: 80vw;
    align-items: center;
  }
  .trans-plus::-webkit-scrollbar {
    width: 0;
  }
  .trans-wrapper .cross-bottom-line:first-child > div {
    font-weight: 300;
    font-size: 10px;
    width: -moz-fit-content;
    width: fit-content;
    gap: 3px;
  }
  .trans-wrapper .cross-bottom-name {
    word-break: break-word;
  }
  .trans-wrapper .trans-park-how {
    font-size: 12px;
    font-weight: 300;
  }
  .trans-calc-wrapper {
    padding: 50px 30px;
    margin-bottom: 50px;
  }
  .trans-calc-line.from {
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.from > label {
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.from > div {
    display: none;
  }
  .trans-calc-line.date {
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.date > label {
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.date > label:nth-child(2) {
    width: 100%;
  }
  .trans-calc-line.info {
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.info > label {
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.type {
    width: 100%;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .trans-calc-line.type > label {
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.type > label:first-child {
    width: 100%;
  }
  .trans-calc-line.big {
    flex-direction: column;
    width: 100%;
  }
  .trans-calc-line.big .contact {
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
  }
  .trans-calc-line.big .contact > label {
    width: 100%;
  }
  .trans-calc-line.big .want {
    width: 100%;
  }
  .trans-calc-line.big .want > label {
    width: 100%;
  }
  .trans-calc-line.submit {
    width: 100%;
  }
  .trans-calc-line.submit > input {
    width: 100%;
  }
  .trans-doc > .tarif-list-item {
    padding: 20px;
  }
}
.storage-wrapper .trans-faq-wrapper {
  margin-bottom: 100px;
}
.storage-add {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -20px;
}
.storage-add-wrapper {
  margin-bottom: 100px;
}
.storage-add-item {
  padding: 30px 33px;
  width: 32%;
  background: #fff;
  padding-bottom: 50px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.storage-add-item > span {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .storage-add {
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
    gap: 10px;
  }
  .storage-add::-webkit-scrollbar {
    width: 0;
  }
  .storage-add-wrapper {
    margin-bottom: 50px;
  }
  .storage-add-item {
    min-width: 80vw;
  }
}
.typep-wrapper {
  padding: 50px 30px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 100px;
}
.typep-block {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.typep-block-item {
  box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 49%;
}
.typep-block-item__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.typep-block-item__bottom {
  display: flex;
  justify-content: space-between;
}
.typep-block-text {
  width: 60%;
}
.typep-block-text > h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.typep-block-text > p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}
.typep-block-text > span {
  font-size: 14px;
}
.typep-block-text > span > ul > li {
  font-weight: 300;
  position: relative;
  display: flex;
}
.typep-block-text > span > ul > li::before {
  content: "✓";
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-right: 5px;
}
.typep-block-img {
  width: 38%;
}
.typep-block-left {
  font-size: 14px;
  font-weight: 300;
  width: 50%;
  display: flex;
  align-items: center;
}
.typep-block-right {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  color: var(--red);
}
.typep-block-right > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
}

.upac-other {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.upac-other-item {
  padding: 30px 40px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  width: 32%;
}
.upac-other-title {
  font-size: 18px;
  font-weight: 600;
  width: 65%;
}
.upac-other-img {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .typep-wrapper {
    margin-bottom: 50px;
  }
  .typep-block-item {
    width: 100%;
    padding: 20px;
  }
  .typep-block-item__top {
    flex-direction: column;
  }
  .typep-block-item__bottom {
    flex-direction: column;
  }
  .typep-block-text {
    width: 100%;
  }
  .typep-block-text > p {
    display: none;
  }
  .typep-block-text > span {
    display: none;
  }
  .typep-block-img {
    width: 75%;
  }
  .typep-block-left {
    width: 100%;
  }
  .typep-block-right {
    width: 100%;
  }
  .upac-other {
    overflow-x: scroll;
    flex-wrap: nowrap;
    margin: 0 -6%;
    padding: 0 5%;
    gap: 10px;
  }
  .upac-other::-webkit-scrollbar {
    width: 0;
  }
  .upac-other-item {
    min-width: 80vw;
  }
}
.take-add-wrapper {
  margin-bottom: 100px;
}
.take-add-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.take-add-item {
  padding: 30px 40px;
  border-radius: 16px;
  background: #fff;
  width: 49%;
}
.take-add-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.take-add-text {
  width: 75%;
}

@media (max-width: 1024px) {
  .take-add-block {
    overflow-x: scroll;
    flex-wrap: nowrap;
    margin: 0 -6%;
    padding: 0 5%;
    gap: 10px;
  }
  .take-add-block::-webkit-scrollbar {
    width: 0;
  }
  .take-add-item {
    min-width: 80vw;
  }
  .take-add-text {
    width: 100%;
  }
}
.load-if-wrapper {
  margin-bottom: 100px;
}
.load-if-wrapper .cross-plus-ice {
  margin-bottom: 100px;
  padding-right: 44%;
}
.load-if-block {
  margin: 50px 0;
}
.load-if-block > ul > li {
  padding: 20px;
  padding-right: 50%;
  margin-bottom: 2px;
  background: #fff;
  border-radius: 10px;
}
.load-tarif .cross-bottom-line:first-child > div {
  font-weight: 600;
  font-size: 18px;
}
.load-tarif .cross-bottom-name {
  width: 40%;
}
.load-tarif .cross-bottom-name > span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .load-if-wrapper .cross-plus-ice {
    padding-right: 0;
  }
  .load-if-block > ul > li {
    padding-right: 0;
  }
  .load-tarif .cross-bottom-table {
    flex-wrap: nowrap;
  }
  .load-tarif .cross-bottom-line {
    margin-bottom: 5px;
    flex-direction: column;
    align-items: flex-start;
  }
  .load-tarif .cross-bottom-line:first-child {
    width: 100%;
  }
  .load-tarif .cross-bottom-line:first-child > div {
    font-size: 12px;
    font-weight: 300;
  }
  .load-tarif .cross-bottom-name {
    width: 100%;
    margin-bottom: 10px;
  }
  .load-tarif .cross-bottom-ed {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .load-tarif .cross-bottom-rub {
    width: 100%;
    text-align: left;
  }
}
.uslugi-title {
  align-items: center;
  display: flex;
  width: 60%;
  margin-bottom: 40px;
}
.uslugi-title > h3 {
  font-size: 22px;
  font-weight: 700;
  color: rgb(51, 51, 51);
  margin-right: 50px;
}
.uslugi-title-nav > ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.uslugi-title-nav > ul > li {
  padding: 12px 15px;
  background: #fff;
  border: 1px solid rgba(152, 71, 83, 0.1);
  color: var(--red);
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  cursor: pointer;
}
.uslugi-title-nav > ul > li.active {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}
.uslugi-title-nav > ul > li:hover {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}
.uslugi-block {
  justify-content: space-between;
  flex-wrap: wrap;
  display: none;
}
.uslugi-block.active {
  display: flex;
}
.uslugi-block-item {
  width: 49%;
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.uslugi-block-text {
  width: 60%;
}
.uslugi-block-img {
  width: 40%;
}
.uslugi-block-img > img {
  border-radius: 5px;
}
.uslugi-block-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
}
.uslugi-block-subtitle li {
  list-style: disc;
  margin-left: 20px;
}
.uslugi-block-link {
  margin-top: 30px;
  color: var(--red);
  display: flex;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.uslugi-block-link > img {
  width: 10%;
}
.uslugi-search {
  margin-bottom: 40px;
  width: 27%;
  border-radius: 8px;
  overflow: hidden;
}
.uslugi-search .is-form-style input.is-search-input {
  padding: 5px 20px;
}

@media (max-width: 1024px) {
  .uslugi-title {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  .uslugi-title > h1 {
    margin-bottom: 20px;
  }
  .uslugi-title-nav {
    width: 100%;
    overflow: scroll;
  }
  .uslugi-title-nav::-webkit-scrollbar {
    width: 0;
  }
  .uslugi-title-nav > ul {
    width: -moz-max-content;
    width: max-content;
  }
  .uslugi-title-nav > ul > li {
    font-size: 12px;
    font-weight: 300;
  }
  .uslugi-block-item {
    width: 100%;
    padding: 20px 15px;
  }
  .uslugi-block-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .uslugi-block-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
  }
  .uslugi-block-link {
    font-size: 14px;
  }
}
.strax-rules-wrapper {
  margin-bottom: 100px;
}
.strax-rules-subtitle {
  padding: 50px;
  border-radius: 16px;
  background: #fff;
}
.strax-rules-subtitle > span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  width: 50%;
}
.strax-rules-subtitle > p {
  width: 50%;
}
.strax-plus-wrapper {
  margin-bottom: 100px;
}
.strax-plus-block {
  display: flex;
  justify-content: space-between;
}
.strax-plus-item {
  padding: 30px 30px;
  border-radius: 16px;
  background: #fff;
  width: 24%;
}
.strax-plus-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.strax-bottom-table .cross-bottom-name {
  width: 50%;
}
.strax-bottom-table .cross-bottom-ed {
  width: 10%;
}
.strax-bottom-table .cross-bottom-rub {
  width: 10%;
  text-align: center;
}

@media (max-width: 1024px) {
  .strax-rules-subtitle > span {
    width: 100%;
  }
  .strax-rules-subtitle > p {
    width: 100%;
  }
  .strax-plus-block {
    overflow-x: scroll;
    flex-wrap: nowrap;
    margin: 0 -6%;
    padding: 0 5%;
    gap: 10px;
  }
  .strax-plus-block::-webkit-scrollbar {
    width: 0;
  }
  .strax-plus-item {
    min-width: 80vw;
  }
  .strax-bottom-table .cross-bottom-name {
    width: 40%;
  }
  .strax-bottom-table .cross-bottom-rub {
    width: 20%;
  }
}
.handl-wrapper {
  margin-bottom: 100px;
}
.handl-block-item {
  border-radius: 10px;
  box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.05);
  background: rgb(251, 251, 251);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 20px;
}
.handl-block-item::before {
  content: "✓";
  border-radius: 10px;
  background: rgba(188, 41, 75, 0.05);
  color: rgb(1, 178, 83);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
}
.handl-block-item > span {
  width: 70%;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .handl-block {
    overflow-x: scroll;
    flex-wrap: nowrap;
    display: flex;
    margin: 0 -6%;
    padding: 0 5%;
    gap: 10px;
  }
  .handl-block::-webkit-scrollbar {
    width: 0;
  }
  .handl-block-item {
    min-width: 80vw;
    align-items: flex-start;
  }
}
.consul-modal {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 16px;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  background: rgb(251, 251, 251);
  padding: 50px;
  position: relative;
}
.consul-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.consul-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
  padding-top: 5%;
}
.consul-modal-wrapper::-webkit-scrollbar {
  width: 0;
}
.consul-modal-wrapper.active {
  display: flex;
}
.consul-modal-wrapper > div {
  width: 500px;
}
.consul-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}
.consul-modal-line {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.consul-modal-line > p > span:first-child {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
}
.consul-modal-line > p > span > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.consul-modal-line > p > span > textarea {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
  height: 60px;
}
.consul-modal-line > p > span > select {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.consul-modal-submit {
  position: relative;
}
.consul-modal-submit > p > input {
  width: 100%;
  background: var(--red);
  padding: 15px 20px;
  margin-top: 30px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  color: #fff;
}
.consul-modal-submit > div {
  position: absolute;
  bottom: 15%;
  right: 2%;
}

.login-modal {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 16px;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  background: rgb(251, 251, 251);
  padding: 50px;
  position: relative;
}
.login-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.login-modal-header {
  display: none;
}
.login-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.2);
}
.login-modal-wrapper.active {
  display: flex;
}
.login-modal-wrapper > div {
  width: 20%;
}
.login-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
.login-modal-line {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.login-modal-line > span {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
}
.login-modal-line > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.login-modal-rem {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.login-modal-rem > span {
  font-size: 12px;
  font-weight: 300;
}
.login-modal-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.login-modal-btns > a {
  border: 1px solid rgba(188, 41, 75, 0.1019607843);
  padding: 12px 15px;
  color: var(--red);
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 300;
  width: 49%;
  text-align: center;
}
.login-modal-btns > input {
  background: var(--red);
  padding: 12px 15px;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  border: none;
  width: 49%;
}
.login-modal-btns > span {
  font-size: 12px;
  font-weight: 300;
  color: var(--red);
  border-bottom: 1px dashed var(--red);
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.login-modal-text {
  font-size: 10px;
  opacity: 0.5;
  color: #000;
  margin-top: 30px;
}

.reg-modal {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 16px;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  background: rgb(251, 251, 251);
  padding: 50px;
  position: relative;
}
.reg-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.reg-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.2);
}
.reg-modal-wrapper.active {
  display: flex;
}
.reg-modal-wrapper > div {
  width: 20%;
}
.reg-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
.reg-modal-line {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.reg-modal-line > span {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
}
.reg-modal-line > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.reg-modal-submit {
  display: flex;
  flex-direction: column;
}
.reg-modal-submit > input {
  background: var(--red);
  padding: 12px 15px;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  border: none;
  width: 100%;
}
.reg-modal-submit > span {
  font-size: 12px;
  font-weight: 300;
  color: var(--red);
  border-bottom: 1px dashed var(--red);
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.reg-modal-text {
  font-size: 10px;
  opacity: 0.5;
  color: #000;
  margin-top: 30px;
}

.thank-modal {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 16px;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  background: rgb(251, 251, 251);
  padding: 50px;
  position: relative;
}
.thank-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.thank-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.2);
}
.thank-modal-wrapper.active {
  display: flex;
}
.thank-modal-wrapper > div {
  width: 20%;
}
.thank-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
.thank-modal-button {
  padding: 12px 15px;
  background: var(--red);
  border-radius: 16px;
  text-align: center;
  margin-top: 20px;
  color: #fff;
}
.thank-modal-text {
  font-size: 10px;
  opacity: 0.5;
  color: #000;
  margin-top: 30px;
}

.clients-modal {
  display: flex;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 16px;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  background: rgb(251, 251, 251);
  padding: 50px;
  position: relative;
  flex-direction: column;
}
.clients-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.clients-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.2);
  overflow: scroll;
}
.clients-modal-wrapper::-webkit-scrollbar {
  width: 0;
}
.clients-modal-wrapper.active {
  display: flex;
}
.clients-modal-wrapper > div {
  width: 70%;
}
.clients-modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 50px;
}
.clients-modal-block {
  display: flex;
  gap: 1.25;
  flex-wrap: wrap;
}
.clients-modal-item {
  width: 19%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.clients-modal-item > img {
  margin-bottom: 20px;
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.clients-modal-item > span {
  width: 90%;
  text-align: center;
  height: 30%;
  word-break: break-word;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.clients-modal-item > span > br {
  display: none;
}

.modal-webwork {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.modal-webwork-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 99999;
}
.modal-webwork-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.modal-webwork-subtitle {
  font-size: 22px;
  font-weight: 400;
  text-align: centers;
}
.modal-webwork-btn {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.modal-webwork-btn > a {
  width: 49%;
  display: block;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 18px;
  border-radius: 10px;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
}
.modal-webwork-btn > a:hover {
  background: var(--red);
  color: #fff;
}

@media (max-width: 1024px) {
  .login-modal {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 0;
  }
  .login-modal-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .login-modal-wrapper > div {
    width: 100%;
  }
  .login-modal-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(51, 51, 51, 0.15);
    padding: 20px;
    margin-bottom: 20px;
  }
  .login-modal-header > div {
    width: 20%;
  }
  .login-modal-logo {
    width: 40%;
  }
  .login-modal-close {
    display: none;
  }
  .login-modal-title {
    padding: 0 20px;
  }
  .login-modal-block {
    padding: 0 20px;
  }
  .login-modal-text {
    padding: 0 20px;
  }
  .modal-webwork-wrapper > div {
    width: 90vw;
  }
  .modal-webwork-title {
    font-size: 26px;
  }
  .modal-webwork-subtitle {
    font-size: 18px;
  }
  .modal-webwork-btn {
    flex-direction: column;
    gap: 10px;
  }
  .modal-webwork-btn > a {
    width: 100%;
    font-size: 14px;
  }
  .consul-modal {
    padding: 40px 10px;
  }
  .consul-modal-wrapper > div {
    width: 90%;
  }
  .consul-modal-line {
    margin-bottom: 5px;
  }
  .clients-modal {
    border-radius: 0;
    padding: 30px 20px;
  }
  .clients-modal-wrapper > .hrystal {
    width: 100%;
  }
  .clients-modal-title {
    text-align: center;
  }
  .clients-modal-item {
    width: 49%;
  }
  .clients-modal-item > img {
    width: 100%;
  }
}
.account-wrapper {
  display: flex;
}
.account-sidebar {
  width: 15%;
  border-right: 1px solid rgba(51, 51, 51, 0.15);
}
.account-sidebar-logo {
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}
.account-sidebar-logo > img {
  padding: 20px;
  padding-right: 50%;
}
.account-sidebar-nav {
  margin: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F4F6FB;
  margin-bottom: 20px;
}
.account-sidebar-nav > ul > li {
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
  border-radius: 8px;
}
.account-sidebar-nav > ul > li > span {
  display: flex;
  align-items: center;
}
.account-sidebar-nav > ul > li > div {
  display: flex;
  align-items: center;
  margin-top: -2px;
}
.account-sidebar-nav > ul > li:hover {
  background: var(--red);
}
.account-sidebar-nav > ul > li:hover > span {
  color: #fff;
}
.account-sidebar-nav > ul > li:hover > div > svg > path {
  stroke: #fff;
}
.account-sidebar-action {
  margin: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F4F6FB;
  margin-bottom: 20px;
}
.account-sidebar-action > ul > li {
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
  border-radius: 8px;
}
.account-sidebar-action > ul > li > span {
  display: flex;
  align-items: center;
}
.account-sidebar-action > ul > li > div {
  display: flex;
  align-items: center;
  margin-top: -2px;
}
.account-sidebar-info {
  margin: 10px;
}
.account-sidebar-info > span {
  padding: 12px 15px;
  font-size: 14px;
}
.account-sidebar-info > div {
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
}
.account-sidebar-info > div > span:last-child {
  margin-top: 5px;
  color: #BC294B;
}
.account-content {
  width: 85%;
}
.account-content-top {
  display: flex;
  justify-content: space-between;
  padding: 25.5px 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}
.account-content-body {
  padding: 30px;
  background: rgba(51, 51, 51, 0.1490196078);
  min-height: 85vh;
}
.account-top-search {
  width: 20%;
}
.account-top-search > form {
  display: flex;
  position: relative;
}
.account-top-search > form > input {
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  padding: 10px 20px;
}
.account-top-search > form > div {
  position: absolute;
  top: 25%;
  right: 5%;
}
.account-top-search > form > div > input {
  width: 30px;
  z-index: 9999999;
  position: relative;
  opacity: 0;
}
.account-top-search > form > div > span {
  width: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.account-top-filter {
  width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account-top-nav {
  width: 75%;
}
.account-top-nav > ul {
  display: flex;
  justify-content: space-between;
}
.account-top-nav > ul > li {
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
}
.account-top-button {
  width: 10%;
}
.account-filter-wrapper {
  display: none;
  flex-direction: column;
}
.account-filter-wrapper.active {
  display: flex;
}
.account-filter-form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
}
.account-filter-form > div {
  margin-bottom: 20px;
}
.account-filter-form > form > .line {
  display: flex;
  gap: 20px;
}
.account-filter-form > form > .line > label {
  display: flex;
  flex-direction: column;
}
.account-filter-form > form > .line > label > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.account-filter-form > form > .line > label > input {
  font-size: 14px;
  font-weight: 300;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  padding: 8px 10px;
}
.account-filter-form > form > .line > label > select {
  font-size: 14px;
  font-weight: 300;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  padding: 8px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/select-arrow-1.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  padding-right: 25px;
  background-position-x: calc(100% - 8px);
}
.account-filter-form > form > .line.date {
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
.account-filter-form > form > .line.date > svg {
  margin-top: -20px;
  margin-bottom: 20px;
}
.account-filter-form > form > .line.from {
  margin-bottom: 20px;
}
.account-filter-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 0px 16px 16px 0px;
  border-left: 2px solid rgb(188, 41, 75);
}
.account-filter-item.active .account-filter-more {
  display: flex;
}
.account-filter-item.payed {
  border-left: 2px solid rgb(1, 178, 83);
}
.account-filter-top {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.account-filter-info {
  display: flex;
  gap: 20px;
}
.account-filter-active {
  display: flex;
  gap: 20px;
}
.account-filter-num {
  display: flex;
  flex-direction: column;
}
.account-filter-num > span:nth-child(1) {
  font-size: 12px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 2px;
}
.account-filter-num > span:nth-child(2) {
  color: var(--red);
  margin-bottom: 5px;
}
.account-filter-num > span:nth-child(3) {
  font-size: 14px;
  font-weight: 300;
  color: #333;
  opacity: 0.5;
}
.account-filter-from > div {
  margin-bottom: 10px;
}
.account-filter-from > div > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
}
.account-filter-client > div {
  margin-bottom: 10px;
}
.account-filter-client > div > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
}
.account-filter-left > div {
  margin-bottom: 10px;
}
.account-filter-left > div > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
}
.account-filter-right > div {
  margin-bottom: 10px;
}
.account-filter-right > div > span {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
}
.account-filter-right > div > div.red {
  color: var(--red);
}
.account-filter-right > div > div.green {
  color: #01B253;
}
.account-filter-more {
  display: none;
  justify-content: space-between;
  border-top: 1px solid rgba(51, 51, 51, 0.15);
}
.account-filter-more > div {
  width: 30%;
}
.account-more-info {
  padding: 30px;
}
.account-more-info > .gab {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.account-more-info > .gab > div {
  display: flex;
  flex-direction: column;
}
.account-more-info > .gab > div > span {
  color: #333;
}
.account-more-info > .gab > div > span:first-child {
  font-size: 12px;
  font-weight: 300;
}
.account-more-info > .gab > div > span:last-child {
  font-size: 14px;
  font-weight: 400;
}
.account-more-info > .num {
  margin-bottom: 15px;
}
.account-more-info > .num > div {
  display: flex;
  flex-direction: column;
}
.account-more-info > .num > div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 5px;
}
.account-more-info > .num > div > span:last-child {
  font-size: 14px;
  font-weight: 300;
}
.account-more-info > .xar {
  margin-bottom: 15px;
}
.account-more-info > .xar > div {
  display: flex;
  flex-direction: column;
}
.account-more-info > .xar > div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 5px;
}
.account-more-info > .xar > div > span:last-child {
  font-size: 14px;
  font-weight: 300;
}
.account-more-info > .delivery {
  margin-bottom: 15px;
}
.account-more-info > .delivery > div {
  display: flex;
  flex-direction: column;
}
.account-more-info > .delivery > div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 5px;
}
.account-more-info > .delivery > div > span:last-child {
  font-size: 14px;
  font-weight: 300;
  color: var(--red);
}
.account-more-info > .adress > span {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  color: #333;
  display: block;
}
.account-more-info > .adress > span:last-child {
  margin-bottom: 0;
}
.account-more-hystory {
  padding: 30px;
}
.account-more-title {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 20px;
}
.account-more-help {
  border-left: 1px solid rgba(51, 51, 51, 0.15);
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.account-more-help > .block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.account-more-help > .block > span {
  opacity: 0.5;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}
.account-more-help > .block > a {
  color: var(--red);
}
.account-more-help > .line {
  display: flex;
  justify-content: space-between;
}
.account-more-help > .line > a {
  width: 49%;
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
.account-more-help > .line > .pool {
  border: 1px solid rgb(188, 41, 75);
  color: var(--red);
}
.account-more-help > .line > .full {
  background: var(--red);
  color: #fff;
}
.account-kontr-wrapper {
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
}
.account-kontr-wrapper.active {
  display: flex;
}
.account-kontr-wrapper.none {
  display: none;
  flex-direction: column;
}
.account-kontr-wrapper.none.active {
  display: flex;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
}
.account-kontr-wrapper.none.active > .cross-bottom-title {
  margin-bottom: 20px;
}
.account-kontr-wrapper > .calc-in-two {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.account-kontr-wrapper > .calc-in-two .calc-in-title {
  text-align: left;
}
.account-kontr-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.account-kontr-img > span {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0.3;
}
.account-kontr-img > img {
  max-width: 100px;
}
.account-kontr-list-top {
  background: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  margin-bottom: 20px;
}
.account-kontr-list-top > .cross-bottom-title {
  margin-bottom: 20px;
}
.account-kontr-list-body {
  background: #fff;
  border-radius: 16px;
}
.account-kontr-list-title {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}
.account-kontr-list-block {
  display: flex;
  flex-direction: column;
}
.account-kontr-list-item {
  padding: 20px 30px;
  border-bottom: 1px solid rgb(244, 246, 251);
}
.account-kontr-list-item.active .account-kontr-list-open {
  display: block;
}
.account-kontr-list-short {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account-kontr-list-short > .action {
  display: flex;
  gap: 15px;
}
.account-kontr-list-short > .action > a {
  font-size: 14px;
  color: var(--red);
}
.account-kontr-list-short > .action > div {
  display: flex;
  gap: 10px;
}
.account-kontr-list-short > .action > div > span {
  font-size: 14px;
}
.account-kontr-list-open {
  display: none;
  padding: 30px 10px;
  padding-bottom: 10px;
}
.account-kontr-open-item > div {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.account-kontr-open-item > div > span {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.account-templates-wrapper {
  display: none;
  flex-direction: column;
}
.account-templates-wrapper.active {
  display: flex;
}
.account-profile-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  display: none;
}
.account-profile-wrapper.active {
  display: flex;
  flex-direction: column;
}
.account-profile-wrapper > .cross-bottom-title {
  margin-bottom: 20px;
}
.account-profile-block {
  display: flex;
  flex-direction: column;
}
.account-profile-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.account-profile-item > span:first-child {
  font-size: 14px;
  margin-bottom: 5px;
  opacity: 0.5;
}
.account-profile-change {
  color: var(--red);
}

.delivery-page-wrapper .uslugi-title {
  width: 100%;
}

.city-bread {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}
.city-bread > a {
  opacity: 0.5;
}
.city-footer .hero-footer-item > p {
  font-size: 14px;
  font-weight: 300;
}
.city-more {
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.city-more > span {
  font-weight: 500;
  color: #fff;
  display: block;
  margin: 14px 0;
}
.city-more > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 60%;
}
.city-more > ul > li > a {
  padding: 12px 15px;
  background: #fff;
  color: var(--red);
  border: 1px solid rgba(152, 71, 83, 0.1);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.city-more > ul > li:hover > a {
  background: var(--red);
  color: #fff;
}
.city-top-offer {
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
}
.city-top-offer > div h2 {
  color: #fff;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  padding-right: 30px;
}
.city-top-offer > div:first-child {
  position: relative;
  z-index: 4;
}
.city-top-offer .hero-offer-action {
  z-index: 4;
  position: relative;
  margin-top: 20px;
  gap: 0;
}
.city-block-content {
  padding-top: 0;
  margin-top: 30px;
}
.city-block-content .none {
  display: none;
}
.city-block-content .fillial-item-info-item {
  display: block;
}
.city-reg {
  margin-top: 100px;
  border-radius: 16px;
  margin-bottom: 100px;
}
.city-reg .cross-plus-ice {
  background: rgb(251, 251, 251);
}
.city-reg .city-title {
  margin-bottom: 50px;
}
.city-reg .city-list {
  background: #333;
  padding: 20px;
  border-radius: 16px;
}
.city-reg .city-list > ul {
  max-width: 100%;
}
.city-reg .city-list > ul > li {
  width: 24%;
}
.city-reg .city-list > ul > li > a {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
}
.city-reg .city-list > ul > li:hover > a {
  background: transparent !important;
  color: var(--red) !important;
}
.city-reg.other a {
  font-size: 22px !important;
  font-weight: 600 !important;
}
.city-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.city-list {
  margin-bottom: 50px;
}
.city-list > ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 60%;
  height: 300px;
}
.city-list > ul > li > a {
  padding: 12px 15px;
  background: #fff;
  color: var(--red);
  border: 1px solid rgba(152, 71, 83, 0.1);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.city-list > ul > li:hover > a {
  background: var(--red);
  color: #fff;
}
.city-other-wrapper {
  margin-bottom: 100px;
}
.city-calc-wrapper .cross-plus-ice.red {
  margin-top: 50px;
}
.city-plus-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.city-plus-item {
  width: 49%;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  background: #fff;
  border-radius: 16px;
  gap: 10px;
}
.city-plus-item > .num {
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  opacity: 0.2;
}
.city-plus-item > .text > h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--red);
}
.city-plus-item > .text > span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

@media (max-width: 1024px) {
  .city-bread {
    display: none;
  }
  .city-one .hero-top-offer {
    padding-top: 40px;
  }
  .city-one .hero-offer-text {
    text-align: left;
    margin-bottom: 20px;
  }
  .city-one .hero-offer-text > span {
    margin-top: 20px;
    display: flex;
    text-align: left;
  }
  .city-more > span {
    margin: 0;
    margin-bottom: 20px;
  }
  .city-more > ul {
    max-width: 130%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin: 0 -9%;
    padding: 0 8%;
    gap: 10px;
  }
  .city-more > ul::-webkit-scrollbar {
    width: 0;
  }
  .city-block-content .fillial-item-info {
    padding: 30px 20px;
    background: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .city-block-content .fillial-item-limits {
    margin: 40px -20px;
  }
  .city-title {
    font-size: 18px;
    font-weight: 600;
  }
  .city-list > ul {
    max-width: 130%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin: 0 -10%;
    padding: 0 10%;
    gap: 10px;
  }
  .city-list > ul::-webkit-scrollbar {
    width: 0;
  }
  .city-list > ul > li {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .city-reg .city-list {
    padding: 12px;
  }
  .city-reg .city-list > ul {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    height: auto;
    flex-direction: row;
  }
  .city-reg .city-list > ul > li {
    width: 48%;
    min-width: 0;
  }
  .city-reg .city-list > ul > li > a {
    font-size: 14px;
    font-weight: 400;
    padding: 0;
  }
  .city-reg.other li {
    width: 100% !important;
  }
  .city-reg.other li > a {
    font-size: 14px !important;
    font-weight: 400 !important;
  }
  .city-reg .cross-plus-ice {
    font-size: 14px;
  }
  .city-plus-block {
    max-width: 130%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin: 0 -10%;
    padding: 0 10%;
    gap: 10px;
  }
  .city-plus-block::-webkit-scrollbar {
    width: 0;
  }
  .city-plus-item {
    min-width: 90vw;
  }
}
.before-calc {
  width: 60%;
  margin: 0 auto;
}
.before-calc-item > p {
  display: flex;
  gap: 20px;
}
.before-calc-item > p > span {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.before-calc-item > p > span > span {
  font-size: 12px;
}
.before-calc-item > p > span > select {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.before-calc-item > p > span > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.before-calc-item.weigth {
  display: flex;
  gap: 20px;
}
.before-calc-item.weigth .before-calc-item {
  width: 30%;
}
.before-calc-item.weigth .before-calc-item > p > span {
  width: 100%;
}
.before-calc-item.weigth > p {
  width: 30%;
}
.before-calc-item.weigth > p > span {
  width: 46%;
}
.before-calc-item.weigth .before-calc-check-item {
  display: flex;
  align-items: center;
}
.before-calc-item.weigth .before-calc-check-item > div {
  display: block;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid var(--red);
}
.before-calc-item.weigth .before-calc-check-item.active > div {
  background: var(--red);
}
.before-calc-item.call {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.before-calc-item.call > div:nth-child(1) {
  width: 30%;
}
.before-calc-item.call > div:nth-child(1) > p > span {
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.before-calc-item.call > div:nth-child(1) > p > span > select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.before-calc-item.call > div:nth-child(2) {
  width: 30%;
}
.before-calc-item.call > div:nth-child(2) > p > span {
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}
.before-calc-item.call > div:nth-child(2) > p > span > input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.before-calc-item.submit {
  display: flex;
  justify-content: flex-end;
}
.before-calc-item.submit > p {
  width: -moz-fit-content;
  width: fit-content;
}
.before-calc-item.submit > p > input {
  margin-bottom: 13px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  padding: 12px 15px;
  border: none;
}
.before-calc-list {
  display: flex;
  gap: 10px;
}
.before-calc-list > span > label {
  position: relative;
  display: flex;
  gap: 5px;
}
.before-calc-list > span > label:before {
  content: "";
  padding: 10px;
  border: 1px solid var(--red);
  border-radius: 100px;
}
.before-calc-list > span > label.active:before {
  background: var(--red);
}
.before-calc-list .wpcf7-list-item {
  margin: 0;
}

@media (max-width: 1024px) {
  .before-calc {
    width: 100%;
  }
  .before-calc-item {
    margin-bottom: 20px;
  }
  .before-calc-item:nth-child(2) > p {
    gap: 10px;
    flex-direction: column;
  }
  .before-calc-item:nth-child(2) > p > span {
    width: 100%;
  }
  .before-calc-item.weigth {
    flex-wrap: wrap;
    gap: 10px;
  }
  .before-calc-item.weigth .before-calc-item {
    width: 100%;
    margin-bottom: 0;
  }
  .before-calc-item.weigth > p {
    width: 100%;
  }
  .before-calc-item > p > span {
    width: 100%;
  }
  .before-calc-item.call {
    flex-wrap: wrap;
    gap: 0;
  }
  .before-calc-item.call > div:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
  }
  .before-calc-item.call > div:nth-child(2) {
    width: 100%;
  }
  .before-calc-item.submit {
    width: 100%;
  }
  .before-calc-item.submit > p {
    width: 100%;
  }
  .before-calc-item.submit > p > input {
    width: 100%;
    margin-top: 0;
  }
}
.change {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.change-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 99999;
  display: none;
  overflow-y: scroll;
  padding: 30px 0;
}
.change-wrapper > div {
  width: 480px;
}
.change-wrapper.active {
  display: flex;
}
.change-title {
  margin-bottom: 30px;
}
.change-title > p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}
.change-nums {
  margin-bottom: 20px;
}
.change-nums > p {
  display: flex;
  flex-direction: column;
}
.change-nums > p > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
}
.change-nums > p > span:last-child > input {
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  width: 100%;
}
.change-emails > p > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
}
.change-emails select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
}
.change-comments {
  margin-top: 20px;
  margin-bottom: 20px;
}
.change-comments > p {
  display: flex;
  flex-direction: column;
}
.change-comments > p > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
}
.change-comments > p > span textarea {
  height: 70px;
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  resize: none;
}
.change-submit {
  width: 100%;
  background: var(--red);
  padding: 12px 15px;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  border: none;
}
.change-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.hero-wrapper {
  padding: 100px 0;
  background-color: #C0D1D9;
  margin-bottom: 100px;
}
.hero-top {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.hero-top-slides {
  display: flex !important;
  max-width: 100%;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.hero-top-slide {
  justify-content: space-between;
  align-items: center;
  display: flex !important;
  width: 100%;
}
.hero-top-text {
  width: 44%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-top-text > h1 {
  font-size: 32px;
  font-weight: 700;
}
.hero-top-text > h3 {
  font-size: 18px;
  font-weight: 600;
}
.hero-top-text > a {
  background: var(--main);
  padding: 15px 40px;
  border-radius: 8px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-top-img {
  width: 50%;
  opacity: 1;
}
.hero-help-top-wrapper {
  position: absolute;
  bottom: 100%;
  left: 65%;
  display: none;
  width: 370px;
  background: #fff;
  z-index: 9;
}
.hero-help-top-wrapper.active {
  display: flex;
  flex-direction: column;
  border-radius: 16px 16px 16px 0;
  padding: 20px;
  gap: 10px;
  box-shadow: 2px 0px 20px 1px rgba(0, 0, 0, 0.5);
}
.hero-help-top-wrapper.active > input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  background: transparent;
  color: rgba(51, 51, 51, 0.7);
}
.hero-help-top-wrapper.active > p {
  color: #333333;
  font-size: 14px;
  opacity: 0.5;
}
.hero-help-top-wrapper.active > span {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.hero-bottom {
  display: flex;
  border-radius: 16px;
  background: #fff;
}
.hero-bottom-title {
  font-size: 20px;
  font-weight: 600;
}
.hero-bottom-left {
  width: 30%;
  padding: 30px 40px;
  gap: 18px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(51, 51, 51, 0.1490196078);
}
.hero-bottom-left-help {
  color: #de9cab;
  display: flex;
  border-bottom: 1px dashed #de9cab;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
.hero-bottom-left-help > svg {
  margin-left: 5px;
  display: block;
  margin-top: 2px;
}
.hero-bottom-left-form > form {
  display: flex;
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  height: 52px;
}
.hero-bottom-left-form > form > input {
  border-radius: 8px;
  width: 100%;
  border: none;
  background: transaprent;
  font-size: 14px;
  padding: 15px;
}
.hero-bottom-left-form > form > div {
  width: 52px;
  height: 100%;
  border-radius: 8px;
  padding: 5px 15px;
  background: #BC294B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-bottom-left-form > form > div > svg > path {
  fill: #fff;
}
.hero-bottom-right {
  width: 70%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-bottom-right > div {
  display: flex;
  gap: 10px;
}
.hero-bottom-right > div > a:nth-child(1) {
  color: var(--main);
}
.hero-bottom-right > div > a:nth-child(2) {
  opacity: 0.5;
}
.hero-bottom-right div.wpforms-container-full {
  margin: 0px 0 !important;
}
.hero-bottom-right .wpforms-container.inline-fields .wpforms-form {
  width: 100% !important;
}
.hero-bottom-right .wpforms-container.inline-fields .wpforms-field-container .wpforms-field:last-of-type {
  width: 100% !important;
}
.hero-bottom-right .wpforms-container.inline-fields .wpforms-field-container {
  width: 66% !important;
}
.hero-bottom-right div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  width: 31% !important;
  margin-top: 16px;
}
.hero-bottom-right div.wpforms-container-full .wpforms-field-label {
  display: none !important;
}
.hero-bottom-right div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=text] {
  height: 56px !important;
  border-radius: 8px !important;
}
.hero-bottom-right .submit-front-form {
  background: var(--main);
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  height: 52px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
}
.hero-bottom-right > form {
  display: flex;
  gap: 20px;
}
.hero-bottom-right > form > label {
  width: 33%;
  position: relative;
}
.hero-bottom-right > form input {
  border: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-radius: 8px;
  padding: 15px;
  width: 100%;
}
.hero-bottom-right > form input[type=submit] {
  background: var(--main);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.hero-gruz-wrapper {
  margin-bottom: 100px;
  margin-top: 80px;
}
.hero-gruz-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  row-gap: 50px;
  flex-wrap: wrap;
}
.hero-gruz-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 32%;
  cursor: pointer;
}
.hero-gruz-item.active img {
  filter: grayscale(1);
}
.hero-gruz-item.active .header-top-submit.gruz {
  display: flex;
  opacity: 0.9;
  position: absolute;
  top: 40%;
  left: 24%;
  filter: grayscale(0);
  background: var(--red);
  padding: 7px 12px;
  border-radius: 5px;
  color: #fff;
}
.hero-gruz-item .header-top-submit.gruz {
  display: none;
}
.hero-gruz-img {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  position: relative;
}
.hero-gruz-img > img {
  width: 50%;
}
.hero-gruz-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-gruz-title {
  font-size: 20px;
  font-weight: 600;
}
.hero-gruz-subtitle {
  color: #333333;
  opacity: 0.5;
}

.front.uslugi-wrapper {
  margin-top: 80px;
}
.front.hero-footer {
  margin: 80px 0;
}
.front.cross-center {
  display: flex;
  align-items: flex-start;
}
.front.cross-center > .cross-center-text > div {
  height: 270px;
  overflow: hidden;
}
.front.cross-center > .cross-center-text .cross-center-text-next {
  color: #BC294B;
  border-bottom: 1px dashed #BC294B;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}
.front.calc-wrapper {
  background: #fff;
}
.front.calc-wrapper .calc {
  background: transparent;
  padding: 50px 0;
}

@media (max-width: 1024px) {
  .hero-wrapper {
    padding: 0 0;
    background-color: transparent;
  }
  .hero-gruz-list {
    flex-wrap: nowrap;
    width: 112%;
    overflow-x: scroll;
    margin: 0 -6%;
    padding: 0 5%;
  }
  .hero-gruz-list::-webkit-scrollbar {
    width: 0;
  }
  .hero-gruz-item {
    min-width: 300px;
  }
  .hero-gruz-item.active .header-top-submit.gruz {
    left: 15%;
  }
  .hero-help-top-wrapper {
    left: 0;
    width: 84vw;
  }
  .hero-top {
    margin: 0 -5vw;
    padding: 50px 5vw;
    background-color: #C0D1D9;
  }
  .hero-top-left {
    left: 0;
  }
  .hero-top-right {
    right: 0;
  }
  .hero-top-arrow {
    position: absolute;
    top: 60%;
    z-index: 9;
  }
  .hero-top-slides {
    position: relative;
  }
  .hero-top-slide {
    display: flex;
    flex-direction: column;
  }
  .hero-top-text {
    width: 100%;
    margin-bottom: 10px;
  }
  .hero-top-text > h1 {
    font-size: 22px;
  }
  .hero-top-text > h3 {
    font-size: 16px;
    font-weight: 500;
  }
  .hero-top-img {
    width: 100%;
  }
  .hero-bottom {
    flex-direction: column-reverse;
  }
  .hero-bottom-left {
    width: 100%;
    padding: 30px 20px;
    border: none;
  }
  .hero-bottom-left > span:nth-child(3) {
    font-size: 14px;
  }
  .hero-bottom-right {
    width: 100%;
    padding: 30px 20px;
  }
  .hero-bottom-right .wpforms-container.inline-fields .wpforms-form {
    flex-direction: column !important;
  }
  .hero-bottom-right .wpforms-container.inline-fields .wpforms-field-container {
    width: 100% !important;
  }
  .hero-bottom-right div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    width: 100% !important;
  }
  .hero-bottom-right .wpforms-container .wpforms-field {
    padding: 5px 0;
  }
  .hero-bottom-right > form {
    flex-direction: column;
    margin-top: 18px;
  }
  .hero-bottom-right > form > label {
    width: 100%;
  }
  .hero-bottom-right > div {
    margin-top: 0px;
  }
  .hero-bottom-right > div > span {
    font-size: 14px;
  }
}
.header {
  display: flex;
  flex-direction: column;
}
.header-wrapper {
  background: #FFFFFF;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  width: 100%;
}
.header-top-top {
  justify-content: space-between;
  align-items: center;
}
.header-top-top * {
  color: var(--white);
}
.header-top-top .header-top-city {
  display: flex;
  gap: 20px;
  position: relative;
}
.header-top-top .header-top-city-display {
  width: 302px;
  cursor: pointer;
}
.header-top-top .header-top-city-display > span {
  font-size: 16px;
  font-weight: 500;
}
.header-top-top .header-top-city-display > span:nth-child(1) {
  border-bottom: 1px dashed var(--white);
}
.header-top-top .header-top-city-display > span:nth-child(2) {
  color: var(--main);
  border-bottom: 1px dashed var(--white);
}
.header-top-top .header-top-city-list {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: var(--black);
  padding: 20px;
  border-radius: 5px;
  flex-direction: column;
}
.header-top-top .header-top-city-list > span {
  font-size: 10px;
  position: absolute;
  top: 3px;
  right: 3px;
  cursor: pointer;
}
.header-top-top .header-top-city-list > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header-top-top .header-top-city-list > ul > li {
  cursor: pointer;
}
.header-top-top .header-top-city-list.active {
  display: flex;
}
.header-top-top .header-top-main-new {
  display: flex;
  gap: 20px;
}
.header-top-top .header-top-main-new > a {
  color: var(--main);
}
.header-top-top .header-top-contacts {
  flex-direction: row;
  gap: 20px;
}
.header-top-top .header-top-contacts > a {
  color: var(--white);
  font-weight: 600;
}
.header-top-left {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-top-logo {
  width: 110px;
}
.header-top-logo > img {
  -o-object-fit: cover;
     object-fit: cover;
}
.header-top-contacts {
  display: flex;
  flex-direction: column;
}
.header-top-contacts > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}
.header-top-right {
  display: flex;
  gap: 70px;
}
.header-top-list {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}
.header-top-list > ul {
  display: flex;
  gap: 25px;
}
.header-top-list > ul > li > a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.header-top-list > ul > li > a > span {
  padding-top: 3px;
}
.header-top-list > ul > li > a > svg {
  width: 24px;
  height: 24px;
}
.header-top-btn {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-top-open {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  padding-bottom: 15px;
}
.header-top-open > span {
  width: 112px;
}
.header-top-open.active > svg {
  transform: rotate(180deg);
}
.header-top-submit > div {
  display: flex;
  gap: 10px;
  background: var(--main);
  padding: 11px 20px;
  gap: 10px;
  border-radius: 8px;
  color: #fff;
  justify-content: center;
}
.header-top-submit > span {
  color: #BC294B;
  font-size: 14px;
  margin-top: 3px;
  opacity: 0.6;
}
.header-bottom {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}
.header-bottom.active {
  display: flex;
}
.header-bottom-left {
  width: -moz-fit-content;
  width: fit-content;
}
.header-bottom-left > ul {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-bottom-left > ul a:hover {
  color: var(--main);
}
.header-bottom-right {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-bottom-right > hr {
  background: rgba(51, 51, 51, 0.1490196078);
  border: none;
  width: 1px;
  height: 22px;
}

@media (max-width: 1024px) {
  .header-mob {
    flex-wrap: wrap;
  }
  .header-mob-city {
    display: flex;
    gap: 20px;
    position: relative;
    width: 100% !important;
  }
  .header-mob-city-display {
    width: 302px;
    cursor: pointer;
  }
  .header-mob-city-display > span {
    font-size: 10px;
    font-weight: 300;
  }
  .header-mob-city-display > span:nth-child(1) {
    border-bottom: 1px dashed var(--white);
  }
  .header-mob-city-display > span:nth-child(2) {
    color: var(--main);
    border-bottom: 1px dashed var(--white);
  }
  .header-mob-city-list {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: var(--black);
    padding: 20px;
    border-radius: 5px;
    flex-direction: column;
  }
  .header-mob-city-list > span {
    font-size: 10px;
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
    color: #fff;
  }
  .header-mob-city-list > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .header-mob-city-list > ul > li {
    cursor: pointer;
    color: #fff;
  }
  .header-mob-city-list.active {
    display: flex;
    z-index: 9999;
  }
}
.seo-bread > a {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.2;
}
.seo-bread > span {
  font-size: 14px;
  font-weight: 300;
}
.seo.hero-bottom .hero-bottom-right {
  width: 100%;
}
.seo.cross-center-text {
  width: 100%;
}
.seo.cross-center-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: rgb(51, 51, 51);
  margin-right: 50px;
}
.seo.cross-center-text > div > ol, .seo.cross-center-text > div > ul {
  padding: revert-layer;
}
.seo.cross-center-text > div > ul {
  list-style-type: disc;
}
.seo.cross-center-text a {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .seo-bread {
    display: block;
    margin-bottom: -40px;
    margin-top: 30px;
  }
  .seo-bread > a {
    font-size: 12px;
  }
  .seo-bread > span {
    font-size: 12px;
    z-index: 9;
    position: relative;
  }
}
.tarif-wrapper-new .fillial-header-text h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.tarif-wrapper-new .fillial-header-text p {
  font-size: 16px;
  font-weight: 400;
}
.tarif-wrapper-new .fillial-header-text__action {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.tarif-wrapper-new .fillial-header-list {
  display: flex;
  align-items: center;
}
.tarif-wrapper-new .fillial-header-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #F4F6FB;
  cursor: pointer;
}
.tarif-wrapper-new .fillial-header-list__item > svg > path {
  stroke: var(--black);
}
.tarif-wrapper-new .fillial-header-list__item.active {
  background: var(--black);
}
.tarif-wrapper-new .fillial-header-list__item.active > span {
  color: #fff;
}
.tarif-wrapper-new .fillial-header-list__item.active > svg > path {
  stroke: #fff;
}
.tarif-wrapper-new .fillial-header-city {
  display: flex;
}
.tarif-wrapper-new .fillial-header-city > span {
  color: var(--black);
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #F4F6FB;
  cursor: pointer;
}
.tarif-wrapper-new .fillial-header-city > span.active {
  background: var(--black);
  color: #fff;
}
.tarif-wrapper-new .fillial-block > h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.tarif-wrapper-new .fillial-block > p {
  font-size: 16px;
  font-weight: 400;
}
.tarif-wrapper-new .fillial-block-content {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
.tarif-wrapper-new .fillial-block-content-city {
  display: none;
}
.tarif-wrapper-new .fillial-block-content-city.active {
  display: flex;
}
.tarif-wrapper-new .fillial-block-content-list {
  display: none;
  flex-direction: column;
}
.tarif-wrapper-new .fillial-block-content-list.active {
  display: flex;
  width: 100%;
}
.tarif-wrapper-new .fillial-block-content-maps {
  display: none;
}
.tarif-wrapper-new .fillial-block-content-maps.active {
  display: flex;
  width: 100%;
}
.tarif-wrapper-new .fillial-template {
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.1490196078);
  border-bottom: 1px solid rgba(51, 51, 51, 0.1490196078);
  display: flex;
  justify-content: space-between;
}
.tarif-wrapper-new .fillial-template-left {
  width: 66%;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}
.tarif-wrapper-new .fillial-template-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 50%;
}
.tarif-wrapper-new .fillial-template-info > h3 {
  color: #525C76;
  font-size: 18px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}
.tarif-wrapper-new .fillial-template-info > div > p {
  font-weight: 500;
  font-size: 16px;
}
.tarif-wrapper-new .fillial-template-info > div > div {
  display: flex;
  gap: 10px;
}
.tarif-wrapper-new .fillial-template-info > div > div > a {
  color: #525C76;
  border-bottom: 1px dashed #525C76;
  text-decoration: none;
}
.tarif-wrapper-new .fillial-template-info > ul {
  display: flex;
  flex-direction: column;
}
.tarif-wrapper-new .fillial-template-info > ul > li {
  display: flex;
  gap: 8px;
}
.tarif-wrapper-new .fillial-template-info > ul > li > span {
  font-size: 14px;
  font-weight: 300;
}
.tarif-wrapper-new .fillial-template-info > ul > li > div {
  position: relative;
  cursor: pointer;
}
.tarif-wrapper-new .fillial-template-info > ul > li > div > div {
  display: none;
}
.tarif-wrapper-new .fillial-template-info > ul > li > div:hover > div {
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.5);
}
.tarif-wrapper-new .fillial-template-contact {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(51, 51, 51, 0.1490196078);
  padding-left: 25px;
  width: 50%;
}
.tarif-wrapper-new .fillial-template-contact > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}
.tarif-wrapper-new .fillial-template-contact > div > span {
  font-weight: 500;
}
.tarif-wrapper-new .fillial-template-contact > div > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tarif-wrapper-new .fillial-template-contact > div > ul > li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.1490196078);
}
.tarif-wrapper-new .fillial-template-contact > div > ul > li > span {
  font-size: 16px;
  font-weight: 400;
}
.tarif-wrapper-new .fillial-template-contact > div > ul > li > a {
  text-decoration: none;
}
.tarif-wrapper-new .fillial-template-right {
  width: 30%;
}
.tarif-wrapper-new .fillial-template-right > div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(188, 41, 75, 0.3019607843);
  padding: 15px;
  border-radius: 5px;
}
.tarif-wrapper-new .fillial-template-right > div > svg {
  min-width: 16px;
}
.tarif-wrapper-new .fillial-template-right > div > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tarif-wrapper-new .fillial-template-right > div > ul > li > b {
  font-weight: 500;
}
.tarif-wrapper-new .fillial-block-and {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.tarif-wrapper-new .fillial-block-and > .fillial-block-title {
  text-align: left;
}
.tarif-wrapper-new .fillial-block-and > .fillial-block-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li {
  width: 25%;
  border-left: 1px solid rgba(51, 51, 51, 0.1490196078);
  padding-bottom: 15px;
  padding-left: 30px;
}
.tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li:nth-child(1), .tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li:nth-child(5), .tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li:nth-child(9), .tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li:nth-child(13), .tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li:nth-child(17) {
  border-left: none;
  padding-left: 0;
}
.tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li a {
  color: #525C76;
  border-bottom: 1px dashed #525C76;
  text-decoration: none;
}
.tarif-wrapper-new .fillial-block-and > .fillial-block-more {
  display: flex;
  justify-content: center;
}
.tarif-wrapper-new .fillial-block-and > .fillial-block-more > a {
  color: #525C76;
  border-bottom: 1px dashed #525C76;
}

.fillial-block-content-seo {
  flex-direction: column;
  display: flex;
  margin-bottom: 30px;
}
.fillial-block-content-seo .fillial-block-content-city {
  flex-direction: column;
}
.fillial-block-content-seo > .fillial-header-text__action {
  margin-bottom: 0px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .tarif-wrapper-new .fillial-block-header {
    display: flex;
    flex-direction: column;
  }
  .tarif-wrapper-new .fillial-header-text > h1 {
    font-size: 18px;
    font-weight: 600;
  }
  .tarif-wrapper-new .fillial-header-text > p {
    font-size: 14px;
  }
  .tarif-wrapper-new .fillial-header-text__action {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 40px;
  }
  .tarif-wrapper-new .fillial-header-text__action > div {
    width: 100%;
  }
  .tarif-wrapper-new .fillial-template {
    display: flex;
    flex-direction: column;
  }
  .tarif-wrapper-new .fillial-template-left {
    flex-direction: column;
    width: 100%;
  }
  .tarif-wrapper-new .fillial-template-info {
    width: 100%;
  }
  .tarif-wrapper-new .fillial-template-info > div > p {
    font-weight: 400;
  }
  .tarif-wrapper-new .fillial-template-info > div > div > a {
    font-size: 14px;
  }
  .tarif-wrapper-new .fillial-template-info > ul > li {
    position: relative;
  }
  .tarif-wrapper-new .fillial-template-info > ul > li > div {
    position: unset;
  }
  .tarif-wrapper-new .fillial-template-info > ul > li > div > span {
    font-size: 12px;
  }
  .tarif-wrapper-new .fillial-template-contact {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(51, 51, 51, 0.1490196078);
    border-left: none;
  }
  .tarif-wrapper-new .fillial-template-contact > div > ul {
    width: 100%;
  }
  .tarif-wrapper-new .fillial-template-contact > div > ul > li > span {
    font-size: 14px;
  }
  .tarif-wrapper-new .fillial-template-contact > div > ul > li > a {
    font-size: 14px;
    text-decoration: none !important;
  }
  .tarif-wrapper-new .fillial-template-right {
    width: 100%;
  }
  .tarif-wrapper-new .fillial-block-and > .fillial-block-title {
    margin-bottom: 30px;
  }
  .tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li {
    width: 50%;
    border-left: none;
    padding-left: 0;
  }
  .tarif-wrapper-new .fillial-block-and > .fillial-block-list ul li:nth-child(2n) {
    padding-left: 10px;
    border-left: 1px solid rgba(51, 51, 51, 0.1490196078);
    padding-bottom: 15px;
  }
  .fillial-block-content-seo > .fillial-header-text__action {
    margin-bottom: 0px;
  }
}
.cta {
  background: var(--white);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 16px;
  padding: 50px;
}
.cta-wrapper {
  background: #F4F6FB;
  padding: 50px 0;
}
.cta-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-text-title {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.cta-text-title > span {
  padding: 2px 8px;
  background: #DCF3DE;
  font-size: 12px;
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
}
.cta-text-subtitle {
  font-size: 18px;
  font-weight: 600;
}
.cta-text-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-text-action > div {
  display: flex;
  gap: 10px;
}
.cta-text-action > div > form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-text-action > div > form > input:nth-child(1) {
  padding: 12px;
  border: 1px solid #D8D9DE;
  font-size: 14px;
  border-radius: 8px;
}
.cta-text-action > div > form > input:nth-child(2) {
  border: 1px solid var(--red);
  transition: 0.5s;
}
.cta-text-action > div > form > input:nth-child(2):hover {
  background: transparent;
  color: var(--red);
  transition: 0.5s;
}
.cta-text-action > span {
  color: var(--red);
}
.cta-img {
  width: 30%;
  border-radius: 16px;
}
.cta-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .cta {
    flex-direction: column;
    padding: 20px;
    border-radius: 7px;
  }
  .cta-text {
    width: 100%;
  }
  .cta-text-title {
    font-size: 18px;
  }
  .cta-text-subtitle {
    font-size: 16px;
    font-size: 14px;
  }
  .cta-text-action > span {
    font-size: 14px;
  }
  .cta-img {
    width: 100%;
    margin-top: 30px;
  }
}/*# sourceMappingURL=style.css.map */