@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 200;
  src: url(../fonts/Jost-Thin.ttf) format("truetype");
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Jost-Light.ttf) format("truetype");
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Jost-Regular.ttf) format("truetype");
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Jost-Bold.ttf) format("truetype");
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Jost-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Jost-Bold.ttf) format("truetype");
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Jost-Extrabold.ttf) format("truetype");
}

:root {
  --indexSize: 1vh + 1vw;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

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

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1f2229;
  font-size: 1.8rem;
  line-height: 1.2;
}

body,
button,
input,
textarea {
  font-family: Jost, sans-serif;
}

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

body.lock {
  overflow: hidden;
  padding-right: 17px;
}

.touch body.lock {
  padding-right: 0;
}

.wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

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

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

::-moz-selection {
  background-color: #5ab16f;
  color: #fff;
}

::selection {
  background-color: #47b2e4;
  color: #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #d31543;
}

input:required:valid,
textarea:required:valid {
  border-color: #bc9e7b;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:focus,
input,
textarea {
  outline: none;
}

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

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

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.input,
.textarea {
  background: transparent;
  border: 0.06rem solid #1f2229;
  border-radius: 0.4rem;
  color: #1f2229;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 2.3rem;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
  -moz-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 1.6rem 2.3rem;
  resize: none;
}

.select-box {
  display: block;
  font-size: 1.8rem;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.select-box__current {
  background: transparent;
  border: 1px solid #bababa;
  border-radius: 0.6rem;
  color: #fff;
  color: #1f2229;
  cursor: pointer;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.select-box__current:focus + .select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-60%) rotate(180deg);
  -ms-transform: translateY(-60%) rotate(180deg);
  transform: translateY(-60%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  right: 1.4rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 0.9rem;
}

.select-box__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-box__value:first-of-type .select-box__input-text {
  color: #1f2229;
}

.select-box__input {
  display: none;
}

.select-box__input:checked + .select-box__input-text {
  display: block;
}

.select-box__input-text {
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  list-style: none;
  opacity: 0;
  padding: 0.8rem 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.select-box__option {
  background: #fff;
  color: #1f2229;
  display: block;
  margin-bottom: 0;
  padding: 0.5rem 1.4rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

.control {
  color: #1f2229;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 2.9rem;
  padding-top: 0.9rem;
  position: relative;
}

.control,
.control a {
  display: inline-block;
  line-height: 1;
}

.control a {
  color: #cd1e40;
  text-decoration: none;
}

.control a:after {
  background-color: #cd1e40;
  content: "";
  display: block;
  height: 1px;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  width: 100%;
}

.control a:hover {
  color: #cd1e40;
}

.control a:hover:after {
  width: 0;
}

.control input {
  left: 0.6rem;
  opacity: 0;
  position: absolute;
  top: 0.2rem;
  z-index: -1;
}

.control_indicator {
  background: #fff;
  border: 0.07rem solid #1f2229;
  border-radius: 0.4rem;
  height: 2.1rem;
  left: 0;
  position: absolute;
  top: 0.4rem;
  width: 2.1rem;
}

.control_indicator:after {
  -webkit-box-sizing: unset;
  box-sizing: unset;
  content: "";
  display: none;
  position: absolute;
}

.control-checkbox .control_indicator:after {
  background: url(../img/checkbox.svg) 50% / contain no-repeat;
  height: 0.8rem;
  left: 51%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1rem;
}

.control input:checked ~ .control_indicator:after {
  display: block;
}

.link {
  position: relative;
}

.link:hover {
  color: #5ab16f;
}

.link:after {
  background: #212529;
  bottom: 0;
  content: "";
  height: 0.1rem;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

.h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2105263158;
}

.h2 {
  font-size: 6rem;
  font-weight: 200;
  text-transform: uppercase;
}

.h3 {
  font-size: 2rem;
  font-weight: 600;
}

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

a {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
  color: #1f2229;
  text-decoration: none;
}

.container-1440 {
  max-width: 152rem;
  max-width: 174.4rem;
}

.container,
.container-1440 {
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.container {
  max-width: 132.9rem;
}

.btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #5ab16f;
  border: none;
  border-radius: 0.6rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0;
  position: relative;
  text-shadow: none;
  text-transform: none;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn:hover {
  background: #73c5eb;
  color: #fff;
}

svg {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.svg-hidden {
  display: none;
}

.fancybox-custom .fancybox-button {
  background: #1e1e20;
  color: #fff;
  height: 5.6rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
  background: #1e1e20;
  color: #fff;
  height: 5.6rem;
  padding: 0.5rem;
  width: 5.6rem;
}

.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: 0.98;
}

.swiper-wrapper {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  vertical-align: middle;
}

.hvr-buzz-out:active,
.hvr-buzz-out:focus,
.hvr-buzz-out:hover {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownMini {
  -webkit-animation-name: fadeInDownMini;
  animation-name: fadeInDownMini;
}

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

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

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

.header {
  background-image: url(../img/mainbg.jpg);
  background-image: url(../img/mainbg2.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 8rem;
  padding-top: 3.6rem;
}

.header__main-title h1 {
  color: #fff;
  font-size: 7rem;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 2.6rem;
  margin-top: 9.7rem;
  max-width: 57.3rem;
}
.header__main-lk{
  display: flex;
  align-items: center;
  gap: 0.834rem;
  justify-content: center;
  border-radius: 5rem;
  background: #47B2E4;
  width: 12.5rem;
  height: 4.8rem;
  color: #282B2D;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: Jost, sans-serif;
}
.header__main-lk img{
  width: 11.66px;
  height: 13.25px;
}
.header__main-topside{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header__main-description p {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 4.8rem;
  max-width: 57.3rem;
}

.header__main-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.9rem;
  margin-bottom: 4.5rem;
}

.price-item p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0;
}

.price-item b {
  font-size: 4.5rem;
  font-weight: 600;
}

.price-item b,
.price-item span {
  color: #fff;
  line-height: 25px;
}

.price-item span {
  font-size: 2.2rem;
  font-weight: 400;
}

.header__main-btn a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #47b2e4;
  border-radius: 50px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  height: 6.3rem;
  justify-content: center;
  width: 32rem;
  font-family: Jost, sans-serif;
}

.title-crm {
  color: #37517e;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 3.9rem;
  text-transform: uppercase;
}

.main {
  margin-top: 3.9rem;
}

.crm__big-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-radius: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 3.6rem 3.3rem 4.5rem;
  width: 100%;
}

.crm__big-item:first-of-type {
  background: #f3f5fa;
}

.crm__big-item:last-of-type {
  background: #fff;
  -webkit-box-shadow:
    0 0 1.1px 0 rgba(31, 34, 41, 0.05),
    0 0 22px 0 rgba(31, 34, 41, 0.1);
  box-shadow:
    0 0 1.1px 0 rgba(31, 34, 41, 0.05),
    0 0 22px 0 rgba(31, 34, 41, 0.1);
}

.crm__big-img {
  text-align: right;
  width: 100%;
}

.crm__big-title h3 {
  color: #37517e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.crm__big-text p {
  color: #1f2229;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 23.3rem;
}

.puzzle__crm-big {
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.puzzle__crm-big,
.puzzle__crm-mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.puzzle__crm-mini {
  gap: 0.9rem;
  margin-bottom: 3.8rem;
}

.crm__mini-item,
.crm__puzzle-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.crm__mini-item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #fff;
  border-radius: 2.4rem;
  -webkit-box-shadow:
    0 0 1.1px 0 rgba(31, 34, 41, 0.05),
    0 0 22px 0 rgba(31, 34, 41, 0.1);
  box-shadow:
    0 0 1.1px 0 rgba(31, 34, 41, 0.05),
    0 0 22px 0 rgba(31, 34, 41, 0.1);
  justify-content: space-between;
  padding: 2.7rem 3.5rem 3.1rem 4.8rem;
  width: 100%;
}

.crm__mini-item:last-of-type {
  background: #37517e;
}

.crm__mini-item:last-of-type .crm__mini-title h3 {
  color: #fff;
}

.crm__mini-item:last-of-type .crm__mini-text p {
  color: #fff;
}

.crm__mini-img {
  text-align: right;
  width: 100%;
}

.crm__mini-title h3 {
  color: #37517e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3.4rem;
  text-transform: uppercase;
}

.crm__mini-text p {
  color: #1f2229;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.steps-title h3 {
  color: #37517e;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2.3rem;
  max-width: 58.3rem;
  text-transform: uppercase;
}

.steps-wrapper {
  gap: 3.7rem;
  margin-bottom: 6.7rem;
}

.steps-item,
.steps-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.steps-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.9rem;
}

.steps__item-text p {
  color: #1f2229;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 21.3rem;
}

.steps__item-num {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 1.4rem;
  color: #37517e;
  font-size: 5rem;
  font-weight: 800;
  height: 7.9rem;
  justify-content: center;
  min-width: 7.3rem;
  width: 7.3rem;
}

.steps-crm,
.steps__item-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.steps-crm {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #f3f5fa;
  border-radius: 2.4rem;
  gap: 3.7rem;
  margin-bottom: 4rem;
  padding: 6.1rem 6.8rem 5rem 4.6rem;
}

.steps-btn {
  background: #47b2e4;
  border-radius: 5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  height: 6.3rem;
  margin-left: 8.4rem;
  width: 32rem;
}

.why-crm {
  background: #fff;
  border-radius: 2.4rem;
  -webkit-box-shadow:
    0 0 1.1px 0 rgba(31, 34, 41, 0.05),
    0 0 22px 0 rgba(31, 34, 41, 0.1);
  box-shadow:
    0 0 1.1px 0 rgba(31, 34, 41, 0.05),
    0 0 22px 0 rgba(31, 34, 41, 0.1);
  margin-bottom: 3.9rem;
  padding: 2.4rem 7.6rem 3rem 7.4rem;
}

.why-title {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.why-title h3 {
  color: #37517e;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 3.1rem;
  text-transform: uppercase;
}

.why-wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.8rem;
  justify-content: space-between;
}

.why-item {
  background: #f3f5fa;
  border-radius: 2.4rem;
  height: 19.4rem;
  max-width: 53.5rem;
  padding: 2.6rem 5.9rem 2rem 3.7rem;
  width: 100%;
}

.why-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.why-title p {
  color: #37517e;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
  max-width: 20.2rem;
}

.why-text p {
  color: #1f2229;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 38.4rem;
}

.aferta-crm {
  background:
    -webkit-gradient(linear, left bottom, left top, from(#f3f5fa), to(#f3f5fa)),
    url(<path-to-image>) #d3d3d3 50% / cover no-repeat;
  background:
    linear-gradient(0deg, #f3f5fa, #f3f5fa),
    url(<path-to-image>) #d3d3d3 50% / cover no-repeat;
  border-radius: 2.4rem;
  margin-bottom: 3.9rem;
  padding: 4rem 5.9rem 3.8rem;
}

.aferta-crm p {
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.aferta-crm li,
.aferta-crm p {
  color: #1f2229;
  font-size: 1.6rem;
  line-height: 28px;
  max-width: 101.1rem;
}

.aferta-crm li {
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.aferta-crm ul {
  padding-left: 1.2rem;
}

.aferta-crm ul li {
  list-style-type: disc;
}

.footer {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background:
    -webkit-gradient(linear, left bottom, left top, from(#37517e), to(#37517e)),
    url(<path-to-image>) #d3d3d3 0 -1211.735px/100% 1909.156% no-repeat;
  background:
    linear-gradient(0deg, #37517e, #37517e),
    url(<path-to-image>) #d3d3d3 0 -1211.735px/100% 1909.156% no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-bottom: 2.98rem;
  padding-top: 8.32rem;
}

.footer p {
  color: #8893ac;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0;
}

.crm-modal {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.5s ease;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.5s ease;
  transition:
    opacity 0.3s ease,
    transform 0.5s ease;
  transition:
    opacity 0.3s ease,
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
  width: 100%;
  z-index: 100;
}

.crm__modal-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: 50%;
  padding: 9.2rem 12.2rem 9.2rem 12rem;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 102;
}

.crm__modal-bg {
  background-color: #000;
  background: #fff;
  height: 100vh;
  left: 0;
  opacity: 0.3;
  opacity: 0.95;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 101;
}

.crm__modal-close {
  cursor: pointer;
  position: absolute;
  right: 2.9rem;
  top: 2.9rem;
}

.modal-inputs input {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(31, 34, 41, 0.15);
  border-radius: 5.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6.7rem;
  justify-content: center;
  margin-bottom: 1.4rem;
  text-align: center;
  width: 47.1rem;
}

.modal-title h2 {
  color: #1f2229;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 4.5rem;
}

.modal-inputs button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #47b2e4;
  border: none;
  border-radius: 5.8rem;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  height: 6.7rem;
  justify-content: center;
  margin-bottom: 1.6rem;
  text-align: center;
  width: 47.1rem;
}

.modal-description p {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 300;
  max-width: 36.8rem;
  text-align: center;
}

.modal-description a {
  color: #714bf1;
  font-size: 1.4rem;
  font-weight: 300;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

@media (min-width: 1930px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1700px) {
  html {
    font-size: 9px;
  }
}

@media (max-width: 1500px) {
  .control {
    font-size: 1.5rem;
  }
}

@media (max-width: 1430px) {
  html {
    font-size: 8.6px;
  }
}

@media (max-width: 1400px) {
  .h1 {
    font-size: 3.3rem;
  }
}

@media (max-width: 1320px) {
  html {
    font-size: 8.4px;
  }
}

@media (max-width: 1115px) {
  .why-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  body.lock {
    padding-right: 0;
  }
}

@media (max-width: 969px) {
  .crm__mini-title h3 {
    margin-bottom: 1.4rem;
  }

  .crm__mini-item {
    padding-left: 2.8rem;
  }

  .steps-img {
    max-width: 30%;
  }
}

@media (max-width: 776px) {
  .control {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

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

  .input,
  .textarea {
    font-size: 15px;
    padding: 0 13px;
    text-align: left;
  }

  .textarea {
    padding: 13px;
  }

  .select-box {
    font-size: 14px;
    width: 100%;
  }

  .select-box__current {
    font-size: 14px;
    height: 54px;
    padding-left: 12px;
    padding-right: 35px;
  }

  .select-box__icon {
    right: 16px;
    width: 10px;
  }

  .select-box__list {
    font-size: 14px;
    width: 100%;
  }

  .select-box__option {
    padding: 6px 20px;
  }

  .h1 {
    font-size: 23px;
  }

  .h2 {
    font-size: 27px;
    letter-spacing: 0;
  }

  .h3 {
    font-size: 15px;
  }

  .container,
  .container-1440 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn {
    font-size: 16px;
    height: 50px;
    line-height: 1;
    padding: 0;
  }

  .fancybox-custom .fancybox-button {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .header {
    background-image: url(../img/mainbgmob.jpg);
  }

  .header__main-btn,
  .header__main-description,
  .header__main-price,
  .header__main-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
  }

  .header__main-description p {
    text-align: center;
  }

  .header__main-title h1 {
    margin-top: 40px;
  }

  .puzzle__crm-big {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .puzzle__crm-big,
  .puzzle__crm-mini,
  .steps-crm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .steps-crm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .steps-img {
    bottom: -110px;
    max-width: unset;
    position: absolute;
    right: -100px;
    z-index: 0;
  }

  .steps-crm {
    overflow: hidden;
    padding: 40px 40px 180px;
    position: relative;
  }

  .steps-info {
    position: relative;
    z-index: 1;
  }

  .steps-btn {
    margin: 0 auto;
  }

  .steps-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .steps-title h3 {
    max-width: 100%;
  }

  .aferta-crm,
  .why-crm {
    padding: 30px;
  }

  .why-title p {
    font-size: 16px;
  }

  .why-text p {
    font-size: 14px;
  }

  .why-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .why-wrapper {
    gap: 20px;
  }

  .steps-title h3,
  .title-crm,
  .why-title h3 {
    font-size: 20px;
  }

  .header__main-title h1 {
    font-size: 50px;
    text-align: center;
  }

  .header__main-description p {
    font-size: 20px;
  }

  .steps-btn {
    width: 100%;
  }

  .crm__big-title h3 {
    margin-bottom: 20px;
  }

  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer p {
    text-align: center;
  }

  .crm__modal-content {
    padding-left: 40px;
    padding-right: 40px;
    width: 96%;
  }

  .modal-inputs,
  .modal-inputs button,
  .modal-inputs input {
    width: 100%;
  }

  .modal-title h2 {
    font-size: 30px;
  }
  .steps-crm {
    overflow: hidden;
    padding: 20px 20px 180px;
    position: relative;
  }
}
