@charset "UTF-8";

@font-face {
  font-family: icons;
  font-display: swap;
  src: url("../fonts/icons.woff2") format("woff2"), url("../fonts/icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: ProximaSoft;
  font-display: swap;
  src: url("../fonts/ProximaSoft-Bold.woff2") format("woff2"), url("../fonts/ProximaSoft-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: ProximaSoft;
  font-display: swap;
  src: url("../fonts/ProximaSoft-ExtraBold.woff2") format("woff2"), url("../fonts/ProximaSoft-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: ProximaSoft;
  font-display: swap;
  src: url("../fonts/ProximaSoft-Medium.woff2") format("woff2"), url("../fonts/ProximaSoft-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: ProximaSoft;
  font-display: swap;
  src: url("../fonts/ProximaSoft-Regular.woff2") format("woff2"), url("../fonts/ProximaSoft-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: ProximaSoft;
  font-display: swap;
  src: url("../fonts/ProximaSoft-SemiBold.woff2") format("woff2"), url("../fonts/ProximaSoft-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

[class*=_icon-]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=_icon-]:before {
  display: block;
}

._icon-arrow:before {
  content: "\e900";
}

._icon-arrow-btn:before {
  content: "\e901";
  color: #8f87c0;
}

._icon-plus:before {
  content: "\e902";
  color: #f67277;
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 32px;
}

._icon-world-wide:before {
  content: "\e903";
  color: #8f87c0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

body {
  color: #000;
  line-height: 1;
  font-family: "ProximaSoft";
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "ProximaSoft";
  font-size: inherit;
  line-height: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

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

.input {
  border-radius: 16px;
  width: 100%;
  display: block;
  padding: 16px 25px;
  border: 1px solid rgb(214, 219, 224);
  outline: none;
}

.input._form-focus,
.input:hover,
.input:focus {
  border-color: rgb(131, 91, 152);
}

.input._form-error {
  border-color: rgb(252, 103, 103);
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

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

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup__close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  height: 54px;
  width: 54px;
  border-radius: 50%;
  background: rgb(246, 114, 119);
  cursor: pointer;
  border: none;
  outline: none;
}

.popup__close::before,
.popup__close::after {
  content: "";
  display: block;
  width: 1.5px;
  height: 24px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 12px);
}

.popup__close::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup__close::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup__close:hover::before {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.popup__close:hover::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

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

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

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

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 680px;
  border-radius: 32px;
}

.lock .popup__content {
  visibility: visible;
}

.popup__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.popup__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.popup__input {
  border: 1px solid rgb(214, 219, 224);
  border-radius: 16px;
  padding: 17px 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.popup__input::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(140, 141, 149);
}

.popup__input::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(140, 141, 149);
}

.popup__input:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(140, 141, 149);
}

.popup__input::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(140, 141, 149);
}

.popup__input::placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(140, 141, 149);
}

.popup__input:hover,
.popup__input:active {
  border-color: rgb(131, 91, 152);
  outline: none;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  counter-reset: item2;
  max-width: 615px;
}

.tabs__main-text {
  color: rgb(246, 114, 119);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.tabs__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: absolute;
  right: calc(100% - 2px);
  width: 186px;
  height: 112px;
  bottom: 0;
  background: #fff;
  border-top-left-radius: 50px;
  padding: 32px;
}

.tabs__pagination::before {
  position: absolute;
  content: url("../img/corner.png");
  bottom: calc(100% - 5px);
  right: 0;
}

.tabs__pagination .prev,
.tabs__pagination .next {
  -webkit-box-shadow: 0px 0.2490530908px 1px 0px rgba(38, 39, 40, 0.03), 0px 0.5985091925px 1.5px 0px rgba(38, 39, 40, 0.04), 0px 1px 3px 0px rgba(38, 39, 40, 0.05), 0px 2px 5px 0px rgba(38, 39, 40, 0.06), 0px 4px 9px 0px rgba(38, 39, 40, 0.08), 0px 8px 20px 0px rgba(38, 39, 40, 0.1);
  box-shadow: 0px 0.2490530908px 1px 0px rgba(38, 39, 40, 0.03), 0px 0.5985091925px 1.5px 0px rgba(38, 39, 40, 0.04), 0px 1px 3px 0px rgba(38, 39, 40, 0.05), 0px 2px 5px 0px rgba(38, 39, 40, 0.06), 0px 4px 9px 0px rgba(38, 39, 40, 0.08), 0px 8px 20px 0px rgba(38, 39, 40, 0.1);
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #fff;
}

.tabs__pagination .prev::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 14px;
}

.tabs__pagination .next::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 14px;
}

.packages__tabs {
  display: none;
}

.franchise__section--5 .tabs__content {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: 50px 50px 0 0;
  width: 672px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: -20px;
}

.franchise__section--5 .tabs__body {
  position: relative;
  min-height: 220px;
  max-height: 80%;
}

.franchise__section--5 .tabs__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
}

.franchise__section--5 .tabs__title::before {
  counter-increment: item2;
  content: counter(item2);
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgb(246, 114, 119);
  line-height: 1;
  font-weight: 600;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.franchise__section--5 .tabs__title._tab-active {
  color: rgb(243, 199, 32);
}

.franchise__section--5 .tabs__title._tab-active::before {
  color: rgb(243, 199, 32);
}

.franchise__section--7 .tabs__content {
  width: 100%;
  z-index: 1;
}

.tabs__body .package__block {
  background: #fff;
  border-radius: 24px;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

.fp-init body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

[data-fp] {
  min-height: 100vh;
}

.touch [data-fp] {
  min-height: calc(var(--vh, 1vh) * 100);
}

.fp-init [data-fp] {
  z-index: 1;
  -ms-touch-action: none;
  touch-action: none;
  position: relative;
  overflow: hidden;
}

.fp-switching [data-fp-section] {
  -ms-touch-action: none;
  touch-action: none;
}

.fp-init [data-fp-section] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.fp-init .slider-mode [data-fp-section],
.fp-init .cards-mode [data-fp-section] {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.55, 0.085, 0, 0.99) 0s;
  transition: -webkit-transform 0.7s cubic-bezier(0.55, 0.085, 0, 0.99) 0s;
  -o-transition: transform 0.7s cubic-bezier(0.55, 0.085, 0, 0.99) 0s;
  transition: transform 0.7s cubic-bezier(0.55, 0.085, 0, 0.99) 0s;
  transition: transform 0.7s cubic-bezier(0.55, 0.085, 0, 0.99) 0s, -webkit-transform 0.7s cubic-bezier(0.55, 0.085, 0, 0.99) 0s;
}

.fp-init .fade-mode [data-fp-section] {
  -webkit-transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s;
  -o-transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}

.header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 12px;
}

.header__nav-list li {
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header__nav-list li:hover {
  opacity: 0.8;
}

.header__logo {
  display: block;
  height: 44px;
  width: 134px;
  cursor: pointer;
}

.header__logo img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__lang-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 33px;
  width: 57px;
  border-radius: 12px;
  padding: 9px 10px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
}

.header__lang-btn::before {
  font-size: 6px;
}

.header__languages-block {
  position: relative;
}

.header__languages {
  display: none;
  position: absolute;
  border-radius: 0 0 12px 12px;
  padding: 0px 20px 9px 13px;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #000;
  top: 90%;
  gap: 7px;
  width: 57px;
}

.header__languages a {
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
}

.header__languages a:hover {
  color: rgb(252, 103, 103);
}

.header__languages-block.open .header__languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__languages-block.open .header__lang-btn {
  border-radius: 12px 12px 0 0;
}

.header.color .header__container {
  color: rgba(0, 0, 0, 0.4);
}

.menu {
  display: none;
}

.icon-menu {
  display: none;
}

.menu__body {
  display: none;
}

.menu-open .menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  padding: 70px 46px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  overflow-x: hidden;
}

.menu-open .menu__body .decor--1 {
  left: 0;
  right: unset;
}

.menu-open .menu__body .decor--2 {
  display: block;
  right: 0;
  left: unset;
  height: 122px;
  width: 125px;
  -o-object-fit: cover;
  object-fit: cover;
}

.section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: calc(100vh - 100px);
  margin-top: 80px;
  margin-bottom: 20px;
}

.franchise {
  counter-reset: item;
}

.franchise__section {
  position: relative;
  overflow: hidden;
}

.franchise__section--1 {
  background: rgb(250, 189, 12);
}

.franchise__section--2,
.franchise__section--7 {
  background-color: rgb(131, 91, 152);
}

.franchise__section--4,
.franchise__section--8 {
  background-color: rgb(63, 183, 181);
}

.franchise__section--5 {
  position: relative;
  width: 100%;
  background: rgba(246, 114, 119, 1);
}

.franchise__section--6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background: rgb(249, 228, 210);
}

.franchise__section--10 {
  background: rgb(252, 232, 189);
}

.franchise__section--11 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgb(252, 134, 0);
}

.franchise__section--2 .section__content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.franchise__section--3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.franchise__section--8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; */
  overflow-y: scroll !important;
  overflow-x: hidden;
}

@media screen and (max-width:768px) {
  .franchise__section--8 {
    overflow-y: auto !important;
  }
}

.franchise__section--8::-webkit-scrollbar {
  width: 12px;
}

.franchise__section--8::-webkit-scrollbar-track {
  background: rgb(215, 220, 225);
  border-radius: 5px;
}

.franchise__section--8::-webkit-scrollbar-thumb {
  background-color: rgb(143, 135, 192);
  border-radius: 5px;
}

.franchise__section--9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.franchise__pages {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  right: 41px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.franchise__pages::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
}

.franchise__pages span {
  display: block;
  width: 2px;
  height: 220px;
  background-color: #fff;
}

.franchise__pages.color {
  color: rgb(185, 187, 189);
}

.franchise__pages.color span {
  background-color: rgb(185, 187, 189);
}

