body, html {
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #252525; }

a {
  text-decoration: none;
  color: #252525; }

p {
  font-family: "Manrope", sans-serif;
  margin: 0; }

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

.header {
  padding-top: 40px; }

.navbar-nav li {
  margin: 0 0 0 2rem;
  font-size: 18px;
  outline: none;
  transition: 0.3s;
  font-weight: 500; }
  .navbar-nav li:hover {
    opacity: 0.8; }

.nav-phone {
  font-weight: 600;
  font-size: 20px; }
.nav-callback {
  font-weight: 500;
  font-size: 18px;
  padding: 12px 20px;
  border: 1px solid #B4C378;
  border-radius: 10px;
  transition: 0.3s; }
  .nav-callback:hover {
    background: #B4C378; }
.main-callback {
  font-weight: 500;
  font-size: 18px;
  padding: 12px 35px;
  background: #B4C378;
  border-radius: 10px;
  transition: 0.3s;
  max-width: fit-content;
  margin: auto; }

.main {
  padding: 60px 0; }
  .main h1 {
    font-size: 24px;
    opacity: 0.8; }
  .main h4 {
    font-size: 22px;
    margin-bottom: 4px; }
  .main-promo__text {
    font-size: 96px;
    word-spacing: 100vw;
    line-height: 1.1;
    font-weight: 700; }
  .main-feature {
    margin-bottom: 40px; }
    .main-feature__text {
      font-size: 18px;
      line-height: 1.1; }
    .main-feature__icon {
      padding: 15px;
      min-width: 66px;
      min-height: 66px;
      border-radius: 10px;
      background: linear-gradient(180deg, #B4C378 0%, #91A837 47.37%);
      margin: 0 20px 0 0; }
      .main-feature__icon i {
        font-size: 35px;
        color: white; }

.services-card {
  background: #eee;
  position: relative;
  border-radius: 30px;
  height: 270px;
  margin: 10px 0 10px 0;
  padding: 30px;
  overflow: hidden;
  transition: all 0.3s ease; }
  .services-card:hover {
    background: #B4C378;
    background-position: 100% 100%; }
    .services-card:hover img {
      -webkit-filter: grayscale(0%);
      -moz-filter: grayscale(0%);
      filter: grayscale(0%);
      transform: scale(1.1); }
    .services-card:hover h3 {
      color: white; }
  .services-card img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0; }

.promotion {
  padding: 60px 0; }
  .promotion-block {
    background: linear-gradient(180deg, #B4C378 0%, #91A837 47.37%);
    color: white;
    border-radius: 30px;
    padding: 40px 40px;
    position: relative; }
    .promotion-block img {
      position: absolute;
      top: 0; }
    .promotion-block h5 {
      font-size: 56px;
      font-weight: 700;
      line-height: 1.1; }
    .promotion-block p {
      font-size: 22px;
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 30px; }
    .promotion-block__btn {
      padding: 15px 50px;
      color: white;
      font-weight: 600;
      background: #252525;
      border-radius: 10px; }

.about {
  padding: 30px 0;
  font-size: 18px; }
  .about-feature {
    background: #eee;
    border-radius: 30px; }
    .about-feature__block {
      padding: 5px; }
    .about-feature p {
      margin: 4px 0 0 15px;
      line-height: 1.1;
      font-weight: 500; }

.partners img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.3s ease; }
  .partners img:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: grayscale(0%); }

.footer {
  background: #eee;
  padding: 30px 0;
  font-size: 14px; }

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #B4C378;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  transform: scale(0);
  transition: 0.5s transform; }

#menu-overlay.active {
  transform: scale(1); }

#menu-overlay ul {
  position: relative; }

#menu-overlay ul li {
  position: relative;
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
  display: block; }

#menu-overlay ul li a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  padding: 0 10px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block; }

#menu-overlay:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;
  background: #B4C378;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  transition: 0.5s transform; }

#menu-overlay:hover:before {
  transform: translateY(-50%) scaleX(1);
  transform-origin: left;
  transition: 0.5s transform; }

#toggleIcon {
  z-index: 2; }
  #toggleIcon span {
    z-index: 1; }

.menu {
  --front: linear-gradient(180deg, #B4C378 0%, #91A837 47.37%);
  --back: #252525;
  --icon: white;
  perspective: 600px;
  width: 48px;
  height: 48px;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; }
  .menu input {
    display: none; }
    .menu input + div span {
      --rotateY: 0deg;
      --background: var(--front);
      transform: rotateY(var(--rotateY));
      transform-style: preserve-3d;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      background: var(--background);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transition: transform 0.6s cubic-bezier(0.2, 0.64, 0.48, 1.24); }
      .menu input + div span:first-child {
        --background: var(--back); }
        .menu input + div span:first-child:before {
          --rotate: -45deg; }
        .menu input + div span:first-child:after {
          --rotate: 45deg; }
      .menu input + div span:last-child {
        --rotateY: 180deg; }
        .menu input + div span:last-child:before {
          box-shadow: 0 -5px 0 var(--icon), 0 5px 0 var(--icon); }
        .menu input + div span:last-child:after {
          display: none; }
    .menu input:checked + div span:first-child {
      --rotateY: -180deg; }
    .menu input:checked + div span:last-child {
      --rotateY: 0deg; }

.menu input + div span:before, .menu input + div span:after {
  --rotate: 0deg;
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  background: var(--icon);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate(-50%, -50%) rotate(var(--rotate)) translateZ(6px); }

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased; }