.franchise__page {
  position: absolute;
  font-weight: 800;
  line-height: 1.1;
  color: transparent;
  z-index: -1;
}

.franchise__page--2,
.franchise__page--7 {
  -webkit-text-stroke: 1.1px rgb(151, 111, 172);
}

.franchise__page--3,
.franchise__page--9 {
  -webkit-text-stroke: 1.1px rgb(221, 229, 236);
}

.franchise__page--4,
.franchise__page--8 {
  -webkit-text-stroke: 1.1px rgb(83, 203, 201);
}

.franchise__page--5 {
  -webkit-text-stroke: 1.1px rgba(226, 94, 99, 1);
}

.franchise__page--6 {
  -webkit-text-stroke: 1.1px rgb(255, 248, 230);
}

.franchise__page--10 {
  -webkit-text-stroke: 1.1px rgb(255, 213, 80);
}

.franchise__section-fon {
  position: absolute;
  right: 0;
  bottom: -15px;
  display: block;
  height: 105%;
  width: auto;
  z-index: 0;
}

.decor {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  z-index: -1;
}

.decor--1 {
  top: 0;
  right: 0;
}

.decor--2 {
  bottom: 0;
  left: 0;
}

.decor--1-1 {
  bottom: -130px;
  left: -130px;
  z-index: 2;
}

.decor--1-2 {
  top: -90px;
  right: -90px;
  z-index: 2;
}

.partners-form {
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 531px;
  border-radius: 50px;
  padding: 40px 60px;
  background: #fff;
  z-index: 5;
}

.partners-form h2:not(:last-child) {
  padding-bottom: 12px;
}

.partners-form p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.partners-form p:not(:last-child) {
  padding-bottom: 24px;
}

.partners-form input:not(:last-child) {
  margin-bottom: 12px;
}

.partners-form .red-button {
  width: 100%;
}

.fon11 {
  display: block;
  height: 100%;
  width: auto;
  position: absolute;
  right: -20px;
  bottom: 0;
  z-index: 0;
}

.fon5 {
  display: none;
  height: 120%;
  width: 50vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% -120px;
  object-position: 50% -120px;
  position: absolute;
  top: 0;
  right: 0;
}

.fon5.active {
  display: block;
}

.pagging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 5;
  position: fixed;
  bottom: 40px;
  right: 24px;
}

.page-next,
.page-prev {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

.page-next {
  width: 60px;
  height: 60px;
}

.page-prev {
  width: 44px;
  height: 44px;
}

.page-prev::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  font-size: 14px;
  /* opacity: 0.5; */
}

.pagging.color .page-next,
.pagging.color .page-prev {
  background: rgb(235, 240, 245);
}

.section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 569px;
  z-index: 10;
  position: relative;
}

.section-content div,
.section-content h1 {
  -webkit-box-shadow: 0px 3.7807309628px 11.3421926498px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3.7807309628px 11.3421926498px 0px rgba(0, 0, 0, 0.12);
  border-radius: 18.9px;
  padding: 15px 19px 13px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 800;
}

.section-content__main-subtitle {
  background: rgb(63, 183, 181);
  line-height: 1.1;
  color: #fff;
  -webkit-transform: rotate(-1.4deg);
  -ms-transform: rotate(-1.4deg);
  transform: rotate(-1.4deg);
}

.section-content__main-title {
  position: relative;
  line-height: 1;
  color: rgb(240, 179, 2);
  background: #fff;
  margin-left: 22px;
  z-index: 3;
}

.section-content__main-text {
  background: #fff;
  margin-left: 22px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-top: -5px;
  z-index: 2;
}

.section-content__main-text:last-child {
  z-index: 0;
}

.section-content p {
  margin-left: 47px;
  margin-top: 19px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 449px;
}

.section-content button {
  margin-top: 20px;
  margin-left: 47px;
}

.section-content2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 10;
  max-width: 690px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.section-content2 h2 {
  color: rgb(243, 199, 32);
}

.section-content2 p {
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-top: 16px;
}

.section-content2__dates {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

h2 {
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.section-slider {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-big {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.swiper-big img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.history-dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px;
  border-left: 3px solid rgb(243, 199, 32);
  gap: 8px;
}

.history-dates__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: rgb(243, 199, 32);
}

.history-dates__text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.product-img-btns .img {
  display: block;
  overflow: hidden;
}

.product-img-btns .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
}

.product-img-btns {
  width: 100px;
  height: 100%;
}

.product-img-btns .swiper-wrapper {
  height: 100%;
  width: 100%;
}

.product-img-btns .img.swiper-slide-thumb-active img {
  border-color: rgb(246, 114, 119);
}

.product-img-btns-wrapper {
  margin-left: -50px;
  height: 100%;
}

.swiper-navigations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.swiper-navigations button {
  height: 48px;
  width: 48px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0.2490530908px 1px 0px rgba(38, 39, 40, 0.03), 0px 0.5985091925px 1.5px 0px rgba(38, 39, 40, 0.04), 0px 1px 3px 0px rgba(38, 39, 40, 0.05), 0px 2px 5px 0px rgba(38, 39, 40, 0.06), 0px 4px 9px 0px rgba(38, 39, 40, 0.08), 0px 8px 20px 0px rgba(38, 39, 40, 0.1);
  box-shadow: 0px 0.2490530908px 1px 0px rgba(38, 39, 40, 0.03), 0px 0.5985091925px 1.5px 0px rgba(38, 39, 40, 0.04), 0px 1px 3px 0px rgba(38, 39, 40, 0.05), 0px 2px 5px 0px rgba(38, 39, 40, 0.06), 0px 4px 9px 0px rgba(38, 39, 40, 0.08), 0px 8px 20px 0px rgba(38, 39, 40, 0.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swiper-navigations button:hover::before {
  color: rgb(243, 199, 32);
}

.swiper-button-prev::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.swiper-button-next::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.map-page {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.map-page .map-block {
  max-width: 60vw;
}

.map-page .map {
  position: relative;
  width: 602px;
}

.map-page .map__location {
  display: block;
  height: 40px;
  width: 30px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.map-page .map__location--zhytomir {
  bottom: 70%;
  left: 33%;
}

.map-page .map__location--kamyanske {
  bottom: 50%;
  left: 66%;
}

.map-page .map__location--dnipro {
  bottom: 47%;
  left: 68%;
}

.map-page .map__location--kharkiv {
  bottom: 66%;
  left: 75%;
}

.map-page .map__location--chernivtsi {
  bottom: 45%;
  left: 18%;
}

.map-page .map__location--rivne {
  bottom: 75%;
  left: 20%;
}

.map-page .map__location--pokrovsk {
  bottom: 45%;
  left: 80%;
}

.map-page .map__location--kryvii-rig {
  bottom: 43%;
  left: 59%;
}

.map-page .map__location--cherkasy {
  bottom: 60%;
  left: 52%;
}

.map-page .map__location--oleksandria {
  bottom: 52%;
  left: 58%;
}

.map-page .map__location--vinnytsa {
  bottom: 59%;
  left: 32%;
}

.map-page .map__location--konotop {
  bottom: 83%;
  left: 58%;
}

.map-page .map__location--pavlograd {
  bottom: 49%;
  left: 73%;
}

.map-page .map__location--gorishni-plavni {
  bottom: 56%;
  left: 61%;
}

.map-page .map__location--bila-tserkva {
  bottom: 66%;
  left: 41%;
}

.map-page .map__location--kremenchyk {
  bottom: 54%;
  left: 60%;
}

.map-page .map__location--kropivnitskiy {
  bottom: 50%;
  left: 53%;
}

.map-page .map__location--kryvii-rig2 {
  bottom: 44%;
  left: 60%;
}

.map-page .map__location--mykolaiv {
  bottom: 31%;
  left: 52%;
}

.map-page .map__location--shostka {
  bottom: 94%;
  left: 60%;
}

.map-page .map__location--symu {
  bottom: 78%;
  left: 67%;
}

.map-page .map__location--chernihiv {
  bottom: 86%;
  left: 47%;
}

.map-page .map__location::before {
  content: "";
  display: block;
  height: 41px;
  width: 32px;
  background: url("../img/icons/location.svg") no-repeat center;
  background-size: contain;
}

.map-page .map__location:hover::before {
  content: "";
  background: url("../img/icons/location-active.svg") no-repeat center;
  background-size: contain;
}

.map-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.map-page img {
  display: block;
  height: auto;
  width: 100%;
  z-index: 2;
  position: relative;
}

.map-page h2 {
  max-width: 60vw;
  color: #F3C720;
  position: relative;
  z-index: 2;
}

.map-page h2 span {
  color: #8F87C0;
}



.map-page .map-list {
  background: rgb(235, 240, 245);
  height: 100%;
  max-width: 368px;
  border-radius: 20px;
  padding: 32px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.map-list ul {
  height: 330px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.map-list ul::-webkit-scrollbar {
  width: 6px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
}

.map-list ul::-webkit-scrollbar-thumb {
  background: rgb(215, 220, 225);
  border-radius: 5px;
}

.map-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  width: 100%;
  padding-right: 10px;
}

.map-list ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: rgb(246, 114, 119);
}

.map-list__btn {
  width: 100%;
  background: rgb(246, 114, 119);
  padding: 16px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  border-radius: 20px;
}

.map-list__name {
  font-weight: 800;
  line-height: 1.1;
  color: rgb(143, 135, 192);
  margin-bottom: 16px;
}

.map2 {
  position: absolute !important;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0 !important;
  opacity: 0.2;
}

.section__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.section__tabs h2 {
  color: #fff;
  margin-bottom: 36px;
  max-width: 615px;
}

.section__tabs h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 26px;
  color: rgb(246, 114, 119);
}

.section__tabs h3:not(:last-child) {
  margin-bottom: 16px;
}

.section__tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.section__tabs ul:not(:last-child) {
  margin-bottom: 12px;
}

.section__tabs ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.section__tabs ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(246, 114, 119);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.section__tabs p,
.section__tabs li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.crm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 80px;
  margin-bottom: 0;
  width: 100%;
}

.crm__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
}

.crm__block h2 {
  color: rgb(246, 114, 119);
}

.crm__block h2:not(:last-child) {
  padding-bottom: 16px;
}

.crm__block p {
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.crm__block p:not(:last-child) {
  padding-bottom: 16px;
}

.crm__images {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 48vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.crm__images img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.crm__info {
  max-width: 600px;
}

.crm__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.crm__list:not(:last-child) {
  margin-bottom: 12px;
}

.crm__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.crm__list li::before {
  content: "";
  position: relative;
  top: 8px;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(246, 114, 119);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.franchise__section--7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.franchise__section--7 h2 {
  color: #fff;
  text-align: center;
  z-index: 2;
}

.franchise__section--7 h2 span {
  color: #F3C720;
}

.franchise__section--7 h2:not(:last-child) {
  margin-bottom: 40px;
}

.packages {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

.package {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: #fff;
  border-radius: 40px;
  padding: 12px;
}

.package__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 90px;
  border-radius: 26px;
  color: #fff;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px;
}

.package__name--1 {
  background: rgb(243, 199, 32);
}

.package__name--2 {
  background: rgb(63, 183, 181);
}

.package__name--3 {
  background: rgb(246, 114, 119);
}

.package__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.package__subtitle {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.package__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.package__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.package__section:not(:last-child) {
  border-bottom: 1px solid rgb(235, 240, 245);
}

.package__section span {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: rgb(140, 141, 149);
}

.package__info {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.schema {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  bottom: 0;
  left: 0;
  /* overflow: auto; */
}

.schema.section__content {
  margin-bottom: 0;
  height: max-content !important;
  margin-top: 80px;
  /*
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; */
}

.schema__block {
  display: block;
  background: rgb(255, 255, 255);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  width: 100%;
  /* max-height: 75vh;
  overflow: hidden; */
}

.schema__table {
  overflow: auto;
  margin: 26px 50px 0;
  height: 100%;
}

.schema__table::-webkit-scrollbar {
  width: 12px;
}

.schema__table::-webkit-scrollbar-track {
  background: rgb(215, 220, 225);
  border-radius: 5px;
}

.schema__table::-webkit-scrollbar-thumb {
  background-color: rgb(143, 135, 192);
  border-radius: 5px;
}

.schema__block p {
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
  color: rgb(246, 114, 119);
  margin-top: 24px;
  padding-bottom: 60px;
  text-align: right;
  padding-right: 10px;
  display: inline-block;
  width: 100%;
}

.schema__subtitle {
  background-color: transparent;
  color: rgb(246, 114, 119);
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  margin-top: 22px;
  padding: 16px 0 8px;
}

table {
  width: 100%;
  border-spacing: 6px 4px;
  border-collapse: separate;
}

table td {
  background: rgb(235, 240, 245);
  border-radius: 10px;
}

table thead {
  position: sticky;
  top: 5px;
  -webkit-box-shadow: -2px -30px 20px 52px #fff;
  box-shadow: -2px -30px 20px 52px #fff;
  background: #fff;
  text-transform: uppercase;
}

table th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

table th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

table tr {
  text-align: left;
}

table th {
  background: rgb(235, 240, 245);
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  padding: 8px 20px;
  border-radius: 10px;
}

table thead tr th {
  background: rgb(143, 135, 192);
  color: #fff;
  border-spacing: 0;
  border-radius: 0;
  padding: 16px 20px;
  -webkit-box-shadow: 1px 0px 0px 4px rgb(143, 135, 192);
  box-shadow: 1px 0px 0px 4px rgb(143, 135, 192);
}

table thead tr th th:not(:first-child) {
  text-align: center;
}

table td.active {
  background: rgb(63, 183, 181);
}

table .final th,
table .final .active {
  background: rgb(243, 199, 32);
}

.red-button {
  background: rgb(252, 103, 103);
  border-radius: 12px;
  padding: 18px 32px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.red-button:hover {
  -webkit-box-shadow: 0px 3.7807309628px 11.3421926498px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3.7807309628px 11.3421926498px 0px rgba(0, 0, 0, 0.12);
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.faq__question {
  position: relative;
  width: calc(50% - 15px);
  height: 80px;
  border-radius: 24px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 60px 12px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.faq__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-height: 65%;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 16px;
  overflow-y: auto;
}

.fon9 {
  position: relative;
  top: -80px;
  right: 0;
  bottom: -20px;
  height: 100vh;
  width: 100%;
  border-bottom-right-radius: 240px;
  z-index: 0;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.terms-of-cooperation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  z-index: 2;
}

.terms-of-cooperation__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 100px;
}

.terms-of-cooperation h2 {
  color: rgb(252, 103, 103);
}

.terms-of-cooperation button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.terms-of-cooperation__blocks {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.terms-of-cooperation__block {
  border: 1px solid rgb(192, 205, 219);
  border-radius: 20px;
  width: 302px;
  height: 112px;
  padding: 20px 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  background: #fff;
}

.terms-of-cooperation__block img {
  display: block;
  width: 58px;
  height: 58px;
}

.terms-of-cooperation__block div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
  font-weight: 800;
  line-height: 20px;
}

.terms-of-cooperation__block div span {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
}

@-webkit-keyframes backgroundColor {
  0% {
    background: rgb(246, 66, 88);
  }

  50% {
    background: rgb(246, 114, 119);
  }

  100% {
    background: rgb(246, 66, 88);
  }
}

@keyframes backgroundColor {
  0% {
    background: rgb(246, 66, 88);
  }

  50% {
    background: rgb(246, 114, 119);
  }

  100% {
    background: rgb(246, 66, 88);
  }
}

@-webkit-keyframes fontSize {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fontSize {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.inStore {
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-orient: horizontal;*/
  /*gap: 16px;*/
  /*-webkit-box-align: center;*/
  /*    -ms-flex-align: center;*/
  /*        align-items: center;*/
  /*position: fixed;*/
  /*bottom: 0;*/
  /*left: 0;*/
  /*height: 78px;*/
  /*width: 371px;*/
  /*padding: 16px 24px;*/
  /*background: rgba(246, 66, 88, 1);*/
  /*animation: backgroundColor 1.8s infinite linear;*/
  /*border-top-right-radius: 24px;*/
  /*color: #fff;*/
  /*font-size: 18px;*/
  /*font-weight: 800;*/
  /*line-height: 1.2;*/
  /*z-index: 5;*/
  display: flex;
  position: fixed;
    bottom: 50px;
    z-index: 99;
    left: 20px;
  background: #fbe4e4;
  padding: 10px;
  border-radius: 31px;
  box-shadow: 0 0 6px 0 #00000061;
}

/*.inStore div {*/
/*  height: 46px;*/
/*  width: 46px;*/
/*  border-radius: 50%;*/
/*  background: #fff;*/
/*  display: -webkit-box;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*  -webkit-box-align: center;*/
/*      -ms-flex-align: center;*/
/*          align-items: center;*/
/*  -webkit-box-pack: center;*/
/*      -ms-flex-pack: center;*/
/*          justify-content: center;*/
/*  -ms-flex-negative: 0;*/
/*      flex-shrink: 0;*/
/*}*/

.inStore div img {
  -webkit-animation: fontSize 1.8s infinite forwards;
  animation: fontSize 1.8s infinite forwards;
}

.schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.schedule h2 {
  color: #fff;
}

.schedule__img {
  display: block;
  width: 90%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 1;
}

.schedule__new-points {
  display: block;
  border-radius: 10px;
  padding: 8px 14px 6px 14px;
  background: rgb(243, 199, 32);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: 88px;
}

.schedule__new-points--in {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0;
}

.schedule__new-points-years {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(90% - 50px);
  gap: 12px;
  margin-left: 50px;
}

.schedule__point-in-year {
  position: relative;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  color: rgb(10, 102, 100);
  font-weight: 600;
  line-height: 1;
  font-size: 16px;
  margin: 0 auto;
}

.schedule__point-in-year::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.schedule__point-in-year--1 {
  height: 32px;
  width: 32px;
}

.schedule__point-in-year--4 {
  height: 42px;
  width: 42px;
  font-size: 18px;
}

.schedule__point-in-year--9 {
  height: 52px;
  width: 52px;
  font-size: 20px;
}

.schedule__point-in-year--12 {
  height: 64px;
  width: 64px;
  font-size: 22px;
}

.schedule__point-in-year--17 {
  width: 90px;
  height: 90px;
  font-size: 30px;
}

.schedule__point-in-year--14 {
  width: 82px;
  height: 82px;
  font-size: 26px;
}

.schedule__point-in-year--23 {
  width: 98px;
  height: 98px;
  font-size: 34px;
}

.submitAplication .popup__content {
  max-width: 511px;
}

.submitAplication .popup__title {
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.submitAplication .popup__subtitle {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.submitAplication__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.submitAplication__form:not(:first-child) {
  margin-top: 24px;
}

.submitAplication__form button {
  width: 100%;
  margin-top: 24px;
}

.submitAplication .popup__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}

.popup__footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.popup__footer-contacts span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.popup__footer-contacts a {
  font-weight: 800;
  line-height: 1;
}

.popup__footer-contacts a:last-child {
  font-size: 16px;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

.popup__footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.popup__footer-links a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.sentApplication--small {
  display: none;
}

.popup__footer-links a:first-child {
  background: url("../img/icons/facebook.svg") no-repeat center;
}

.popup__footer-links a:last-child {
  background: url("../img/icons/instagram.svg") no-repeat center;
}

.sendConfirmation .popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.sendConfirmation .popup__text {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.sendConfirmation img {
  display: block;
  width: 66px;
  height: 66px;
  -o-object-fit: contain;
  object-fit: contain;
}

.menu-open .franchise {
  display: none;
}

.menu__navigation-block,
.menu__contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #000;
}

.menu__block-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  color: rgb(131, 91, 152);
}

.menu__block-title:not(:last-child) {
  margin-bottom: 24px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.menu__list li {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: #000;
}

.menu__contacts-block {
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu__contacts-block .popup__footer-contacts a {
  text-align: center;
}

.mobile__schema {
  display: none;
}

.menu-inStore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgb(246, 114, 119);
}

.menu-inStore::before {
  color: rgb(246, 114, 119);
}

.mobile__subtitle {
  display: none;
}

.partners-form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}

.paralax-img {
  position: absolute;
  z-index: 2;
}

.paralax-img--1 {
  right: 0;
  top: 30%;
}

.paralax-img--2 {
  top: 10%;
  right: 8%;
}

.paralax-img--3 {
  right: 0;
  bottom: 15%;
}

.paralax-img--4 {
  right: 30%;
  bottom: 6%;
}

.paralax-img--5 {
  left: 45%;
  bottom: 50%;
}

.paralax-img--6 {
  left: 55%;
  bottom: 30%;
}

.counters__item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.counters__item-block span {
  display: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
}

.schedule__img-mob {
  display: none;
}

.franchise__section--7 .section__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background: rgb(63, 183, 181);
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.4;
  outline: 0;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  -o-transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform;
}

.tippy-box[data-placement^=top]>.tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top]>.tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left]>.tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left]>.tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
  transform-origin: center left;
}

.tippy-box[data-placement^=right]>.tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right]>.tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
  -o-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: rgb(63, 183, 181);
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 6px 12px;
  z-index: 1;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

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

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

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

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

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

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

@media (max-height: 700px) and (min-width: 768.8px) {
  .package {
    padding: 0;
    border-radius: 26px;
  }

  .package__info {
    font-size: 22px;
  }
}

@media (min-width: 120em) {
  .popup__title:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .franchise__section--5 .tabs__body {
    padding: 3.75rem;
  }

  .franchise__section--5 .tabs__title {
    font-size: 1.5rem;
  }

  .franchise__section--5 .tabs__title::before {
    height: 2.875rem;
  }

  .franchise__section--5 .tabs__title::before {
    width: 2.875rem;
  }

  .franchise__section--5 .tabs__title::before {
    font-size: 1.25rem;
  }

  .header__container {
    padding-left: 8.125rem;
  }

  .header__container {
    padding-right: 8.125rem;
  }

  .franchise__page {
    font-size: 16.375rem;
  }

  .franchise__page {
    top: 5.625rem;
  }

  .franchise__page {
    left: 2.5rem;
  }

  .partners-form {
    margin-left: 8.125rem;
  }

  .section-content {
    margin-left: 6.6875rem;
  }

  .section-content__main-subtitle {
    font-size: 1.6875rem;
  }

  .section-content__main-title {
    font-size: 3.75rem;
  }

  .section-content__main-text {
    font-size: 2.6875rem;
  }

  .section-content p {
    font-size: 1.3125rem;
  }

  .section-content2 {
    margin-left: 8.125rem;
  }

  .section-content2 p {
    font-size: 1.625rem;
  }

  .section-content2__dates {
    gap: 2.5rem;
  }

  .section-content2__dates {
    margin-top: 2.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .section-slider {
    height: 35.625rem;
  }

  .section-slider {
    margin-right: 8.125rem;
  }

  .product-img {
    height: 35.625rem;
  }

  .product-img {
    width: 35.625rem;
  }

  .swiper-big {
    height: 35.625rem;
  }

  .swiper-big {
    width: 35.625rem;
  }

  .product-img-btns .img {
    height: 6.25rem;
  }

  .product-img-btns .img {
    width: 6.25rem;
  }

  .map-page {
    margin-left: 8.125rem;
  }

  .map-page {
    margin-right: 12.625rem;
  }

  .map-page__content {
    gap: 5rem;
  }

  .map-page h2 {
    margin-bottom: 2.5rem;
  }

  .map-list__btn {
    margin-top: 2.5rem;
  }

  .map-list__name {
    font-size: 1.875rem;
  }

  .section__tabs {
    margin-left: 8.125rem;
  }

  .section__tabs {
    margin-right: 11.25rem;
  }

  .crm {
    padding-left: 5rem;
  }

  .crm {
    padding-right: 5rem;
  }

  .crm__block p {
    font-size: 1.625rem;
  }

  .crm__list {
    font-size: 1.125rem;
  }

  .franchise__section--7 {
    padding-left: 17.5rem;
  }

  .franchise__section--7 {
    padding-right: 17.5rem;
  }

  .schema {
    margin-left: 8.125rem;
  }

  .schema {
    margin-right: 8.125rem;
  }

  .schema {
    gap: 2rem;
  }

  .red-button {
    font-size: 1.25rem;
  }

  .faq {
    margin-left: 8.125rem;
  }

  .faq {
    margin-right: 8.125rem;
  }

  .terms-of-cooperation {
    margin-left: 7.875rem;
  }

  .schedule {
    margin-left: 8.125rem;
  }

  .schedule {
    margin-right: 8.125rem;
  }

  .schedule__new-points {
    font-size: 1.625rem;
  }

  .submitAplication .popup__title {
    font-size: 2.75rem;
  }

  .popup__footer-contacts a:first-child {
    font-size: 1.5rem;
  }
}

@media (max-width: 1450px) {
  .fon11 {
    height: auto;
    width: 70%;
  }
}

@media (max-width: 1348px) {
  .schema__table {
    margin: 26px 16px 0;
  }

  table thead tr th {
    padding: 14px;
  }
}

@media (max-width: 1300px) {
  .header__nav-list {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .header__logo {
    margin-right: 16px;
  }

  .franchise__section--5 .tabs__content {
    max-width: 45vw;
    height: 80%;
  }

  .franchise__section--5 .tabs__body {
    overflow-y: auto;
    max-height: 100%;
    padding: 0 10px;
    margin: 10px 20px;
  }

  .section__tabs h2 {
    max-width: 40vw;
  }
}

@media screen and (max-width:1300px) and (max-height:730px) {
  .tabs__pagination {
    display: none;
  }
}

@media (max-width: 1250px) {
  .terms-of-cooperation__block {
    padding: 16px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .terms-of-cooperation__block img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1200px) {
  .tabs__pagination {
    display: none;
  }

  .terms-of-cooperation {
    gap: 30px;
  }

  .paralax-img--1 {
    top: 10%;
  }
}

@media screen and (max-width: 1200px) {
  .crm {
    gap: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .crm__block {
    gap: 40px;
    padding-right: 40px;
  }

  .crm__images {
    max-height: 40vh;
  }

  .crm__info {
    max-width: 400px;
  }
}

@media (max-width: 1177px) and (min-width: 768px) {
  .packages__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .package__name {
    height: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /*
  .schema__block {
    max-height: 77vh;
  } */
}

@media (max-width: 1177px) {
  .packages {
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 920.4px) {
  .franchise__section--5 .tabs__content {
    max-width: 50%;
    max-height: 70%;
    overflow: hidden;
    padding: 10px 0;
  }

  .franchise__section--5 .tabs__body {
    max-height: 100%;
    min-height: unset;
    overflow-y: auto;
  }

  .inStore {
    padding: 16px;
    height: auto;
    width: auto;
  }
}

@media (max-width: 1240px) and (max-height:650px) and (min-width:1100px) and (min-height:500px) {
  .section-content2 {
    margin-right: 30px;
  }

  .product-img {
    height: 350px !important;
    width: 350px !important;
  }

  .swiper-big {
    height: 100% !important;
  }

  .product-img-btns {
    width: 90px;
  }

  .section-slider {
    height: 90% !important;
  }
}

@media (max-width: 1200px) and (max-height:650px) {
  .partners-form {
    padding: 30px;
  }

  .partners-form p {
    padding-bottom: 16px;
  }

  .input {
    padding: 12px 20px;
  }

  .partners-form__footer {
    margin-top: 18px;
  }

  .popup__content {
    padding: 30px;
  }

  .section-content2 h2 {
    font-size: 26px !important;
  }

  .history-dates__text {
    font-size: 16px;
  }

  .section-content2 p {
    font-size: 20px !important;
  }
}

@media (max-width: 1150px) and (max-height:730px) and (min-width:1100px) and (min-height:650px) {
  .section-content2 {
    margin-right: 30px !important;
  }

  .terms-of-cooperation__info {
    margin-top: 0;
  }

  .faq__block {
    width: 100%;
  }

  .franchise__section--5 .tabs__body {
    padding: 20px !important;
  }
}

@media screen and (max-width:1000px) {
  .header__container {
    background: rgba(0, 0, 0, 0.05);
    height: 56px;
  }

  .header__nav-list {
    display: none;
  }

  .header__logo {
    height: 30px;
    width: 94px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .menu {
    display: block;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.09375rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
    width: 70%;
    left: 0;
    right: unset;
  }

  .icon-menu span::after {
    content: "";
    width: 5px;
    position: absolute;
    left: calc(100% + 3px);
    height: 0.09375rem;
    background-color: rgb(143, 135, 192);
  }

  .menu-open .icon-menu {
    position: absolute;
    right: 16px;
    top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgb(246, 114, 119);
    border-radius: 50%;
  }

  .menu-open .icon-menu span {
    display: none;
  }

  .menu-open .icon-menu::before,
  .menu-open .icon-menu::after {
    position: relative;
    width: 60%;
    top: unset;
    bottom: unset;
  }

  .menu-open .icon-menu::before {
    top: 1.5px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fff;
  }

  .menu-open .icon-menu::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
  }
}

@media (max-width: 1100px) {
  table thead tr th {
    padding: 8px;
  }

  .terms-of-cooperation {
    -ms-grid-columns: 1fr 30%;
    grid-template-columns: 1fr 30%;
  }

  .terms-of-cooperation__info {
    margin-top: 0;
  }
}

@media screen and (max-width:991px) and (max-height: 767.9px) {
  .crm__info {
    max-width: 100%;
  }

  .crm {
    gap: 40px !important;
  }

  .crm__block {
    gap: 30px;
  }
}

@media (max-width: 991px) and (max-height:630px) and (min-width:767.9px) and (min-height:520px) {
  .swiper-navigations {
    top: 50% !important;
    gap: 240px;
  }

  .inStore {
    width: max-content;
    height: max-content;
    padding: 15px 20px;
  }

  .section__content {
    margin-top: 60px;
  }

  h2 {
    font-size: 32px !important;
  }
}

@media (max-width: 991px) and (max-height:530px) and (min-width:767.9px) and (min-height:500px) {
  .section-slider {
    display: none;
  }

  .section__content {
    margin-top: 60px;
  }

  .crm__images {
    display: none;
  }

  .map-page .map-list {
    display: none;
  }

  .map-page h2 {
    max-width: 100%;
  }

  .schedule__new-points {
    margin-top: 20px;
  }

  .franchise__section--5 .tabs__content {
    gap: 5px !important;
  }

  .franchise__section--5 .tabs__body {
    max-height: 30% !important;
    padding-top: 15px !important;
    margin: 10px 0;
  }

  .section__tabs {
    justify-content: space-between;
  }

  .section__tabs h2 {
    max-width: 100%;
  }

  .franchise__section--7 .tabs__content,
  .schedule__img {
    z-index: 1;
  }

  .package__name {
    height: 60px !important;
    border-radius: 20px;
  }

  .package__section {
    padding: 10px !important;
  }

  .schema.section__content {
    /* height: calc(100vh - 60px); */
    height: max-content;
    gap: 10px;
  }

  .terms-of-cooperation__block {
    padding: 12px !important;
  }

  .terms-of-cooperation__block div span {
    font-size: 40px;
  }

  .partners-form {
    margin-top: 60px !important;
  }

  .partners-form h2 {
    font-size: 30px !important;
  }

  .section-content p,
  .section-content button {
    margin-left: 10px;
  }

  .inStore {
    width: max-content;
    height: max-content;
    padding: 15px 20px;
  }

  .fon11 {
    display: none;
  }

  .sentApplication--small {
    display: flex;
  }

  .sentApplication--full {
    display: none;
  }

  .partners-form .form-input {
    display: none;
  }
}

@media (max-width: 991.9px) and (min-width:767.9px) {
  .section-content2 {
    max-width: 100%;
  }

  .section-slider {
    max-height: 40vh;
  }

  .product-img-btns-wrapper {
    display: none;
  }

  .swiper-big {
    height: auto !important;
  }

  .franchise__section--5 .tabs__body {
    max-height: 80vh;
  }

  .franchise__section--5 .tabs__content {
    height: 100%;
  }
}

/* @media (min-height: 800px) and (min-width: 900.1px) {
  .section-content {
    max-width: 40%;
    margin-top: 140px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
} */

@media (min-height: 800px) and (max-width: 900px) {
  .section-content {
    max-width: 50%;
    margin-top: 140px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .section-slider {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 60px auto 0;
    width: calc(100vw - 32px);
  }

  .section__tabs h2 {
    max-width: 100%;
  }
}

.franchise__section--5 .tabs__body::-webkit-scrollbar {
  width: 8px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
}

.franchise__section--5 .tabs__body::-webkit-scrollbar-thumb {
  background-color: rgb(243, 199, 32);
  border-radius: 5px;
}

@media (max-width: 920.3px) {
  .tabs__main-text {
    font-size: 16px;
  }

  .franchise__section--5 .tabs__content {
    position: relative;
    bottom: unset;
    right: unset;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .franchise__section--5 .tabs__body {
    background: #fff;
    border-radius: 20px;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    /* max-height: 420px; */
    overflow-y: auto;
  }

  .franchise__section--5 .tabs__title {
    width: 60%;
  }

  .franchise__section--5 .tabs__title._tab-active::before {
    background: rgb(243, 199, 32);
    color: #fff;
  }
}

@media (max-width: 900px) {
  .product-img-btns .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product-img-btns .img img {
    width: 60px;
    height: 60px;
  }

  .product-img-btns {
    width: 100%;
  }

  .product-img-btns-wrapper {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    width: 70%;
    margin: 0 auto;
  }

  .swiper-navigations {
    top: unset;
  }
}

@media (max-width: 830px) {
  .fon9 {
    position: relative;
    width: calc(100% + 32px);
    height: auto;
    max-width: unset;
    border-top-right-radius: 66px;
    border-bottom-right-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    top: 0;
    bottom: 0;
    margin-bottom: -20px;
  }

  .terms-of-cooperation {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 820.3px) {
  .fon5.active {
    display: none;
  }

  .franchise__section--5 .tabs__title {
    width: 100%;
  }
}

@media (max-width: 767.9px) {
  ._icon-world-wide:before {
    height: 40px;
    width: 40px;
  }

  .schema.section__content {
    height: max-content;
  }

  .section-content,
  .section-content2 {
    z-index: 1;
  }

  .terms-of-cooperation__block {
    width: 100%;
  }

  .partners-form p {
    text-align: center;
  }

  .map-page {
    width: auto;
  }

  .franchise__section--5 .tabs__title::after {
    position: absolute;
    right: 0;
    content: url("../img/icons/arrow-down-sign-to-navigate.svg");
  }

  .franchise__section--5 .tabs__title._tab-active::after {
    content: url("../img/icons/arrow-down-sign-to-navigate-active.svg");
  }
}

@media (min-width: 20em) and (max-width: 120em) {
  @supports (margin-bottom: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem)) {
    .popup__title:not(:last-child) {
      margin-bottom: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    }
  }

  @supports not (margin-bottom: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem)) {
    .popup__title:not(:last-child) {
      margin-bottom: calc(0.75rem + 0.75 * (100vw - 20rem) / 100);
    }
  }

  @supports (padding: clamp(1.25rem, 0.75rem + 2.5vw, 3.75rem)) {
    .franchise__section--5 .tabs__body {
      padding: clamp(1.25rem, 0.75rem + 2.5vw, 3.75rem);
    }
  }

  @supports not (padding: clamp(1.25rem, 0.75rem + 2.5vw, 3.75rem)) {
    .franchise__section--5 .tabs__body {
      padding: calc(1.25rem + 2.5 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem)) {
    .franchise__section--5 .tabs__title {
      font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    }
  }

  @supports not (font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem)) {
    .franchise__section--5 .tabs__title {
      font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 100);
    }
  }

  @supports (height: clamp(2rem, 1.825rem + 0.875vw, 2.875rem)) {
    .franchise__section--5 .tabs__title::before {
      height: clamp(2rem, 1.825rem + 0.875vw, 2.875rem);
    }
  }

  @supports not (height: clamp(2rem, 1.825rem + 0.875vw, 2.875rem)) {
    .franchise__section--5 .tabs__title::before {
      height: calc(2rem + 0.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (width: clamp(2rem, 1.825rem + 0.875vw, 2.875rem)) {
    .franchise__section--5 .tabs__title::before {
      width: clamp(2rem, 1.825rem + 0.875vw, 2.875rem);
    }
  }

  @supports not (width: clamp(2rem, 1.825rem + 0.875vw, 2.875rem)) {
    .franchise__section--5 .tabs__title::before {
      width: calc(2rem + 0.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem)) {
    .franchise__section--5 .tabs__title::before {
      font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    }
  }

  @supports not (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem)) {
    .franchise__section--5 .tabs__title::before {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 100);
    }
  }

  @supports (padding-left: clamp(1.25rem, -0.125rem + 6.875vw, 8.125rem)) {
    .header__container {
      padding-left: clamp(1.25rem, -0.125rem + 6.875vw, 8.125rem);
    }
  }

  @supports not (padding-left: clamp(1.25rem, -0.125rem + 6.875vw, 8.125rem)) {
    .header__container {
      padding-left: calc(1.25rem + 6.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (padding-right: clamp(1.25rem, -0.125rem + 6.875vw, 8.125rem)) {
    .header__container {
      padding-right: clamp(1.25rem, -0.125rem + 6.875vw, 8.125rem);
    }
  }

  @supports not (padding-right: clamp(1.25rem, -0.125rem + 6.875vw, 8.125rem)) {
    .header__container {
      padding-right: calc(1.25rem + 6.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(9.375rem, 7.975rem + 7vw, 16.375rem)) {
    .franchise__page {
      font-size: clamp(9.375rem, 7.975rem + 7vw, 16.375rem);
    }
  }

  @supports not (font-size: clamp(9.375rem, 7.975rem + 7vw, 16.375rem)) {
    .franchise__page {
      font-size: calc(9.375rem + 7 * (100vw - 20rem) / 100);
    }
  }

  @supports (top: clamp(1.25rem, 0.375rem + 4.375vw, 5.625rem)) {
    .franchise__page {
      top: clamp(1.25rem, 0.375rem + 4.375vw, 5.625rem);
    }
  }

  @supports not (top: clamp(1.25rem, 0.375rem + 4.375vw, 5.625rem)) {
    .franchise__page {
      top: calc(1.25rem + 4.375 * (100vw - 20rem) / 100);
    }
  }

  @supports (left: clamp(1.25rem, 1rem + 1.25vw, 2.5rem)) {
    .franchise__page {
      left: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    }
  }

  @supports not (left: clamp(1.25rem, 1rem + 1.25vw, 2.5rem)) {
    .franchise__page {
      left: calc(1.25rem + 1.25 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .partners-form {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .partners-form {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(1.25rem, 0.1625rem + 5.4375vw, 6.6875rem)) {
    .section-content {
      margin-left: clamp(1.25rem, 0.1625rem + 5.4375vw, 6.6875rem);
    }
  }

  @supports not (margin-left: clamp(1.25rem, 0.1625rem + 5.4375vw, 6.6875rem)) {
    .section-content {
      margin-left: calc(1.25rem + 5.4375 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1rem, 0.8625rem + 0.6875vw, 1.6875rem)) {
    .section-content__main-subtitle {
      font-size: clamp(1rem, 0.8625rem + 0.6875vw, 1.6875rem);
    }
  }

  @supports not (font-size: clamp(1rem, 0.8625rem + 0.6875vw, 1.6875rem)) {
    .section-content__main-subtitle {
      font-size: calc(1rem + 0.6875 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(2.25rem, 1.95rem + 1.5vw, 3.75rem)) {
    .section-content__main-title {
      font-size: clamp(2.25rem, 1.95rem + 1.5vw, 3.75rem);
    }
  }

  @supports not (font-size: clamp(2.25rem, 1.95rem + 1.5vw, 3.75rem)) {
    .section-content__main-title {
      font-size: calc(2.25rem + 1.5 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1.625rem, 1.4125rem + 1.0625vw, 2.6875rem)) {
    .section-content__main-text {
      font-size: clamp(1.625rem, 1.4125rem + 1.0625vw, 2.6875rem);
    }
  }

  @supports not (font-size: clamp(1.625rem, 1.4125rem + 1.0625vw, 2.6875rem)) {
    .section-content__main-text {
      font-size: calc(1.625rem + 1.0625 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.3125rem)) {
    .section-content p {
      font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.3125rem);
    }
  }

  @supports not (font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.3125rem)) {
    .section-content p {
      font-size: calc(1rem + 0.3125 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .section-content2 {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .section-content2 {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem)) {
    .section-content2 p {
      font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem)) {
    .section-content2 p {
      font-size: calc(1.25rem + 0.375 * (100vw - 20rem) / 100);
    }
  }

  @supports (gap: clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) {
    .section-content2__dates {
      gap: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    }
  }

  @supports not (gap: clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) {
    .section-content2__dates {
      gap: calc(1.5rem + 1 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-top: clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) {
    .section-content2__dates {
      margin-top: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    }
  }

  @supports not (margin-top: clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) {
    .section-content2__dates {
      margin-top: calc(1.5rem + 1 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(2rem, 1.85rem + 0.75vw, 2.75rem)) {
    h2 {
      font-size: clamp(2rem, 1.85rem + 0.75vw, 2.75rem);
    }
  }

  @supports not (font-size: clamp(2rem, 1.85rem + 0.75vw, 2.75rem)) {
    h2 {
      font-size: calc(2rem + 0.75 * (100vw - 20rem) / 100);
    }
  }

  @supports (height: clamp(21.25rem, 18.375rem + 14.375vw, 35.625rem)) {
    .section-slider {
      height: clamp(21.25rem, 18.375rem + 14.375vw, 35.625rem);
    }
  }

  @supports not (height: clamp(21.25rem, 18.375rem + 14.375vw, 35.625rem)) {
    .section-slider {
      height: calc(21.25rem + 14.375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .section-slider {
      margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .section-slider {
      margin-right: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (height: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .product-img {
      height: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem);
    }
  }

  @supports not (height: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .product-img {
      height: calc(18.75rem + 16.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (width: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .product-img {
      width: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem);
    }
  }

  @supports not (width: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .product-img {
      width: calc(18.75rem + 16.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (height: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .swiper-big {
      height: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem);
    }
  }

  @supports not (height: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .swiper-big {
      height: calc(18.75rem + 16.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (width: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .swiper-big {
      width: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem);
    }
  }

  @supports not (width: clamp(18.75rem, 15.375rem + 16.875vw, 35.625rem)) {
    .swiper-big {
      width: calc(18.75rem + 16.875 * (100vw - 20rem) / 100);
    }
  }

  @supports (height: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem)) {
    .product-img-btns .img {
      height: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem);
    }
  }

  @supports not (height: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem)) {
    .product-img-btns .img {
      height: calc(3.75rem + 2.5 * (100vw - 20rem) / 100);
    }
  }

  @supports (width: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem)) {
    .product-img-btns .img {
      width: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem);
    }
  }

  @supports not (width: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem)) {
    .product-img-btns .img {
      width: calc(3.75rem + 2.5 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .map-page {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }

    .section-content2 {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .map-page {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }

    .section-content2 {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-right: clamp(0.0000000625rem, -2.524999925rem + 12.6249999375vw, 12.625rem)) {
    .map-page {
      margin-right: clamp(0.0000000625rem, -2.524999925rem + 12.6249999375vw, 12.625rem);
    }

    .section-content2 {
      margin-right: clamp(0.0000000625rem, -2.524999925rem + 12.6249999375vw, 12.625rem);
    }
  }

  @supports not (margin-right: clamp(0.0000000625rem, -2.524999925rem + 12.6249999375vw, 12.625rem)) {
    .map-page {
      margin-right: calc(0.0000000625rem + 12.6249999375 * (100vw - 20rem) / 100);
    }

    .section-content2 {
      margin-right: calc(0.0000000625rem + 12.6249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (gap: clamp(1.875rem, 1.25rem + 3.125vw, 5rem)) {
    .map-page__content {
      gap: clamp(1.875rem, 1.25rem + 3.125vw, 5rem);
    }
  }

  @supports not (gap: clamp(1.875rem, 1.25rem + 3.125vw, 5rem)) {
    .map-page__content {
      gap: calc(1.875rem + 3.125 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-bottom: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem)) {
    .map-page h2 {
      margin-bottom: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    }
  }

  @supports not (margin-bottom: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem)) {
    .map-page h2 {
      margin-bottom: calc(1.875rem + 0.625 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-top: clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) {
    .map-list__btn {
      margin-top: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    }
  }

  @supports not (margin-top: clamp(1.5rem, 1.3rem + 1vw, 2.5rem)) {
    .map-list__btn {
      margin-top: calc(1.5rem + 1 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1.5rem, 1.425rem + 0.375vw, 1.875rem)) {
    .map-list__name {
      font-size: clamp(1.5rem, 1.425rem + 0.375vw, 1.875rem);
    }
  }

  @supports not (font-size: clamp(1.5rem, 1.425rem + 0.375vw, 1.875rem)) {
    .map-list__name {
      font-size: calc(1.5rem + 0.375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .section__tabs {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .section__tabs {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-right: clamp(0.0000000625rem, -2.249999925rem + 11.2499999375vw, 11.25rem)) {
    .section__tabs {
      margin-right: clamp(0.0000000625rem, -2.249999925rem + 11.2499999375vw, 11.25rem);
    }
  }

  @supports not (margin-right: clamp(0.0000000625rem, -2.249999925rem + 11.2499999375vw, 11.25rem)) {
    .section__tabs {
      margin-right: calc(0.0000000625rem + 11.2499999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (padding-left: clamp(0.0000000625rem, -0.999999925rem + 4.9999999375vw, 5rem)) {
    .crm {
      padding-left: clamp(0.0000000625rem, -0.999999925rem + 4.9999999375vw, 5rem);
    }
  }

  @supports not (padding-left: clamp(0.0000000625rem, -0.999999925rem + 4.9999999375vw, 5rem)) {
    .crm {
      padding-left: calc(0.0000000625rem + 4.9999999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (padding-right: clamp(0.0000000625rem, -0.999999925rem + 4.9999999375vw, 5rem)) {
    .crm {
      padding-right: clamp(0.0000000625rem, -0.999999925rem + 4.9999999375vw, 5rem);
    }
  }

  @supports not (padding-right: clamp(0.0000000625rem, -0.999999925rem + 4.9999999375vw, 5rem)) {
    .crm {
      padding-right: calc(0.0000000625rem + 4.9999999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem)) {
    .crm__block p {
      font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem)) {
    .crm__block p {
      font-size: calc(1.25rem + 0.375 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem)) {
    .crm__list {
      font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    }
  }

  @supports not (font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem)) {
    .crm__list {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 100);
    }
  }

  @supports (padding-left: clamp(1rem, -2.3rem + 16.5vw, 17.5rem)) {
    .franchise__section--7 {
      padding-left: clamp(1rem, -2.3rem + 16.5vw, 17.5rem);
    }
  }

  @supports not (padding-left: clamp(1rem, -2.3rem + 16.5vw, 17.5rem)) {
    .franchise__section--7 {
      padding-left: calc(1rem + 16.5 * (100vw - 20rem) / 100);
    }
  }

  @supports (padding-right: clamp(1rem, -2.3rem + 16.5vw, 17.5rem)) {
    .franchise__section--7 {
      padding-right: clamp(1rem, -2.3rem + 16.5vw, 17.5rem);
    }
  }

  @supports not (padding-right: clamp(1rem, -2.3rem + 16.5vw, 17.5rem)) {
    .franchise__section--7 {
      padding-right: calc(1rem + 16.5 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schema {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schema {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schema {
      margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schema {
      margin-right: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (gap: clamp(1rem, 0.8rem + 1vw, 2rem)) {
    .schema {
      gap: clamp(1rem, 0.8rem + 1vw, 2rem);
    }
  }

  @supports not (gap: clamp(1rem, 0.8rem + 1vw, 2rem)) {
    .schema {
      gap: calc(1rem + 1 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem)) {
    .red-button {
      font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    }
  }

  @supports not (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem)) {
    .red-button {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .faq {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .faq {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .faq {
      margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .faq {
      margin-right: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.574999925rem + 7.8749999375vw, 7.875rem)) {
    .terms-of-cooperation {
      margin-left: clamp(0.0000000625rem, -1.574999925rem + 7.8749999375vw, 7.875rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.574999925rem + 7.8749999375vw, 7.875rem)) {
    .terms-of-cooperation {
      margin-left: calc(0.0000000625rem + 7.8749999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schedule {
      margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-left: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schedule {
      margin-left: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schedule {
      margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem);
    }
  }

  @supports not (margin-right: clamp(0.0000000625rem, -1.624999925rem + 8.1249999375vw, 8.125rem)) {
    .schedule {
      margin-right: calc(0.0000000625rem + 8.1249999375 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem)) {
    .schedule__new-points {
      font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem)) {
    .schedule__new-points {
      font-size: calc(1.25rem + 0.375 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(2rem, 1.85rem + 0.75vw, 2.75rem)) {
    .submitAplication .popup__title {
      font-size: clamp(2rem, 1.85rem + 0.75vw, 2.75rem);
    }
  }

  @supports not (font-size: clamp(2rem, 1.85rem + 0.75vw, 2.75rem)) {
    .submitAplication .popup__title {
      font-size: calc(2rem + 0.75 * (100vw - 20rem) / 100);
    }
  }

  @supports (font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem)) {
    .popup__footer-contacts a:first-child {
      font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem)) {
    .popup__footer-contacts a:first-child {
      font-size: calc(1.25rem + 0.25 * (100vw - 20rem) / 100);
    }
  }
}

@media (max-width:850px) and (min-width:767.9px) {
  .map-page__content {
    flex-direction: column;
  }

  .map-page .map-list {
    width: 100%;
    max-width: 100%;
  }

  .map-list ul {
    height: 24vh;
  }
}

@media (max-width:1100px) and (min-width:767.9px) and (max-height:710px) and (min-height:500px) {
  .section-content2 {
    max-width: 100%;
  }

  .section-content2__dates {
    margin-top: 12px;
    gap: 18px !important;
  }

  .history-dates {
    padding-left: 16px;
    gap: 6px;
  }

  .product-img-btns-wrapper {
    margin-left: 0;
    width: 40vw;
  }

  .section-slider {
    gap: 24px !important;
  }

  .product-img {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
  }

  .swiper-big {
    height: 250px !important;
  }

  .history-dates__title {
    font-size: 20px !important;
  }

  .history-dates__text {
    font-size: 16px !important;
  }

  .product-img-btns-wrapper {
    display: none;
  }

  .section-content2 h2 {
    font-size: 32px;
  }
}

@media (max-width:950px) and (min-width:767.9px) and (max-height:750px) and (min-height:500px) {
  .product-img {
    height: 240px !important;
    width: 240px !important;
  }

  .swiper-big {
    height: 240px !important;
  }

  .section-content2__dates {
    gap: 18px !important;
  }

  .product-img-btns-wrapper {
    display: none;
  }

  .section-content2 {
    max-width: 100%;
  }

  .section-slider {
    margin-top: 20px !important;
  }

  .schedule__img {
    display: block !important;
  }

  .schedule__img-mob {
    display: none !important;
  }
}

@media (max-width:920px) and (min-width:767.9px) and (min-height:540px) and (max-height: 800px) {
  .map-page__content {
    width: 100%;
  }

  .map-page h2 {
    width: 100%;
  }

  .map-page .map {
    margin: 0 auto;
  }

  .map-page .map-block {
    max-width: 100%;
  }

  .map-page .map-list {
    display: none !important;
  }

  .section__tabs h2 {
    max-width: 100%;
  }
}

@media (max-width: 61.99875em) {
  .franchise__section--2 .section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .franchise__pages {
    right: 20px;
  }

  .fon11 {
    bottom: 0;
    right: 50%;
    width: 90%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  /* .section-content p {
    margin-left: 10px;
  } */

  .section-slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 48px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 40px auto 0;
    width: calc(100vw - 32px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .map-page .map {
    width: 450px;
  }

  .map-page .map__location {
    width: 25px;
    height: 22px;
  }

  .map-page .map__location::before {
    width: 25px;
    height: 22px;
  }

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

  .schedule h2:not(:last-child) {
    margin-bottom: 24px;
  }

  .schedule__new-points {
    margin: 32px auto 0;
  }

  .schedule__new-points-years {
    margin-top: 24px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
  }

  .schedule__point-in-year {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .paralax-img--4 {
    right: 60%;
  }

  .paralax-img--6 {
    left: 20%;
  }

  .counters__item-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .counters__item-block span {
    display: block;
  }
}

@media screen and (max-width:900px) {
  .schedule__img {
    display: none;
  }

  .schedule__img-mob {
    display: block;
    width: auto;
    height: 70%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
  }
}

@media (max-width: 47.99875em) {
  .icon-menu {
    cursor: default;
  }

  .popup__close {
    height: 44px;
    width: 44px;
    -webkit-transform: translate(20%, -20%);
    -ms-transform: translate(20%, -20%);
    transform: translate(20%, -20%);
  }

  .popup__close::before,
  .popup__close::after {
    height: 20px;
  }

  .popup__content {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .franchise__section--5 .tabs__body {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }

  .franchise__section--5 .tabs__title {
    width: 100%;
    padding-right: 20px;
  }

  .fp-init body {
    overflow-y: scroll;
  }

  [data-fp] {
    min-height: 100%;
    height: 100%;
  }

  .touch [data-fp] {
    -webkit-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
  }

  .fp-init [data-fp-section] {
    position: relative;
    bottom: unset;
  }

  .section__content {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .franchise__section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .franchise__section--1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .franchise__section--11 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .franchise__section--3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .franchise__section--9 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .franchise__pages {
    display: none;
  }

  .franchise__page {
    z-index: 0;
  }

  .franchise__section-fon {
    position: relative;
    width: 100%;
    height: auto;
  }

  .decor--1 {
    z-index: 0;
    width: 134px;
    height: 172px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .decor--2 {
    display: none;
  }

  .decor--1-1 {
    display: none;
  }

  .decor--1-2 {
    display: none;
  }

  .partners-form {
    width: 100%;
    border-radius: 24px;
    padding: 24px 20px;
    margin: 0 auto 34px;
    -webkit-box-shadow: 15px -10px 20px 10px rgb(252, 134, 0);
    box-shadow: 15px -10px 20px 10px rgb(252, 134, 0);
  }

  .partners-form h2:not(:last-child) {
    text-align: center;
  }

  .fon11 {
    position: relative;
    width: 100%;
    height: auto;
    bottom: 0;
    right: unset;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -o-object-position: center;
    object-position: center;
  }

  .pagging {
    display: none;
  }

  .section-content {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section-content div {
    padding: 10px 18px 8px;
  }

  .section-content__main-title {
    margin-left: 0;
  }

  .section-content__main-text {
    margin-left: 0;
  }

  .section-content p {
    margin-left: 0;
    margin-top: 14px;
    text-align: center;
  }

  .section-content button {
    margin-left: 0;
  }

  .section-content2 {
    max-width: 100%;
  }

  .section-content2__dates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-slider {
    top: unset;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .product-img-btns-wrapper {
    width: 100%;
  }

  .map-page .map-block {
    max-width: 100%;
  }

  .map-page .map__location {
    width: 17.2px;
    height: 17.2px;
  }

  .map-page .map__location::before {
    width: 17.2px;
    height: 17.2px;
  }

  .map-page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .map-page h2 {
    max-width: 100%;
  }

  .map-page .map-list {
    padding: 32px 20px 24px;
    max-width: 100%;
    width: 100%;
  }

  .map-list ul li {
    font-size: 16px;
  }

  .section__tabs p,
  .section__tabs li {
    font-size: 16px;
  }

  .crm__block {
    gap: 30px;
    z-index: 2;
    padding-right: 0;
  }

  .crm__images {
    max-width: 120%;
    height: auto;
    -o-object-position: top left;
    object-position: top left;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .crm__info {
    max-width: 100%;
  }

  .packages {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .package__section {
    padding: 24px;
  }

  .schema h2 {
    text-align: center;
    color: #fff;
  }

  .schema__block {
    display: none;
  }

  .faq {
    height: 100%;
  }

  .faq__question {
    width: 100%;
    min-height: 80px;
    height: max-content;
  }

  .faq h2 {
    z-index: 2;
    text-align: center;
  }

  .faq__block {
    row-gap: 12px;
    margin-bottom: 40px;
    max-height: 100%;
  }

  .fon9 {
    max-height: 360px;
  }

  .terms-of-cooperation {
    margin-left: 0;
    margin-right: 0;
  }

  .terms-of-cooperation__info {
    margin-left: 0;
  }

  .inStore {
    /*position: relative;*/
    /*width: calc(100% + 32px);*/
    /*height: 76px;*/
    /*margin-left: -16px;*/
    /*margin-right: -16px;*/
    /*border-top-left-radius: 0;*/
    /*-webkit-box-pack: center;*/
    /*    -ms-flex-pack: center;*/
    /*        justify-content: center;*/
  }

  .schedule__new-points-years {
    display: flex;
    flex-direction: column;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 12px;
    flex-wrap: wrap;
    max-height: 230px;
  }

  .submitAplication .popup__content {
    max-width: 100%;
  }

  .submitAplication .popup__subtitle {
    font-size: 18px;
  }

  .submitAplication__form button {
    margin-top: 0;
  }

  .popup__footer-links a {
    width: 46px;
    height: 46px;
  }

  .mobile__schema {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 40px;
  }

  .mobile__subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: center;
    color: #fff;
  }

  .paralax-img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .paralax-img--1 {
    width: 158px;
    height: 110px;
    right: -40px;
    z-index: 1;
  }

  .paralax-img--2 {
    width: 50px;
    height: auto;
    top: 5%;
  }

  .paralax-img--3 {
    width: 101px;
    height: 120px;
    top: 20%;
    bottom: unset;
    right: 10%;
  }

  .paralax-img--4 {
    display: none;
  }

  .paralax-img--5 {
    display: none;
  }

  .paralax-img--6 {
    left: 5%;
    bottom: 85%;
    width: 73px;
    height: 70px;
  }

  .counters__item-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .schedule__img-mob {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 29.99875em) {
  .fon11 {
    width: 150%;
  }
}

@media (max-width: 20em) {
  .popup__title:not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .franchise__section--5 .tabs__body {
    padding: 1.25rem;
  }

  .franchise__section--5 .tabs__title {
    font-size: 1.125rem;
  }

  .franchise__section--5 .tabs__title::before {
    height: 2rem;
  }

  .franchise__section--5 .tabs__title::before {
    width: 2rem;
  }

  .franchise__section--5 .tabs__title::before {
    font-size: 1rem;
  }

  .header__container {
    padding-left: 1.25rem;
  }

  .header__container {
    padding-right: 1.25rem;
  }

  .franchise__page {
    font-size: 9.375rem;
  }

  .franchise__page {
    top: 1.25rem;
  }

  .franchise__page {
    left: 1.25rem;
  }

  .partners-form {
    margin-left: 0.0000000625rem;
  }

  .section-content {
    margin-left: 1.25rem;
  }

  .section-content__main-subtitle {
    font-size: 1rem;
  }

  .section-content__main-title {
    font-size: 2.25rem;
  }

  .section-content__main-text {
    font-size: 1.625rem;
  }

  .section-content p {
    font-size: 1rem;
  }

  .section-content2 {
    margin-left: 0.0000000625rem;
  }

  .section-content2 p {
    font-size: 1.25rem;
  }

  .section-content2__dates {
    gap: 1.5rem;
  }

  .section-content2__dates {
    margin-top: 1.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-slider {
    height: 21.25rem;
  }

  .section-slider {
    margin-right: 0.0000000625rem;
  }

  .product-img {
    height: 18.75rem;
  }

  .product-img {
    width: 18.75rem;
  }

  .swiper-big {
    height: 18.75rem;
  }

  .swiper-big {
    width: 18.75rem;
  }

  .product-img-btns .img {
    height: 3.75rem;
  }

  .product-img-btns .img {
    width: 3.75rem;
  }

  .map-page {
    margin-left: 0.0000000625rem;
  }

  .map-page {
    margin-right: 0.0000000625rem;
  }

  .map-page__content {
    gap: 1.875rem;
  }

  .map-page h2 {
    margin-bottom: 1.875rem;
  }

  .map-list__btn {
    margin-top: 1.5rem;
  }

  .map-list__name {
    font-size: 1.5rem;
  }

  .section__tabs {
    margin-left: 0.0000000625rem;
  }

  .section__tabs {
    margin-right: 0.0000000625rem;
  }

  .crm {
    padding-left: 0.0000000625rem;
  }

  .crm {
    padding-right: 0.0000000625rem;
  }

  .crm__block p {
    font-size: 1.25rem;
  }

  .crm__list {
    font-size: 1rem;
  }

  .franchise__section--7 {
    padding-left: 1rem;
  }

  .franchise__section--7 {
    padding-right: 1rem;
  }

  .schema {
    margin-left: 0.0000000625rem;
  }

  .schema {
    margin-right: 0.0000000625rem;
  }

  .schema {
    gap: 1rem;
  }

  .red-button {
    font-size: 1rem;
  }

  .faq {
    margin-left: 0.0000000625rem;
  }

  .faq {
    margin-right: 0.0000000625rem;
  }

  .terms-of-cooperation {
    margin-left: 0.0000000625rem;
  }

  .schedule {
    margin-left: 0.0000000625rem;
  }

  .schedule {
    margin-right: 0.0000000625rem;
  }

  .schedule__new-points {
    font-size: 1.25rem;
  }

  .submitAplication .popup__title {
    font-size: 2rem;
  }

  .popup__footer-contacts a:first-child {
    font-size: 1.25rem;
  }
}

@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .franchise__section--11 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .partners-form {
    margin: 100px auto 0;
    padding: 30px;
  }
}

@media screen and (max-width: 900px) {
  .schedule__new-points--in {
    position: relative;
    left: 0;
    margin: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 1179px) and (min-width: 768px) {
  .franchise__section--7 h2:not(:last-child) {
    margin-bottom: 20px;
  }

  .package__section {
    padding: 8px;
    gap: 2px;
  }

  .section-content2 {
    margin-right: 20px !important;
  }
}

@media (min-height: 800px) and (max-width: 1200px) and (min-width: 767.9px) {
  .franchise__section-fon {
    height: 80%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right bottom;
    object-position: right bottom;
  }
}

@media (max-height: 750px) {
  .decor--1-1 {
    width: 160px;
    height: 160px;
    bottom: -85px;
    left: -85px;
  }

  .decor--1-2 {
    width: 120px;
    height: 120px;
    top: -40px;
    right: -40px;
  }

  .faq__block {
    max-height: 90%;
  }

  .crm {
    gap: 60px;
  }
}

@media (max-height: 700px) {
  .tabs__navigation {
    gap: 16px;
  }

  .franchise__section--5 .tabs__body {
    padding-top: 30px;
    padding-bottom: 40px;
    margin: 0;
  }

  .section__tabs h2 {
    margin-bottom: 20px;
  }

  .franchise__section--7 h2:not(:last-child) {
    margin-bottom: 30px;
  }

  .package__section {
    padding: 16px;
  }
}

@media screen and (max-height: 700px) and (min-width:768px) {
  .crm__images {
    max-height: 40vh;
  }
}

@media (max-height: 680px) {
  .popup {
    padding: 24px 10px;
  }

  .submitAplication__form:not(:first-child) {
    margin-top: 20px;
  }

  .submitAplication__form button {
    margin-top: 20px;
  }

  .submitAplication .popup__footer {
    margin-top: 20px;
  }
}

@media (max-height: 640px) and (min-width:768px) {
  .package__section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-height: 600.1px) {
  .franchise__pages {
    gap: 14px;
  }

  .franchise__pages span {
    height: 180px;
  }
}

@media (max-height: 600px) {
  .map-page .map {
    width: 450px;
  }

  .map-page .map__location {
    width: 25px;
    height: 25px;
  }

  .map-page .map__location::before {
    width: 25px;
    height: 25px;
  }

  .map-page h2 {
    margin-bottom: 20px;
  }

  .map-page .map-list {
    padding: 20px 24px;
  }

  .map-list ul {
    height: 300px;
  }

  .map-list__btn {
    margin-top: 24px;
  }
}

@media screen and (max-height: 600px) and (min-width:768px) {
  .crm {
    gap: 30px;
  }

  .crm__images {
    max-height: 34%;
    width: 100%;
  }

  .franchise__page {
    z-index: 0;
    font-size: 180px !important;
  }
}

@media screen and (max-height: 500px) and (min-width:768px) {
  .fp-init body {
    overflow-y: scroll;
  }

  [data-fp] {
    min-height: 100%;
    height: 100%;
  }

  .fp-init [data-fp-section] {
    position: relative;
  }

  .section__content {
    height: 100%;
  }

  .header__container {
    background: rgba(0, 0, 0, 0.1);
    height: 56px;
  }

  .crm__block p {
    position: relative;
    z-index: 2;
  }

  .schema__block {
    max-height: 600px !important;
    margin-bottom: 20px;
  }

  .schema.section__content {
    height: max-content;
  }

  .partners-form {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .pagging {
    display: none !important;
  }

  .section-content,
  .section-content2 {
    z-index: 1;
  }
}

@media screen and (max-width:767.9px) and (min-width: 420px) {
  .schedule__img-mob {
    width: 70%;
  }

  .schedule__new-points {
    width: auto;
  }

  .franchise__section--5 .tabs__body {
    margin: 0;
  }

  .section__tabs h2 {
    max-width: 100%;
  }

  .map-page .map {
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  .map-page .map {
    width: 100%;
    margin: 0 auto;
  }

  .schedule__new-points {
    width: 100%;
    white-space: break-spaces;
  }
}

@media screen and (max-width:340px) {
  .section-content {
    margin-left: 0;
  }

  .franchise__section--1 {
    gap: 20px;
  }

  .section__content {
    margin-top: 40px;
  }

  .section-content {
    margin-top: 60px !important;
  }

  .schedule__new-points {
    max-width: 100%;
  }

  .section__tabs h2 {
    max-width: 100%;
  }

  .franchise__section--5 .tabs__body {
    margin: 10px 0;
  }

  .package__section {
    padding: 16px;
  }

  .partners-form__footer {
    /* flex-direction: column; */
    gap: 12px;
  }

  ._icon-plus:before {
    font-size: 22px;
  }

  .faq__question {
    padding: 12px 50px 12px 20px;
  }

  .terms-of-cooperation h2,
  .crm__block h2,
  .section__tabs h2,
  .schedule h2 {
    text-align: center;
  }
}

@media screen and (min-width:1900px) {
  .terms-of-cooperation {
    grid-template-columns: 1fr 60%;
  }

  .map-page .map-list {
    max-width: 500px;
    width: 100%;
  }

  h2 {
    font-size: 50px;
  }

  .section__tabs p,
  .section__tabs li,
  .tabs__main-text,
  .crm__list,
  .red-button,
  .faq__question,
  .popup__text {
    font-size: 22px;
  }

  table th {
    font-size: 16px;
    line-height: 1.05;
  }

  .popup__content {
    max-width: 730px;
  }
}

@media screen and (max-width: 400px) {
  .section-content__main-text {
    font-size: 24px;
  }
}

#myChart2 {
  display: none !important;
}

.shedule__block {
  margin-top: 32px;
  position: relative;
}

@media (max-width:600px) {
  .shedule__block {
    margin-top: 24px;
  }

  #myChart2 {
    display: block !important;
  }

  #myChart {
    display: none !important;
  }
}

.partners-form .input {
  padding: 14px 25px;
}

.popup__footer-contacts a {
  transition: all 0.3s ease;
}

.popup__footer-contacts a:hover {
  color: rgb(252, 103, 103);
}

.faq__question._icon-plus:before {
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 400px) {
  .crm__images {
    max-height: 600px;
    width: 120%;
    object-position: center;
    margin-left: -16px;
    margin-right: -16px;
  }

  .faq__question._icon-plus:before {
    font-size: 26px;
  }

  .schedule {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .section__tabs {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