* {
  box-sizing: inherit; }

*:before, *:after {
  box-sizing: inherit; }

.mobile-phone {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #B4C378 0%, #91A837 47.37%);
  border-radius: 10px;
  margin-right: 20px; }
  .mobile-phone i {
    color: white; }

.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s; }
  .modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; }
  .modal-window > div {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    background: #ffffff; }
  .modal-window header {
    font-weight: bold; }
  .modal-window h1 {
    font-size: 150%;
    margin: 0 0 15px; }
  .modal-window div:not(:last-of-type) {
    margin-bottom: 15px; }

.modal-close {
  color: #aaa;
  line-height: 50px;
  position: absolute;
  right: -15px;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none; }
  .modal-close:hover {
    color: black; }
  .modal-close img {
    width: 20px;
    opacity: 0.4;
    transition: 0.3s; }
    .modal-close img:hover {
      opacity: 1;
      transition: 0.3s; }

small {
  color: #252525; }

.modalForm__input {
  width: 100%;
  margin-bottom: 20px;
  z-index: 999;
  border-radius: 5px;
  padding: 15px 20px;
  border: 1px solid #E1E1E4;
  outline: none; }
  .modalForm__input input {
    color: #252525;
    height: 52px; }

.form-offer_btn {
  padding: 15px 15px;
  border-radius: 5px;
  background: #B4C378;
  border: none;
  outline: none;
  color: #fff;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  margin-bottom: 10px; }
  .form-offer_btn span {
    border-radius: 4px;
    padding: 3px 7px;
    margin-left: 25px;
    font-size: 16px; }

.modal-politic {
  font-size: 14px;
  color: #252525; }
  .modal-politic a {
    text-decoration: underline;
    color: #B4C378; }

#modal-window__box {
  max-width: 700px;
  border-radius: 10px; }

input[type="checkbox"] {
  display: none; }
  input[type="checkbox"] + label span {
    display: inline-block;
    width: 19px;
    height: 19px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    background: url(../images/check_radio_sheet.png) left top no-repeat;
    cursor: pointer; }

input[type="checkbox"]:checked + label span {
  background: url(../images/check_radio_sheet.png) -19px top no-repeat; }

.page.menu-link__mobile.active span {
  background: transparent;
  border: none; }

.menu-mobile.page.active:after {
  background: #f2f2f2; }
  .menu-mobile.page.active:after a {
    color: #252525; }

.modal-popup__title {
  font-size: 24px;
  line-height: 1.2;
  color: #252525;
  font-family: "Museo Sans Cyrl 900", sans-serif; }
  .modal-popup__title span {
    color: #B4C378; }

.not-found {
  padding: 60px 0 0 0; }
  .not-found__text h1 {
    font-size: 124px;
    font-weight: 700; }
  .not-found__text p {
    font-size: 26px; }
    .not-found__text p a {
      color: #B4C378; }

.breadcrumbs {
  padding: 40px 0 0 0; }
  .breadcrumbs ol {
    display: flex;
    align-items: center; }
    .breadcrumbs ol li {
      display: flex;
      align-items: center;
      color: #5b5b5b;
      margin: 0 0 10px; }
      .breadcrumbs ol li a {
        background: #efefef;
        padding: 4px 20px 4px;
        border-radius: 24px;
        color: #252525; }
  .breadcrumbs p {
    font-size: 20px;
    line-height: 1.2;
    color: #5b5b5b; }

.licenses {
  padding: 40px 0; }
  .licenses-block {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-bottom: 30px; }
    .licenses-block i {
      font-size: 42px;
      color: #B4C378;
      margin-right: 20px; }
    .licenses-block__text {
      font-size: 18px; }

@media screen and (max-width: 1200px) {
  .main-promo__text {
    font-size: 76px; } }
@media screen and (max-width: 992px) {
  .services-card img {
    right: 0;
    left: unset; }

  .promotion-block img {
    right: 0; } }
@media screen and (max-width: 768px) {
  .promotion-block {
    overflow: hidden; }
    .promotion-block img {
      left: 70%;
      right: unset; } }
@media screen and (min-width: 577px) {
  .services-card__business img {
    right: -20px;
    width: 400px;
    left: unset; } }
@media screen and (max-width: 576px) {
  .main h1 {
    font-size: 20px; }
  .main-promo__text {
    font-size: 56px; }
  .main-feature__text h4 {
    font-size: 18px; }
  .main-feature__text p {
    font-size: 14px; }

  .navbar-brand img {
    width: 134px; }

  .promotion-block h5 {
    font-size: 38px; }
  .promotion-block p {
    font-size: 18px; }
  .promotion-block__btn {
    padding: 15px 24px; }
  .promotion-block img {
    position: unset;
    width: 280px; } }
