@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import "https://necolas.github.io/normalize.css/8.0.1/normalize.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/css/swiper.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/remodal/1.1.1/remodal-default-theme.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/remodal/1.1.1/remodal.css";
@keyframes button-animation {
  0% {
    left: -2rem;
  }
  40% {
    left: calc(100% + 2rem);
  }
  100% {
    left: calc(100% + 2rem);
  }
}
html {
  font-family: "Rubik", sans-serif;
  font-size: 4.1025641026vw;
  line-height: 1.185;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 2.6041666667vw;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 28px;
  }
}
@media screen and (min-width: 2440px) {
  html {
    font-size: 48px;
  }
}

body {
  color: #25282A;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

b {
  font-weight: 500;
}

button {
  border: 0;
}

.header {
  display: none;
  justify-content: center;
  background: #E4EAED;
  height: 104px;
  font-size: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .header {
    display: flex;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.header__logo::after {
  display: block;
  content: "";
  height: 26px;
  width: 2px;
  background-color: #25282A;
  margin-left: 1rem;
}
@media screen and (min-width: 1900px) {
  .header__logo::after {
    margin-left: 68px;
  }
}
.header__logo-text {
  display: none;
  margin-left: 0.625rem;
}
@media screen and (min-width: 1900px) {
  .header__logo-text {
    display: block;
  }
}
.header__logo-image {
  width: auto;
  height: 65px;
}
.header__navigation {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1900px) {
  .header__navigation {
    margin-left: 55px;
  }
}
.header__navigation-item {
  display: flex;
  color: inherit;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  height: 100%;
  align-items: center;
  flex-shrink: 0;
}
.header__navigation-item:not(:first-child) {
  margin-left: 0.75rem;
}
.header__navigation-item:hover {
  color: #D22630;
}
.header__navigation-dropdown-arrow {
  margin-left: 0.2rem;
}
.header__navigation-item-children {
  position: absolute;
  top: calc(100% - 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  z-index: 1000;
  display: none;
  flex-direction: column;
  padding: 0.65rem 0.85rem;
  text-align: center;
  background: #CFD5D8;
  border-radius: 0.3rem;
}
.header__navigation-item:hover .header__navigation-item-children {
  display: flex;
}
.header__navigation-item-child {
  text-decoration: none;
  color: #25282A;
}
.header__navigation-item-child:hover {
  color: #D22630;
}
.header__navigation-item-child:not(:first-child) {
  margin-top: 0.3rem;
}
.header__phone {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1150px) {
  .header__phone {
    display: flex;
  }
}
.header__phone-schedule {
  font-size: 0.375rem;
  font-weight: 300;
  line-height: normal;
}
.header__phone-number {
  margin-top: 0.1rem;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: normal;
  color: inherit;
  text-decoration: none;
}
.header__phone-request-call {
  font-weight: 300;
  font-size: 0.375rem;
  color: #D22630;
  text-decoration: none;
  cursor: pointer;
}

.mobile-header {
  display: flex;
  height: 2.6rem;
  position: sticky;
  background: #F4F8FA;
  top: 0;
  z-index: 9000;
  align-items: center;
  padding: 0 2rem;
}
@media screen and (min-width: 1024px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header__hamburger {
  width: 2rem;
  height: 1rem;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  display: flex;
}
.mobile-header__hamburger::before, .mobile-header__hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.17rem;
  background: #25282A;
  position: absolute;
  border-radius: 0.3rem;
  transition: 0.3s;
  transform: none;
}
.mobile-header__hamburger::before {
  top: 0;
}
.mobile-header__hamburger::after {
  bottom: 0;
}
#mobile-header__hamburger-input:not(:checked) + .mobile-header__hamburger::before {
  transform: rotate(45deg);
  top: 7px;
  left: -2px;
}
#mobile-header__hamburger-input:not(:checked) + .mobile-header__hamburger::after {
  transform: rotate(-45deg);
  top: 7px;
  left: -2px;
}
.mobile-header__hamburger-line {
  width: 1.4rem;
  height: 0.17rem;
  border-radius: 0.6rem;
  background: #25282A;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
#mobile-header__hamburger-input:not(:checked) + .mobile-header__hamburger .mobile-header__hamburger-line {
  width: 0;
  right: 50%;
}
.mobile-header__content {
  display: none;
  position: fixed;
  top: 2.6rem;
  left: 0;
  right: 0;
  background: #F4F8FA;
  z-index: 9000;
  flex-direction: column;
  align-items: center;
  height: calc(100% - 2.6rem);
  overflow: scroll;
  padding-bottom: 3rem;
  box-sizing: border-box;
}
#mobile-header__hamburger-input:not(:checked) ~ .mobile-header__content {
  display: flex;
}
.mobile-header__logo {
  height: 3.6rem;
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.mobile-header__logo-text {
  margin-left: 1.2rem;
  font-size: 1.2rem;
}
.mobile-header__logo-image {
  width: auto;
  height: 100%;
}
.mobile-header__navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  margin: auto 2rem 2rem;
  padding-top: 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-header__navigation::-webkit-scrollbar {
  display: none;
}
.mobile-header__navigation-item {
  display: flex;
  color: inherit;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  font-size: 1.2rem;
}
.mobile-header__navigation-item:not(:first-child) {
  margin-top: 1.9rem;
}
.mobile-header__navigation-item:hover {
  color: #D22630;
}
.mobile-header__navigation-dropdown-arrow {
  margin-left: 0.4rem;
}
.mobile-header__navigation-item-input:not(:checked) ~ .mobile-header__navigation-dropdown-arrow {
  transform: rotate(180deg);
}
.mobile-header__navigation-item-children {
  width: 100%;
  display: none;
  flex-direction: column;
  text-align: center;
  border-radius: 0.6rem;
}
.mobile-header__navigation-item-input:not(:checked) ~ .mobile-header__navigation-item-children {
  display: flex;
}
.mobile-header__navigation-item-child {
  text-decoration: none;
  color: #25282A;
  margin-top: 1.9rem;
}
.mobile-header__navigation-item-child:hover {
  color: #D22630;
}
.mobile-header__phone {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-header__phone-schedule {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: normal;
}
.mobile-header__phone-number {
  margin-top: 0.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  color: inherit;
  text-decoration: none;
}
.mobile-header__phone-request-call {
  font-weight: 300;
  font-size: 0.8rem;
  color: #D22630;
  text-decoration: underline #D22630 dashed;
  cursor: pointer;
}

.person {
  position: relative;
  padding-bottom: 2.4rem;
  margin: 0;
  height: min-content;
}
@media screen and (min-width: 1470px) {
  .person {
    padding-bottom: 0;
  }
}
.person__image {
  width: 100%;
}
.person__caption {
  position: absolute;
  width: max-content;
  left: 65%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 1470px) {
  .person__caption {
    left: unset;
    right: 55%;
    bottom: 70%;
    padding-right: 1.5rem;
    padding-bottom: 0.4375rem;
    transform: unset;
    text-align: right;
  }
}
@media screen and (min-width: 1470px) {
  .person__caption::before, .person__caption::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    background: #D22630;
  }
}
.person__caption::before {
  height: 1px;
  width: 2rem;
  bottom: -0.2rem;
}
.person__caption::after {
  height: 0.215rem;
  width: 0.215rem;
  bottom: -0.3rem;
  border-radius: 50%;
}
.person__caption--right {
  left: 40%;
}
@media screen and (min-width: 1470px) {
  .person__caption--right {
    padding-right: 0;
    padding-left: 1.25rem;
    right: unset;
    bottom: 65%;
    left: 53%;
    text-align: left;
  }
}
.person__caption--right::after, .person__caption--right::before {
  left: 0;
  right: unset;
}
.person__name {
  font-weight: 500;
  font-size: 0.6rem;
}
.person__position {
  font-weight: 300;
  font-size: 0.6rem;
  float: right;
}

.photo-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}
.photo-viewer__container {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  max-width: calc(100% - 40px);
  width: fit-content;
  max-height: calc(100% - 64px);
}
.photo-viewer__close {
  width: 24px;
  height: 24px;
  right: -32px;
  position: absolute;
  cursor: pointer;
}
.photo-viewer__close::before, .photo-viewer__close::after {
  display: block;
  position: absolute;
  top: -2px;
  left: 50%;
  height: 30px;
  width: 3px;
  content: "";
  background: #d22630;
  border-radius: 0.6rem;
}
.photo-viewer__close::before {
  transform: translate(-50%, 0) rotate(45deg);
}
.photo-viewer__close::after {
  transform: translate(-50%, 0) rotate(-45deg);
}
.photo-viewer__close:hover::before, .photo-viewer__close:hover::after {
  background: #aaa;
}
.photo-viewer__img {
  width: 100%;
  max-height: calc(100vh - 64px);
  object-fit: contain;
}
[data-photo-viewer] {
  cursor: pointer;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.6rem;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .sidemenu + .section {
    width: calc(100% - 14rem);
    align-self: end;
    box-sizing: border-box;
    padding-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .section {
    padding: 1.5rem calc((100% - 1024px) / 2);
  }
}
@media screen and (min-width: 1470px) {
  .section {
    padding: 1.5rem calc((100% - 1140px) / 2);
  }
}
@media screen and (min-width: 2440px) {
  .section {
    padding: 1.5rem calc((100% - 1920px) / 2);
  }
}
.section__title {
  color: #14151a;
  font-size: 1.2rem;
  font-weight: 300;
  display: inline-block;
  position: relative;
  margin: 0;
  width: fit-content;
  align-self: start;
}
@media screen and (min-width: 1280px) {
  .section__title {
    max-width: 23rem;
  }
}
.section__title > em {
  font-style: normal;
  font-weight: 500;
  color: #D22630;
}
.section__title--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title--left {
  align-self: start;
  margin-left: 4.5rem;
}
.section__title-line {
  position: absolute;
  height: 1px;
  width: 100vw;
  background: #ff2e28;
  top: 50%;
}
.section__title-line:first-child {
  left: calc(-100vw - 1rem);
}
.section__title-line:last-child {
  right: calc(-100vw - 1rem);
}
.section__title-line--gray {
  background: #E2E9ED;
}
.section__title-line:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff2e28;
  position: absolute;
  top: -2px;
}
.section__title-line:first-child::before {
  left: 100vw;
}

.section__title-line:last-child::before {
  right: 100vw;
}

.section__text {
  font-size: 0.6rem;
  text-align: center;
  font-weight: 300;
  max-width: 80ch;
  margin: 1rem 0 0;
}
@media screen and (min-width: 1280px) {
  .section__text {
    margin-top: 1.5rem;
    max-width: 36rem;
  }
}
.section__text:first-child {
  margin-top: 0;
}
.section__text > em {
  font-weight: 500;
  color: #D22630;
  font-style: normal;
}
.section__content {
  margin-top: 1.5rem;
  width: 100%;
}
.section--stick-to-next {
  padding-bottom: 0;
}

.services-banner {
  min-height: calc(1rem + 30vw);
  background-image: url(/local/templates/akme-business/static/img/services-banner.png);
  background-repeat: no-repeat;
  background-color: #F4F8FA;
  background-position: 50% 100%;
  background-size: 80% auto;
}
@media screen and (min-width: 1280px) {
  .services-banner {
    width: 100%;
    min-height: 7rem;
    padding: 0;
    background-position: max(28rem, 80%) 100%;
    background-size: auto 80%;
    justify-content: center;
  }
  .services-banner .section__title {
    margin-left: 9.5rem;
  }
}

.services__full {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .services__full {
    grid-template-columns: 1fr 1fr;
  }
}
.services__button {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  width: 100%;
  display: flex;
  font-size: 0.6rem;
}
.services__button:hover {
  opacity: 0.5;
}
.services__button::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent 0, #fff 30%, #fff 70%, transparent 100%);
  width: 2em;
  height: 100%;
  transform: skewX(-20deg);
  opacity: 0.9;
  animation-name: button-animation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.services__button-img {
  height: 1rem;
  margin-right: 0.4rem;
}
.services__half {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services__text {
  margin-top: 1rem;
  font-size: 0.6rem;
  max-width: 80ch;
}

.akme-in-numbers {
  background: #F0F4F6;
}
.akme-in-numbers > .section__content {
  display: flex;
  flex-direction: row;
}
.akme-in-numbers__list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1.8rem;
}
@media screen and (min-width: 1470px) {
  .akme-in-numbers__list {
    width: 70%;
  }
}
.akme-in-numbers__item-title {
  font-size: 1.2rem;
  font-weight: 500;
}
.akme-in-numbers__item-text {
  font-size: 0.6rem;
  font-weight: 300;
}
.akme-in-numbers__okey-hand {
  display: none;
  object-fit: contain;
}
@media screen and (min-width: 1470px) {
  .akme-in-numbers__okey-hand {
    display: block;
    width: 12rem;
  }
}

.numbered-item {
  padding-top: 1rem;
  position: relative;
}
.numbered-item::before {
  content: attr(data-number);
  display: block;
  font-size: 2rem;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  color: #CDCDCD;
  z-index: 0;
}
@media screen and (min-width: 1280px) {
  .numbered-item::before {
    font-size: 2.45rem;
  }
}
.numbered-item::after {
  content: "";
  display: block;
  left: 0.15rem;
  top: 0.5rem;
  width: 0.2rem;
  height: 0.2rem;
  background: #D22630;
  border-radius: 50%;
  position: absolute;
}
@media screen and (min-width: 1280px) {
  .numbered-item::after {
    top: 0.81rem;
    left: 0.15rem;
    width: 0.25rem;
    height: 0.25rem;
  }
}
.numbered-item__title {
  font-size: 0.6rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.numbered-item__text {
  margin-top: 0.6rem;
  font-weight: 300;
  font-size: 0.6rem;
  position: relative;
  z-index: 1;
}

.advantages {
  background-image: url(/local/templates/akme-business/static/img/map_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1470px) {
  .advantages__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.victories__diploms {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
}
@media screen and (min-width: 1470px) {
  .victories__diploms {
    grid-template-columns: 1fr 1fr;
  }
}
.victories__diplom {
  display: flex;
  margin: 0;
}
.victories__diplom-img {
  width: 30vw;
}
@media screen and (min-width: 1280px) {
  .victories__diplom-img {
    width: 8rem;
  }
}
.victories__diplom-caption {
  margin-top: 1.25rem;
  padding-left: 2.5rem;
  font-weight: 300;
  font-size: 0.6rem;
  position: relative;
  box-sizing: content-box;
}
.victories__diplom-caption::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 2px;
  position: absolute;
  top: 0.375rem;
  left: 0;
  background: #D22630;
}
.victories__diplom-caption::after {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  top: 0.28rem;
  left: 1.6rem;
  background: #D22630;
  border-radius: 50%;
}
.victories__diplom-caption > em {
  font-weight: 500;
  color: #D22630;
  font-style: normal;
}
.victories__more {
  margin: 1.2rem auto 0;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 300;
  color: #D22630;
}

.cost-calculation__full {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cost-calculation__full {
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .cost-calculation__full {
    justify-content: space-between;
  }
}
.cost-calculation__button {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  font-size: 0.6rem;
  margin-top: 0.8rem;
}
.cost-calculation__button:hover {
  opacity: 0.5;
}
.cost-calculation__button::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent 0, #fff 30%, #fff 70%, transparent 100%);
  width: 2em;
  height: 100%;
  transform: skewX(-20deg);
  opacity: 0.9;
  animation-name: button-animation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.cost-calculation__person {
  margin-left: 1rem;
  margin-right: -3rem;
  width: 9rem;
}
@media screen and (min-width: 768px) {
  .cost-calculation__person {
    width: 15rem;
  }
}
@media screen and (min-width: 1280px) {
  .cost-calculation__person {
    width: 18rem;
  }
}
.cost-calculation__left-half {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.cost-calculation__text {
  max-width: 11.75rem;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 300;
}
@media screen and (min-width: 1280px) {
  .cost-calculation__text {
    max-width: 20rem;
  }
}
.cost-calculation__or {
  margin-top: 0.7rem;
  font-size: 0.6rem;
  font-weight: 300;
}
.cost-calculation__phone {
  margin-top: 0.2rem;
  font-size: 0.6rem;
  font-weight: 500;
  text-decoration: none;
  color: #25282A;
}
.cost-calculation__time {
  margin-top: 0.2rem;
  font-size: 0.6rem;
  font-weight: 300;
}

.write-director__text {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 300;
  max-width: 40ch;
}
.write-director__person {
  width: 12rem;
  flex-shrink: 0;
  margin-left: -5rem;
}
@media screen and (min-width: 768px) {
  .write-director__person {
    width: 18rem;
    margin-top: -1.5rem;
    margin-left: -6rem;
  }
}
.write-director__button {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  width: 13rem;
  margin-top: 0.5rem;
  font-size: 0.6rem;
}
.write-director__button:hover {
  opacity: 0.5;
}
.write-director__button::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent 0, #fff 30%, #fff 70%, transparent 100%);
  width: 2em;
  height: 100%;
  transform: skewX(-20deg);
  opacity: 0.9;
  animation-name: button-animation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.write-director__full {
  display: flex;
  margin-top: 1.3rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .write-director__full {
    justify-content: center;
  }
}
.write-director__right-half {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 1rem;
  justify-content: center;
}

.charity.section {
  overflow: clip;
}
.charity__photos {
  margin-top: 1rem;
  display: flex;
  overflow: scroll;
  width: 100vw;
  box-sizing: border-box;
  padding: 0 1.6rem;
}
@media screen and (min-width: 1280px) {
  .charity__photos {
    width: 100%;
    overflow: hidden;
    padding: 0;
  }
}
.charity__photo {
  height: 8rem;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-size: cover;
  background-color: #888;
  background-blend-mode: multiply;
  box-sizing: border-box;
  padding: 0.5rem 1.5rem;
}
.charity__photo + .charity__photo {
  margin-left: 30px;
}
@media screen and (min-width: 1280px) {
  .charity__photo {
    height: unset;
    width: 1px;
    flex-grow: 1;
  }
}
.charity__photo-title {
  font-weight: 500;
  font-size: 0.6rem;
  text-align: center;
  color: #fff;
}
.charity__photo-description {
  margin-top: 0.8rem;
  font-weight: 300;
  font-size: 0.6rem;
  text-align: center;
  color: #fff;
}
.charity__slider {
  width: 100%;
  aspect-ratio: 16/9;
}
.charity__video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.charity__slider-button-next, .charity__slider-button-prev {
  font-family: FontAwesome;
  color: #D22630;
  font-size: 3.2rem;
  cursor: pointer;
  width: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  -moz-user-select: none;
  -webkit-text-select: none;
  -webkit-user-select: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.1s;
}
.charity__slider-button-next:hover, .charity__slider-button-prev:hover {
  text-shadow: #D22630 0 0 4px;
}
.charity__slider-button-next:active, .charity__slider-button-prev:active {
  text-shadow: #D22630 0 0 8px;
}
.charity__slider-button-next {
  right: -1.6rem;
}
@media screen and (min-width: 1280px) {
  .charity__slider-button-next {
    right: -3.2rem;
  }
}
.charity__slider-button-prev {
  left: -1.6rem;
}
@media screen and (min-width: 1280px) {
  .charity__slider-button-prev {
    left: -3.2rem;
  }
}
.charity__slider-wrapper {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.charity .swiper-container {
  width: 100%;
}

.client-reviews__slider {
  height: 2rem;
  width: 536px;
  margin: 1.6rem 0 0;
}
.client-reviews__item {
  width: 100%;
  height: 2rem;
  box-sizing: border-box;
  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;
}
.client-reviews__img {
  height: 100%;
  cursor: pointer;
}
.client-reviews__img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.client-reviews__slider > .swiper-wrapper {
  align-items: center;
}
.client-reviews__slider-button-next, .client-reviews__slider-button-prev {
  font-family: FontAwesome;
  color: #D22630;
  font-size: 2rem;
  line-height: 0.6;
  cursor: pointer;
  height: 51px;
  width: 51px;
  margin-top: 1.6rem;
  justify-content: center;
  align-items: center;
  user-select: none;
  -moz-user-select: none;
  -webkit-text-select: none;
  -webkit-user-select: none;
  display: none;
}
.client-reviews__slider-button-next:hover, .client-reviews__slider-button-prev:hover {
  text-shadow: #D22630 0 0 4px;
}
.client-reviews__slider-button-next:active, .client-reviews__slider-button-prev:active {
  text-shadow: #D22630 0 0 8px;
}
@media screen and (min-width: 1280px) {
  .client-reviews__slider-button-next, .client-reviews__slider-button-prev {
    display: flex;
  }
}
.client-reviews__slider-button-next {
  left: calc(50% + 7vw + 50px);
  margin-right: auto;
  margin-left: 15px;
}
.client-reviews__slider-button-prev {
  left: calc(50% - 7vw - 50px);
  margin-left: auto;
  margin-right: 15px;
}
.client-reviews__video {
  border-radius: 5px;
  margin: 1.6rem auto 0;
  width: 100%;
  aspect-ratio: 16/9;
}
.client-reviews__slider-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.client-reviews__slider-container .swiper-slide {
  filter: grayscale(1);
}
.client-reviews__slider-container .swiper-slide-active {
  filter: unset;
}

.our-clients__item {
  width: 100%;
  height: 4rem;
  padding: 0.5rem;
  box-sizing: border-box;
  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;
}
.our-clients__slider-2 .our-clients__item {
  height: 5rem;
}
.our-clients__slider {
  margin: 0.5rem -2.2rem;
  width: 100vw;
}
.our-clients__slider-1 {
  margin-top: 1.5rem;
}
.our-clients__img {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.our-clients__img > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.our-clients .swiper-button-next {
  width: 42px;
  height: 42px;
  box-shadow: 0 0.7rem 1rem rgba(0, 0, 2, 0.2);
  background-color: #fff;
  border-radius: 50%;
  z-index: 5;
  background-image: none;
  position: absolute;
  margin-top: 0;
  right: -38px;
  top: 95px;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .our-clients .swiper-button-next {
    right: -10px;
  }
}
.our-clients .swiper-button-next:before {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background-position: -200px 0px;
  background-image: url("../img/png-sprite/96dpi/sprite.png");
  background-size: 212px 183px;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 4px);
  top: calc(50% - 10px);
}
.our-clients .swiper-button-prev {
  width: 42px;
  height: 42px;
  box-shadow: 0 0.7rem 1rem rgba(0, 0, 2, 0.2);
  background-color: #fff;
  border-radius: 50%;
  background-image: none;
  z-index: 5;
  margin-top: 0;
  left: -38px;
  top: 95px;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .our-clients .swiper-button-prev {
    left: -10px;
  }
}
.our-clients .swiper-button-prev:before {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background-position: -180px -117px;
  background-image: url("../img/png-sprite/96dpi/sprite.png");
  background-size: 212px 183px;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 8px);
  top: calc(50% - 10px);
}

.gratitude {
  background: #F0F4F6;
  padding-bottom: 2rem;
}
.gratitude__item {
  width: 100%;
  box-sizing: border-box;
  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;
}
.gratitude__slider {
  margin: 1rem -2.2rem 0;
  width: 100vw;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .gratitude__slider {
    margin: 1.5rem -5rem 0;
  }
}
.gratitude__slider > .swiper-wrapper {
  pointer-events: none;
}
.gratitude__img {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
}
.gratitude__slider-button-next, .gratitude__slider-button-prev {
  font-family: FontAwesome;
  color: #D22630;
  font-size: 2rem;
  line-height: 0.6;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -webkit-text-select: none;
  -webkit-user-select: none;
  display: none;
}
.gratitude__slider-button-next:hover, .gratitude__slider-button-prev:hover {
  text-shadow: #D22630 0 0 4px;
}
.gratitude__slider-button-next:active, .gratitude__slider-button-prev:active {
  text-shadow: #D22630 0 0 8px;
}
@media screen and (min-width: 1280px) {
  .gratitude__slider-button-next, .gratitude__slider-button-prev {
    display: block;
  }
}
.gratitude__slider-button-next {
  left: calc(50% + 7vw + 50px);
}
.gratitude__slider-button-prev {
  left: calc(50% - 7vw - 50px);
}

.consultation__form {
  width: 13rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .consultation__form {
    width: 16rem;
  }
}
.consultation__form > input, .consultation__form > .g-recaptcha {
  min-height: 3em;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  padding: 0 1em;
  border-radius: 0.2rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: #000;
  width: 100%;
}
.consultation__form > input::placeholder, .consultation__form > .g-recaptcha::placeholder {
  color: #B4B4B4;
}
.consultation__form > input:not(:first-child), .consultation__form > .g-recaptcha:not(:first-child) {
  margin-top: 0.5rem;
}
.consultation__submit-button {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  width: 100%;
  font-size: 0.6rem;
  margin-top: 0.5rem;
}
.consultation__submit-button:hover {
  opacity: 0.5;
}
.consultation__submit-button::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent 0, #fff 30%, #fff 70%, transparent 100%);
  width: 2em;
  height: 100%;
  transform: skewX(-20deg);
  opacity: 0.9;
  animation-name: button-animation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.consultation__full {
  display: flex;
  width: 100%;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .consultation__full {
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .consultation__full {
    justify-content: space-between;
  }
}
.consultation__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.consultation__person {
  width: 11rem;
  margin-left: 1rem;
  margin-right: -2rem;
}
@media screen and (min-width: 768px) {
  .consultation__person {
    width: 15rem;
    margin-top: -2rem;
    margin-right: -4rem;
  }
}
@media screen and (min-width: 1280px) {
  .consultation__person {
    width: 18rem;
    margin-left: 3rem;
    margin-right: 0;
    margin-top: -3rem;
  }
}
.consultation__you-can-call, .consultation__phone, .consultation__time {
  width: 10rem;
  text-align: center;
}
.consultation__you-can-call {
  margin-top: 1rem;
  font-weight: 300;
  font-size: 0.6rem;
  line-height: 1.2em;
  font-weight: lighter;
}
.consultation__phone {
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 0.6rem;
  line-height: 1.2em;
  color: #000;
  text-decoration: none;
}
.consultation__time {
  margin-top: 0.2rem;
  font-weight: 300;
  font-size: 0.6rem;
  line-height: 1.185em;
  font-weight: lighter;
}
@media screen and (min-width: 768px) {
  .consultation > .section__text {
    padding-bottom: 2rem;
  }
}

.footer {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.5019607843);
  background: #25282A;
  font-size: 0.6rem;
}
.footer__nav {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 1rem;
}
@media screen and (min-width: 1280px) {
  .footer__nav {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.footer__copyright {
  margin-top: 1.25rem;
  align-self: start;
}
@media screen and (min-width: 1280px) {
  .footer__copyright {
    margin-top: 1.9rem;
    align-self: center;
  }
}
.footer__nav-link {
  font-weight: 300;
  color: inherit;
  text-decoration: none;
}
.footer__nav-link:not(:first-child) {
  margin-top: 0.34rem;
}
.footer__nav-links {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
}
.footer__nav-title {
  color: #fff;
}

.about-banner {
  display: flex;
  flex-direction: row;
  justify-content: start;
  background: #f6f8f7;
}
.about-banner__half {
  color: #111111;
}
.about-banner__akme {
  font-weight: 500;
  font-size: 1.6rem;
}
.about-banner__company-type {
  font-weight: 400;
  font-size: 1.2rem;
}
.about-banner__brief {
  max-width: 14rem;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.6rem;
}
.about-banner__text {
  max-width: 21rem;
  margin-top: 1rem;
  font-weight: 300;
  font-size: 0.6rem;
  line-height: 1.185em;
}
.about-banner__stats {
  margin: 0 -1rem -1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1280px) {
  .about-banner__stats {
    justify-content: left;
  }
}
.about-banner__stats-item {
  width: 5.9rem;
  margin: 0.9rem;
}
.about-banner__stats-item-count {
  font-size: 0.6rem;
  font-weight: 500;
  color: #25282A;
  display: flex;
  align-items: center;
  padding-top: 12px;
  position: relative;
}
.about-banner__stats-item-count > em {
  font-size: 1.2rem;
  line-height: 1.185em;
  font-weight: 500;
  color: #D22630;
  font-style: normal;
}
.about-banner__stats-item-count::after {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  position: absolute;
  left: 1px;
  top: 0;
  background: #25282A;
  border-radius: 50%;
}
.about-banner__stats-item-text {
  max-width: 7rem;
  font-weight: 300;
  font-size: 0.6rem;
  margin-top: 0.1rem;
}
.about-banner__workers {
  display: none;
}
@media screen and (min-width: 1280px) {
  .about-banner__workers {
    display: block;
    width: 20rem;
    height: 15rem;
    margin-right: -6rem;
    object-fit: contain;
    object-position: bottom;
  }
}

.mission {
  display: flex;
  flex-direction: row;
  background: #F4F8FA;
  justify-content: start;
}
.mission__person {
  width: 10rem;
  margin-left: -2rem;
}
@media screen and (min-width: 1280px) {
  .mission__person {
    width: 14rem;
  }
}
.mission__text {
  font-size: 0.6rem;
  width: 10rem;
  margin-left: 1.3rem;
  position: relative;
}
.mission__text > em {
  font-style: normal;
  font-weight: 500;
  color: #D22630;
}
@media screen and (min-width: 1024px) {
  .mission__text {
    width: 15rem;
    padding-left: 5rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1470px) {
  .mission__text {
    margin-bottom: 0;
  }
}
.mission__text::before {
  content: "";
  display: none;
  height: 1px;
  width: 107px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #D22630;
}
.mission__text::after {
  content: "";
  display: none;
  height: 6.84px;
  width: 6.84px;
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  background: #D22630;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .mission__text::before, .mission__text::after {
    display: block;
  }
}

.plans__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 1280px) {
  .plans__list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
  }
}
.plans__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.plans__img {
  height: 4.5rem;
  width: 4.5rem;
}
.plans__item-text {
  margin-top: 0.5rem;
  font-size: 0.6rem;
}

@media screen and (min-width: 1024px) {
  .history-banner {
    width: 100vw;
    height: 7rem;
    padding: 0;
    background-image: url(/local/templates/akme-business/static/img/history-title-bg.png);
    background-repeat: no-repeat;
    background-position-x: 100%;
    justify-content: center;
  }
  .history-banner .section__title {
    margin-left: 7rem;
  }
}

.history__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.history__list > li {
  display: flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 400;
  max-width: 80ch;
}
.history__list > li:not(:first-child) {
  margin-top: 0.6rem;
}
.history__year {
  width: 4.8rem;
  padding: 0.2rem 0.5rem;
  background: #D22630;
  border-radius: 0.3rem;
  box-sizing: border-box;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
  margin-right: 0.5rem;
  word-break: break-word;
}

.values {
  background: #E4EAED;
}
.values__full {
  margin-top: 1rem;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .values__full {
    flex-direction: row;
  }
}
.values__half {
  display: flex;
}
@media screen and (min-width: 768px) {
  .values__half {
    width: 108%;
    margin-left: 1rem;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1470px) {
  .values__half {
    width: 14rem;
    margin-left: 2rem;
  }
}
.values__end-product {
  background: #D22630;
  color: #fff;
  border-radius: 0.3rem;
  padding: 1rem 1.5rem;
  max-width: 11rem;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .values__end-product {
    max-width: unset;
    margin-top: 1rem;
  }
}
.values__end-product-title {
  font-weight: 500;
  font-size: 0.6rem;
  color: #fff;
}
.values__end-product-text {
  margin-top: 0.5rem;
  font-weight: 300;
  font-size: 0.6rem;
}
.values__person {
  margin-left: 1rem;
  margin-right: -3rem;
  width: 14rem;
}
@media screen and (min-width: 768px) {
  .values__person {
    margin-left: unset;
    margin-right: -1rem;
    margin-top: -4rem;
    width: 11rem;
  }
}
@media screen and (min-width: 1470px) {
  .values__person {
    width: 16rem;
  }
}
.values__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  margin-top: 1rem;
}

.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.3rem 1rem;
  margin-top: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq__list {
    grid-template-columns: 1fr 1fr;
  }
}
.faq__item {
  border-radius: 0.07rem;
}
.faq__item-header {
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background: #F0F4F6;
}
.faq__item-name {
  display: flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 500;
}
.faq__item-arrow {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-family: FontAwesome;
  border: 2px solid #D22630;
  border-radius: 50%;
  height: 1.2rem;
  width: 1.2rem;
  flex-shrink: 0;
  transition: 0.3s;
  transform: rotate(180deg);
  background: #D22630;
  color: #fff;
  user-select: none;
}
.faq__item-input:checked ~ .faq__item-header > .faq__item-arrow {
  transform: rotate(0deg);
  color: #D22630;
  background: unset;
}

.faq__item-content {
  display: flex;
  padding: 0 1rem 1rem;
  font-size: 0.6rem;
  font-weight: 400;
  background: #F0F4F6;
}
.faq__item-input:checked ~ .faq__item-content {
  display: none;
}

.partners__list {
  display: grid;
  grid-gap: 0.5rem;
  grid-auto-flow: dense;
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1280px) {
  .partners__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 1900px) {
  .partners__list {
    grid-template-columns: repeat(8, 1fr);
  }
}
.partners__item {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partners__space {
  display: none;
  grid-column: 1;
}
@media screen and (min-width: 1900px) {
  .partners__space {
    display: block;
  }
}
.partners__space--right {
  grid-column: 8;
}
.partners__end-space {
  display: none;
}
@media screen and (min-width: 1900px) {
  .partners__end-space {
    display: block;
  }
}

.contacts__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 -1rem -1rem;
  justify-content: center;
}
@media screen and (min-width: 1280px) {
  .contacts__list {
    flex-direction: row;
  }
}
.contacts__item {
  display: flex;
  margin: 1rem;
  font-size: 0.6rem;
  background: #f1f6fa;
  border-radius: 0.2rem;
  flex-direction: column;
}
@media screen and (min-width: 720px) {
  .contacts__item {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .contacts__item {
    width: 15rem;
  }
  .contacts__item:first-child {
    width: 32rem;
    background: unset;
    aspect-ratio: 16/4;
  }
}
@media screen and (min-width: 1900px) {
  .contacts__item {
    width: 18rem;
  }
  .contacts__item:first-child {
    width: 38rem;
  }
}
.contacts__item-title {
  font-size: 0.6rem;
  font-weight: 500;
}
.contacts__item-info {
  height: auto;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 720px) {
  .contacts__item-info {
    height: 100%;
    width: auto;
  }
}
.contacts__item-place {
  margin-top: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
.contacts__item-place::before {
  content: "";
  width: 2ch;
  height: 2ch;
  margin-right: 0.5rem;
  display: block;
  background-image: url("../img/pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.contacts__item-map {
  width: 100%;
  height: 15rem;
  margin-left: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 720px) {
  .contacts__item-map {
    width: 40%;
    height: unset;
  }
}
.contacts__item-phone {
  margin-top: 0.5rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.contacts__item-phone::before {
  content: "";
  width: 2ch;
  height: 2ch;
  margin-right: 0.5rem;
  display: block;
  background-image: url("../img/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.contacts__item-phone span {
  font-weight: 400;
}
.contacts__item-mail {
  margin-top: 0.5rem;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.contacts__item-mail::before {
  content: "";
  width: 2ch;
  height: 2ch;
  margin-right: 0.5rem;
  display: block;
  background-image: url("../img/email.svg");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.order-form__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.order-form__form > input, .order-form__form > textarea, .order-form__form > .g-recaptcha {
  min-height: 3em;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  padding: 0 1em;
  border-radius: 0.2rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: #000;
  width: 100%;
}
.order-form__form > input::placeholder, .order-form__form > textarea::placeholder, .order-form__form > .g-recaptcha::placeholder {
  color: #B4B4B4;
}
.order-form__form > input:not(:first-child), .order-form__form > textarea:not(:first-child), .order-form__form > .g-recaptcha:not(:first-child) {
  margin-top: 0.5rem;
}
.order-form__form > textarea {
  resize: vertical;
  padding: 0.3rem 0.7rem;
  min-height: 6rem;
}
@media screen and (min-width: 1280px) {
  .order-form__form {
    width: 16rem;
  }
}
.order-form__submit-button {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  width: 100%;
  margin-top: 0.5rem;
}
.order-form__submit-button:hover {
  opacity: 0.5;
}
.order-form__submit-button::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent 0, #fff 30%, #fff 70%, transparent 100%);
  width: 2em;
  height: 100%;
  transform: skewX(-20deg);
  opacity: 0.9;
  animation-name: button-animation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.order-form__full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  width: 100%;
}
.order-form__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.order-form__person {
  margin-right: -3.8rem;
  width: 11rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .order-form__person {
    width: 25rem;
  }
}
.order-form__you-can-call, .order-form__phone, .order-form__time {
  width: 100%;
  text-align: center;
}
.order-form__you-can-call {
  margin-top: 30px;
  font-weight: 300;
  font-size: 0.6rem;
  line-height: 1.185em;
  font-weight: lighter;
}
.order-form__phone {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.185em;
  color: #000;
  text-decoration: none;
}
.order-form__time {
  margin-top: 3px;
  font-weight: 300;
  font-size: 0.6rem;
  line-height: 1.185em;
  font-weight: lighter;
}

.sidemenu {
  display: none;
}
@media screen and (min-width: 1280px) {
  .sidemenu {
    width: 14rem;
    height: 0;
    display: flex;
    flex-direction: column;
    align-items: end;
    padding-top: 2rem;
    padding-right: 2rem;
    margin-bottom: -2rem;
    box-sizing: border-box;
    font-size: 0.6rem;
    z-index: 1;
  }
}
.sidemenu__title {
  width: 9rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.sidemenu__button {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  width: 9rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.sidemenu__button:hover {
  opacity: 0.5;
}
.sidemenu__button::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent 0, #fff 30%, #fff 70%, transparent 100%);
  width: 2em;
  height: 100%;
  transform: skewX(-20deg);
  opacity: 0.9;
  animation-name: button-animation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.sidemenu__button--gray {
  background: #A8ACAE;
  color: #fff;
}
.sidemenu__accordeon {
  width: 9rem;
  background: #F0F4F6;
  border-radius: 0.15rem;
  margin-top: 0.3rem;
}
.sidemenu__accordeon-title {
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  display: block;
  cursor: pointer;
}
.sidemenu__accordeon-title::after {
  content: "\f107";
  float: right;
  font-family: FontAwesome;
  transition: 0.3s;
}
.sidemenu__accordeon-input:not(:checked) ~ .sidemenu__accordeon-title::after {
  transform: rotate(180deg);
  color: #D22630;
}
.sidemenu__accordeon-content {
  display: none;
  flex-direction: column;
  padding: 0 0.75rem 0.3rem;
}
.sidemenu__accordeon-input:not(:checked) ~ .sidemenu__accordeon-content {
  display: flex;
}
.sidemenu__accordeon-link {
  color: inherit;
  text-decoration: none;
}
.sidemenu__accordeon-link:not(:first-child) {
  margin-top: 0.1rem;
}
.sidemenu__accordeon-link--active {
  color: #D22630;
}

.catalog h3 {
  max-width: 23rem;
  font-weight: 400;
  margin-top: 1rem;
  font-size: 0.6rem;
}
.catalog__description {
  max-width: 75ch;
}
.catalog ul {
  list-style: none;
  font-size: 0.6rem;
}
.catalog ul li {
  position: relative;
  line-height: 1.5;
}
.catalog ul li::before {
  content: "";
  width: 0.75rem;
  height: 2px;
  display: block;
  background: #D0D0D0;
  position: absolute;
  left: -1.2rem;
  top: 1ch;
  transform: translateY(-50%);
}
.catalog ul li::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  display: block;
  background: #D22630;
  position: absolute;
  left: -0.6rem;
  top: 1ch;
  border-radius: 50%;
  transform: translateY(-50%);
}
.catalog ol {
  font-size: 0.6rem;
}
.catalog em {
  font-style: normal;
  color: #D22630;
}
.catalog.section {
  font-weight: 300;
}
.catalog .section__text {
  text-align: left;
  margin-right: auto;
}
.catalog .section__content {
  font-size: 0.6rem;
}
.catalog__image {
  margin-top: 1rem;
  width: 100%;
  object-fit: contain;
}
.catalog__price-block {
  width: 100%;
  padding: 0.625rem;
  margin-top: 0.9375rem;
  background: #F0F4F6;
  border-radius: 5px;
  font-weight: normal;
  box-sizing: border-box;
}
@media screen and (min-width: 1470px) {
  .catalog.section:not(.catalog--without-menu) {
    padding: 1.5rem 5rem;
  }
}

.policy {
  text-align: left;
  align-items: start;
  font-size: 0.6rem;
}

.question-form__form {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
}
.question-form input,
.question-form textarea,
.question-form .g-recaptcha {
  min-height: 3em;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  padding: 0 1em;
  border-radius: 0.2rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: #000;
  width: 100%;
}
.question-form input::placeholder,
.question-form textarea::placeholder,
.question-form .g-recaptcha::placeholder {
  color: #B4B4B4;
}
.question-form input[type=date],
.question-form textarea[type=date],
.question-form .g-recaptcha[type=date] {
  width: unset;
}
.question-form input:not(:first-child),
.question-form textarea:not(:first-child),
.question-form .g-recaptcha:not(:first-child) {
  margin-top: 0.5rem;
}
.question-form select {
  min-height: 3em;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  padding: 0 1em;
  border-radius: 0.2rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: #000;
  color: #000;
  background: #fff;
  cursor: pointer;
}
.question-form select::placeholder {
  color: #B4B4B4;
}
.question-form select:not(:first-child) {
  margin-top: 0.5rem;
}
.question-form textarea {
  resize: vertical;
  padding: 0.3rem 0.7rem;
  min-height: 6rem;
}
.question-form__combo-field {
  display: flex;
  align-items: center;
}
.question-form__combo-field:not(:first-child) {
  margin-top: 0.5rem;
}
.question-form__combo-field input, .question-form__combo-field select {
  width: unset;
  margin-left: 0.5rem;
}
.question-form__combo-field input:not(:first-child), .question-form__combo-field select:not(:first-child) {
  margin-top: 0;
}
.question-form__add-license, .question-form__add-job, .question-form__add-education {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #A8ACAE;
  color: #fff;
  font-size: 0.6rem;
  margin-top: 0.5rem;
  align-self: end;
}
.question-form__add-license:hover, .question-form__add-job:hover, .question-form__add-education:hover {
  opacity: 0.5;
}
.question-form__upload-photo {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #A8ACAE;
  color: #fff;
}
.question-form__upload-photo:hover {
  opacity: 0.5;
}
.question-form__chapter {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.question-form__submit {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  margin-top: 1rem;
}
.question-form__submit:hover {
  opacity: 0.5;
}
.question-form__submit::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent 0, #fff 30%, #fff 70%, transparent 100%);
  width: 2em;
  height: 100%;
  transform: skewX(-20deg);
  opacity: 0.9;
  animation-name: button-animation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.question-form__job-period {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}
.question-form__job-period div {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.question-form__job-period div:not(:first-child) {
  margin-left: 0.5rem;
  justify-content: right;
}
.question-form__job-period div input {
  margin-left: 0.5rem;
  padding: 0;
}

@media screen and (min-width: 1280px) {
  .rewards-banner {
    width: 100vw;
    height: 7rem;
    padding: 0;
    background-image: url(/local/templates/akme-business/static/img/rewards.png);
    background-repeat: no-repeat;
    background-position-x: 100%;
    justify-content: center;
  }
  .rewards-banner .section__title {
    margin-left: 7rem;
  }
}

.rewards__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  margin-top: 1rem;
}
@media screen and (min-width: 1280px) {
  .rewards__list {
    grid-template-columns: 1fr 1fr;
  }
}
.rewards__item {
  display: flex;
  margin: 0;
}
.rewards__img {
  border: 21px solid;
  width: 7rem;
  border-image: url(/local/templates/akme-business/static/img/reward-border.png) 21 21 21 21;
}
.rewards__caption {
  margin-top: 1.25rem;
  padding-left: 2.9rem;
  font-weight: 300;
  font-size: 0.6rem;
  position: relative;
  box-sizing: content-box;
}
.rewards__caption::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  position: absolute;
  top: 1.5ch;
  left: 0;
  background: #D22630;
}
.rewards__caption::after {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  top: 1.2ch;
  left: 1.8rem;
  background: #D22630;
  border-radius: 50%;
}
.rewards__caption > em {
  font-weight: 500;
  color: #D22630;
  font-style: normal;
}
.rewards__caption > h1 {
  margin: 0 0 0.4rem;
}

.client-experience__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .client-experience__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .client-experience__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.client-experience__item {
  background: #F0F5F8;
  padding: 1rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}
.client-experience__img {
  width: 100%;
}
.client-experience__caption {
  font-size: 0.6rem;
  font-weight: 400;
  padding-top: 1.2rem;
  margin: auto 0;
}
.client-experience__caption em {
  color: #D22630;
  font-style: normal;
  font-weight: 500;
}
.client-experience__link {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  font-size: 0.6rem;
  width: fit-content;
  margin-top: 1.2rem;
}
.client-experience__link:hover {
  opacity: 0.5;
}

.client-experience-detail-banner {
  background-size: 0;
}
@media screen and (min-width: 1280px) {
  .client-experience-detail-banner {
    min-height: 10rem;
    margin-bottom: -2rem;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: max(30rem, 75%) 1rem;
    background-size: auto calc(100% - 1rem);
    background-origin: content-box;
  }
}
.client-experience-detail-banner .section__text {
  max-width: 21rem;
  text-align: left;
  align-self: start;
}

.client-experience-detail {
  align-items: start;
}
.client-experience-detail h4 {
  margin: 0;
  font-weight: 500;
  font-size: 0.6rem;
  padding: 0.25rem 1.25rem;
  color: #fff;
  background: #D22630;
  border-radius: 0.2rem;
  align-self: start;
}
.client-experience-detail h4:not(:first-child) {
  margin-top: 0.5rem;
}
.client-experience-detail p {
  font-size: 0.6rem;
  line-height: 1.8em;
}
.client-experience-detail ul {
  list-style: none;
  font-size: 0.6rem;
  line-height: 1.8em;
  padding-left: 1.5rem;
}
.client-experience-detail ul li {
  position: relative;
}
.client-experience-detail ul li::before, .client-experience-detail ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 1ch;
  transform: translateY(-50%);
}
.client-experience-detail ul li::before {
  width: 0.75rem;
  height: 2px;
  background: #D0D0D0;
  left: -1.2rem;
}
.client-experience-detail ul li::after {
  width: 0.2rem;
  height: 0.2rem;
  background: #D22630;
  left: -0.6rem;
  border-radius: 50%;
}

.detail-back {
  padding-top: 0;
  padding-bottom: 0;
}
.detail-back__link {
  font-weight: 300;
  font-size: 0.6rem;
  color: #D22638;
  text-decoration: underline #D22630 dashed;
  text-underline-offset: 0.25rem;
  cursor: pointer;
  align-self: start;
}

.callback-form {
  display: flex;
  flex-direction: column;
}
.callback-form input, .callback-form textarea, .callback-form select, .callback-form .g-recaptcha {
  min-height: 3em;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  padding: 0 1em;
  border-radius: 0.2rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: #000;
  font-size: 1rem;
}
.callback-form input::placeholder, .callback-form textarea::placeholder, .callback-form select::placeholder, .callback-form .g-recaptcha::placeholder {
  color: #B4B4B4;
}
.callback-form input:not(:first-child), .callback-form textarea:not(:first-child), .callback-form select:not(:first-child), .callback-form .g-recaptcha:not(:first-child) {
  margin-top: 1rem;
}
.callback-form input::placeholder, .callback-form textarea::placeholder, .callback-form select::placeholder, .callback-form .g-recaptcha::placeholder {
  font-size: 1rem;
}
.callback-form select {
  color: #000;
  background: #fff;
}
.callback-form textarea {
  padding: 1em;
}
.callback-form .callback-form__submit {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #D22630;
  color: #fff;
  margin-top: 1rem;
  font-size: 1rem;
}
.callback-form .callback-form__submit:hover {
  opacity: 0.5;
}
.callback-form__close {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  background: #A8ACAE;
  color: #fff;
  margin-top: 1rem;
  font-size: 1rem;
}
.callback-form__close:hover {
  opacity: 0.5;
}

.modal {
  border-radius: 0.2rem;
  font-size: 0.625rem;
}
.modal__title {
  font-size: 2rem;
}
.modal__close:before {
  font-size: 50px;
}

.quality-control .section__content {
  max-width: 20rem;
}

.vacancy__title {
  color: #14151a;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.add-resume {
  width: 100%;
  position: relative;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.add-resume__img {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.add-resume__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.add-resume-form {
  position: relative;
  z-index: 1;
}

.add-resume__subtitle {
  color: #fff;
  font-size: 2rem;
  margin-top: 24rem;
}

.add-resume-form__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 39.9375em) {
  .add-resume-form__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.add-resume-form__buttons .file-input {
  margin-right: 2rem;
  background-color: #f2f5f9;
}

.add-resume-form__buttons input[type=submit] {
  padding: 1.2rem 5rem;
}

.contacts-border {
  border-top: 1px solid #bababa;
  padding-top: 2rem;
}

#contactsmap {
  width: 100%;
  min-height: 550px;
}

.news-block {
  position: relative;
  text-decoration: none;
  padding: 2rem;
  border: 1px solid #bababa;
  display: block;
  margin-bottom: 2rem;
}

.news-block:hover .news-block__tag {
  background-color: #ff2e28;
}

.news-block__name {
  color: #14151a;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-block__text {
  color: #6d6d73;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 3rem;
}

.news-block__tag {
  position: absolute;
  right: 2rem;
  top: 2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #c1ced3;
  display: inline-block;
  padding: 0.3rem 1.2rem;
}

.news-item {
  padding: 2rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
  position: relative;
  border: 1px solid #c1ced3;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .news-item {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .news-item {
    padding-top: 7rem;
  }
}
.news-item p {
  font-size: 1.6rem;
  color: #6d6d73;
}

.news-item__name {
  text-transform: uppercase;
  color: #14151a;
  font-size: 1.8rem;
  font-weight: 700;
}

.news-item__img {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 39.9375em) {
  .news-item__img {
    width: 100%;
    float: none;
  }
}
.news-item__tags {
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 2;
}

.news-item__tag {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #c1ced3;
  display: inline-block;
  padding: 0.3rem 1.2rem;
  margin-right: 1.5rem;
}

.news-item__link {
  color: #ff2e28;
  font-size: 1.6rem;
}

.news-tags {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.news-tags__item {
  background-color: #c1ced3;
  padding: 0.5rem 1.3rem;
  margin-right: 0.9rem;
  cursor: pointer;
}

.news-tags__item:last-child {
  margin-right: 0;
}

.news-tags__item.active {
  background-color: #ff2e28;
}

.news-tags__item:focus {
  outline: thin dotted;
}

.clients-content {
  padding-top: 0;
  margin-top: 6rem;
}

.clients-content .row {
  padding-top: 4rem;
  border-top: 1px solid #bababa;
}

.scheme-work {
  margin-bottom: 3rem;
}

.scheme-work__title {
  color: #14151a;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.scheme-work__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.scheme-work__item {
  max-width: 20%;
  border-radius: 50%;
  margin-right: 3rem;
}

.scheme-work__item:last-child {
  margin-right: 0;
}

.services-slider {
  min-height: 508px;
  margin-top: 7rem;
  margin-bottom: 6rem;
  position: relative;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .services-slider {
    min-height: auto;
  }
}
@media screen and (max-width: 39.9375em) {
  .services-slider {
    min-height: auto;
  }
}
.services-slider .swiper-pagination {
  bottom: 75px;
  left: 90px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .services-slider .swiper-pagination {
    bottom: 55px;
  }
}
@media screen and (max-width: 39.9375em) {
  .services-slider .swiper-pagination {
    left: 0;
    bottom: 0;
  }
}
.services-slider .swiper-button-disabled {
  opacity: 1;
}

.services-slider .swiper-button-disabled:before {
  opacity: 0.4;
}

.services-slider .swiper-pagination {
  width: auto;
}

@media screen and (max-width: 39.9375em) {
  .services-slider .swiper-pagination {
    width: 100%;
  }
}
.services-slider .swiper-pagination-bullet {
  width: 35px;
  height: 35px;
  opacity: 1;
}

.services-slider .pag-ring {
  margin: 0 3px;
  -webkit-transform: rotate(-95deg);
  transform: rotate(-95deg);
  fill: transparent;
  background: transparent !important;
}

.services-slider .pag-ring rect {
  fill: #40414c;
}

.services-slider .swiper-pagination-bullet-active rect {
  fill: #ff2e28;
}

.services-slider .swiper-pagination-bullet-active circle {
  fill: transparent;
  stroke: #ff2e28;
  stroke-width: 3;
  stroke-dasharray: 534;
  -webkit-transition: stroke-dashoffset 1s;
  transition: stroke-dashoffset 1s;
  animation-play-state: running;
  stroke-dashoffset: 0;
  -webkit-animation: show100 35s;
  animation: show100 35s;
}

.services-slider__item {
  padding-top: 130px;
  padding-left: 50px;
  padding-bottom: 50px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .services-slider__item {
    padding: 50px;
  }
}
@media screen and (max-width: 39.9375em) {
  .services-slider__item {
    padding: 20px;
    padding-bottom: 50px;
  }
}
.services-slider__wrapper {
  background-color: #fff;
  padding-top: 5rem;
  padding-right: 5rem;
  padding-left: 5rem;
  padding-bottom: 7rem;
  width: 630px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .services-slider__wrapper {
    width: 450px;
  }
}
@media screen and (max-width: 39.9375em) {
  .services-slider__wrapper {
    width: 200px;
    padding: 3rem;
  }
}
.services-slider__title {
  color: #40414c;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}

.services-slider__text {
  color: #40414c;
  font-size: 1.8rem;
}

.services-slider-next {
  width: 42px;
  height: 42px;
  box-shadow: 0 0.7rem 1rem rgba(0, 0, 2, 0.2);
  background-color: #fff;
  border-radius: 50%;
  z-index: 5;
  background-image: none;
  position: absolute;
  margin-top: 0;
  top: inherit;
  bottom: 190px;
  left: 760px;
  cursor: pointer;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .services-slider-next {
    top: 150px;
    left: 555px;
  }
}
.services-slider-next:before {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background-position: -200px 0px;
  background-image: url("../img/png-sprite/96dpi/sprite.png");
  background-size: 212px 183px;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 4px);
  top: calc(50% - 10px);
}

@media screen and (max-width: 39.9375em) {
  .services-slider-next {
    display: none;
  }
}
.services-slider-prev {
  width: 42px;
  height: 42px;
  box-shadow: 0 0.7rem 1rem rgba(0, 0, 2, 0.2);
  background-color: #fff;
  border-radius: 50%;
  background-image: none;
  z-index: 5;
  margin-top: 0;
  top: inherit;
  bottom: 190px;
  left: 30px;
  cursor: pointer;
  position: absolute;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .services-slider-prev {
    top: 150px;
    left: 30px;
  }
}
@media screen and (max-width: 39.9375em) {
  .services-slider-prev {
    display: none;
  }
}
.services-slider-prev:before {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background-position: -180px -117px;
  background-image: url("../img/png-sprite/96dpi/sprite.png");
  background-size: 212px 183px;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 8px);
  top: calc(50% - 10px);
}

.form-text {
  color: #767477;
  font-size: 1.4rem;
  text-align: center;
}

.stairs {
  height: 860px;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs {
    height: 930px;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs {
    height: 800px;
  }
}
.stairs__man {
  position: absolute;
  width: 1214px;
  height: 853px;
  background: url("../img/assets/stairs/man.png") no-repeat;
  left: -34px;
  top: 15px;
  z-index: -1;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs__man {
    position: absolute;
    width: 1214px;
    height: 853px;
    background: url("../img/assets/stairs/man.png") no-repeat;
    right: -76px;
    top: -80px;
    left: initial !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs__man {
    position: absolute;
    width: 850px;
    height: 670px;
    background: url("../img/assets/stairs/man.png") no-repeat;
    background-size: contain;
    left: -475px;
    top: 136px;
    z-index: -1;
  }
}
.stairs__graph {
  position: absolute;
  width: 1200px;
  height: 984px;
  top: 0;
  left: calc(50% - 600px);
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs__graph {
    position: relative;
    width: 100%;
    left: 0;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs__graph {
    position: static;
    width: 100%;
  }
}
.stairs__line {
  width: 1px;
  position: absolute;
  -webkit-transform: rotate(63.5deg);
  transform: rotate(63.5deg);
  height: 1463px;
  background-color: #ff2e28;
  top: -335px;
  left: 891px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs__line {
    display: none;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs__line {
    display: none;
  }
}
.stairs__title {
  color: #14151a;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 3.5rem;
  padding-left: 65px;
  padding-top: 65px;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 39.9375em) {
  .stairs__title {
    padding: 0;
  }
}
.stairs__title:before {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  background-position: 0px 0px;
  background-image: url("../img/png-sprite/96dpi/sprite.png");
  background-size: 212px 183px;
  background-repeat: no-repeat;
  display: block;
  top: 0rem;
  left: -0.2rem;
}

@media screen and (max-width: 39.9375em) {
  .stairs__title:before {
    display: none;
  }
}
.stairs__subtitle {
  color: #40414c;
  font-weight: 700;
  font-size: 1.8rem;
  width: 41rem;
  margin-top: 3rem;
  padding-left: 65px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs__subtitle {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs__subtitle {
    padding: 0;
    width: auto;
    width: 100%;
  }
}
.stairs__text {
  padding-left: 65px;
  width: 41rem;
  margin-top: 3rem;
  color: #6d6d73;
  font-weight: 400;
  font-size: 1.8rem;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs__text {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs__text {
    padding: 0;
    width: auto;
  }
}
.stairs__numeric {
  color: #ff2e28;
  font-size: 4.5rem;
  font-weight: 700;
}

.stairs__word {
  color: #14151a;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 2.4rem;
}

.stairs__item {
  position: absolute;
  width: 216px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs__item {
    position: static;
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs__item {
    position: static;
    width: 80%;
  }
}
.stairs__subline {
  width: 216px;
  position: relative;
  height: 1px;
  margin-top: 15px;
  background-color: #ff2e28;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .stairs__subline {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) {
  .stairs__subline {
    width: 100%;
  }
}
.stairs__subline:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  right: 0;
  top: -2px;
  border-radius: 50%;
  background-color: #ff2e28;
}

@media screen and (max-width: 39.9375em) {
  .stairs__data {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
  }
}
.stairs__item:nth-child(1) {
  right: 21px;
  top: 100px;
}

.stairs__item:nth-child(2) {
  right: 258px;
  top: 218px;
}

.stairs__item:nth-child(3) {
  right: 496px;
  top: 337px;
}

.stairs__item:nth-child(4) {
  right: 729px;
  top: 454px;
}

.stairs__item:nth-child(5) {
  right: 961px;
  top: 568px;
}

.vacancy-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 3rem;
}

.vacancy-advantages__text {
  color: #14151a;
  font-size: 1.5rem;
  text-align: center;
}

.vacancy-advantages__item {
  margin-bottom: 2rem;
  width: 20%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 6.66666%;
}

.vacancy-advantages__item:nth-child(4n) {
  margin-right: 0;
}

.vacancy-advantages__item img {
  width: 160px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.vacancy-baner {
  width: 100%;
  min-height: 311px;
  position: relative;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.vacancy-baner .getAdvise__title {
  color: #fff;
  margin: 0;
  margin-bottom: 4rem;
}

.vacancy-baner__img {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.vacancy-baner__img img {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.vacancy-list {
  background-color: #f5f8f9;
  padding: 2rem;
  margin-bottom: 2rem;
  padding-top: 3rem;
}

.vacancy-list-item {
  background-color: #fff;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 39.9375em) {
  .vacancy-list-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.vacancy-list-item.openned .vacancy-list-item__svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.vacancy-list-item.openned .vacancy-list-item__svg use {
  fill: #242424;
}

.vacancy-list-item.openned .vacancy-list-item__title {
  border-bottom: 1px solid #ff2e28;
}

.vacancy-list-item__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 4.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  cursor: pointer;
}

@media screen and (max-width: 39.9375em) {
  .vacancy-list-item__title {
    padding-right: 1rem;
  }
}
.vacancy-list-item__name {
  color: #40414c;
  font-size: 1.6rem;
  padding-right: 2rem;
  width: 30%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.vacancy-list-item__price {
  color: #ff2e28;
  font-size: 1.6rem;
  font-weight: 700;
  padding-right: 2rem;
  width: 27.5%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 27.5%;
  flex: 0 0 27.5%;
}

.vacancy-list-item__place {
  color: #40414c;
  font-size: 1.6rem;
  font-weight: 400;
  padding-right: 2rem;
  width: 27.5%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 27.5%;
  flex: 0 0 27.5%;
}

.vacancy-list-item__time {
  color: #40414c;
  font-size: 1.6rem;
  font-weight: 700;
  width: 15%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
}

.vacancy-list-item__ico {
  position: absolute;
  right: 0rem;
  top: calc(50% - 17px);
}

@media screen and (max-width: 39.9375em) {
  .vacancy-list-item__ico {
    display: none;
  }
}
.vacancy-list-item__svg use {
  fill: #ff2e28;
}

.vacancy-list-item__content {
  padding-bottom: 2rem;
  display: none;
  padding-top: 2rem;
}

.vacancy-list__subtitle {
  color: #40414c;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.vacancy-list-item-b {
  font-weight: 700;
  font-size: 16px;
  color: #40414c;
}

.vacancy-list-item__content p {
  margin-top: 0;
}

.vacancy-list-item__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 39.9375em) {
  .vacancy-list-item__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.vacancy-list-item__links a {
  margin-right: 2rem;
}

@media screen and (max-width: 39.9375em) {
  .vacancy-list-item__links a {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.vacancy-list-item__links a:last-child {
  margin-right: 0;
}

.vacancy-list__link--g {
  font-size: 1.6rem;
  font-weight: 400;
  border: 2px solid #939393;
  border-radius: 3px;
  cursor: pointer;
  padding: 1rem 1rem;
  outline: none;
  color: #40414c;
  background: none;
  text-decoration: none;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  width: auto;
  padding: 1rem 3rem;
}

.vacancy-list__link--g:hover {
  background: #939393;
  color: #fff;
}

.vacancy-list__link--b {
  font-size: 1.6rem;
  font-weight: 400;
  border: 2px solid #121212;
  border-radius: 3px;
  cursor: pointer;
  padding: 1rem 1rem;
  outline: none;
  color: #40414c;
  background: none;
  text-decoration: none;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  width: auto;
  padding: 1rem 3rem;
}

.vacancy-list__link--b:hover {
  background: #121212;
  color: #fff;
}

.vacancy-list__link--r {
  font-size: 1.6rem;
  font-weight: 400;
  border: 2px solid #ff2e28;
  border-radius: 3px;
  cursor: pointer;
  padding: 1rem 1rem;
  outline: none;
  color: #40414c;
  background: none;
  text-decoration: none;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  width: auto;
  padding: 1rem 3rem;
}

.vacancy-list__link--r:hover {
  background: #ff2e28;
  color: #fff;
}

@media screen and (max-width: 39.9375em) {
  .vacancy-baner .getAdvise__title {
    margin-bottom: 0px;
  }
  .vacancy-baner {
    min-height: 220px;
  }
  .vacancy-baner img {
    min-height: 220px;
  }
  .contacts__section__columns .contacts__section-column {
    border-bottom: 1px solid #bababa;
  }
  .contacts__section__columns .contacts__section-column:last-child {
    border-bottom: none;
  }
}
#victories_area p {
  font-size: 11pt;
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center;
  padding: 1em;
}

#victories_area img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.header__wrapper {
  white-space: nowrap;
  font-size: 18pt;
  font-family: Arial, Helvetica;
}

@media screen and (max-width: 63.9375em) and (min-width: 40em) {
  .header__wrapper {
    display: -webkit-flex;
    display: inline-flex;
    padding-left: 40px;
    font-size: 16pt;
  }
  .getAdvise__title {
    padding-left: 80px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 63.9375em) {
  .getAdvise {
    background: url(../img/small/bg_small.jpg) no-repeat;
    background-position: right;
    background-size: cover;
  }
  .getAdvise__title:before {
    left: 2rem !important;
  }
  .staffSharing__text {
    height: auto !important;
  }
  .swipper-item-background {
    height: 300px !important;
  }
  .services-slider__wrapper {
    margin-top: 300px !important;
    margin-left: 0px !important;
    margin-bottom: 0px !important;
  }
  .services-slider .swiper-pagination {
    width: 100% !important;
    left: auto !important;
    bottom: 0px !important;
    top: 250px !important;
  }
  .services-slider__wrapper {
    width: auto !important;
  }
  .services-slider-next {
    bottom: 100px !important;
    top: 130px !important;
    right: 20px;
    left: auto;
    display: block !important;
  }
  .services-slider-prev {
    bottom: 100px !important;
    top: 130px !important;
    right: auto;
    left: 20px;
    display: block !important;
  }
}
@media screen and (max-width: 39.9375em) {
  #sticker-menu {
    border: none;
  }
  #sticker-menu a {
    display: block;
    background-color: #ececec;
    margin-bottom: 5px;
    text-align: center;
    color: #aaaaaa;
  }
  .getAdvise__title {
    padding-left: 40px;
    margin-top: 40px;
    font-size: 1.8rem !important;
    width: 50%;
  }
  .staffSharingTitle {
    display: none;
  }
  .footer__top {
    padding: 15px;
  }
  .getAdvise__title:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    background-position: 0px 0px;
    background-image: url(../img/png-sprite/96dpi/sprite.png);
    background-size: 71px 61px;
    background-repeat: no-repeat;
    display: block;
    top: -2.5rem;
    left: -0.2rem;
  }
  .services-slider__wrapper {
    padding: 20px !important;
  }
}
.swipper-item-background {
  width: 100%;
  height: 500px;
  background-position: right;
  background-size: cover;
}

.services-slider__item {
  padding: 0px !important;
}

.services-slider__wrapper {
  float: left;
  padding: 50px;
  margin-top: 130px;
  margin-left: 50px;
  margin-bottom: 50px;
}

.row.row-overflow {
  overflow-x: hidden;
}

.services-slider-next {
  bottom: 210px;
}

.services-slider-prev {
  bottom: 210px;
}

.contacts-current {
  margin-bottom: 30px;
}

.red-button {
  background: #ff2e28 !important;
  color: #fff !important;
  border: 2px solid #ff2e28 !important;
}

.left-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.right-wrapper {
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#plus .name {
  font-weight: bold;
  font-size: 3.9rem;
  color: #000000;
  text-align: center;
}

@media screen and (max-width: 63.9375em) and (min-width: 40em) {
  #plus {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#plus {
  margin-top: 115px;
  margin-bottom: 100px;
}

#plus .description {
  color: #6d6d73;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
}

#plus img {
  margin-top: 45px;
  margin-bottom: 15px;
}

#plus .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#plus .item .name-first {
  color: #ff2e28;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

#plus .item .name-second {
  color: #14151a;
  font-size: 2rem;
  font-weight: 700;
}

#plus .item .detail {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
}

@media screen and (min-width: 63.9375em) {
  #plus .item .detail {
    color: #fff;
    display: flex;
    min-width: 241px;
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: 50%;
    right: -50%;
    margin-top: 12px;
    background: #2d2c37;
    z-index: 5;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 8px 16px 0 rgba(26, 26, 26, 0.04);
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    visibility: hidden;
    opacity: 0;
    -ms-transform: translate(-50%, 14px);
    transform: translate(-50%, 14px);
  }
  #plus .item:hover .detail::after {
    content: "";
    position: absolute;
    border: 24px solid transparent;
    border-bottom: 10px solid #2d2c37;
    bottom: 100%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #plus .item:hover .detail {
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
  }
}
.menu-video {
  background-image: url(/local/templates/akme-business/static/img/play-menu-bg.png);
  background-repeat: no-repeat;
  background-position: left 50%;
  background-size: 18px;
  padding-left: 22px;
}

.banner-popup .description {
  padding-top: 20px;
}

.tender-form .security input {
  width: auto;
}

.tender-form .security {
  padding-top: 10px;
}

.tender-form .security-text {
  text-align: left;
  font-size: 12px;
}

.tender-button {
  width: 25.6rem;
  height: 4rem;
  font-size: 1.6rem;
  position: fixed;
  border-radius: 5px 5px 0 0;
  right: -10.5rem;
  z-index: 20;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 45rem;
  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;
  padding: 0rem !important;
}

.tender-button:before {
  content: "";
  margin-right: 1rem;
  width: 4rem;
  z-index: 2000;
  height: 50px;
  padding: 0rem !important;
  background-image: url("../img/hands.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.pointer-button {
  position: relative;
}

.pointer-button:hover {
  background: none !important;
}

.pointer-button:before {
  content: "";
  font-size: inherit;
  position: absolute;
  top: 1rem;
  bottom: -1rem;
  left: 1rem;
  right: -1rem;
  background-image: url("../img/pointer.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}

.footer_row {
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (min-width: 1420px) {
  .footer_row {
    flex-wrap: nowrap;
  }
}
.footer-column {
  justify-content: center;
  padding: 0;
  flex-grow: 1;
  flex-basis: 33%;
  min-width: 40%;
  margin-right: 10px;
}

@media screen and (min-width: 1420px) {
  .footer-column {
    flex-basis: 0;
    min-width: unset;
    margin-right: unset;
  }
  .footer-column + .footer-column {
    margin-left: 66px;
  }
}
.footer__bottom {
  justify-content: center;
}

.service_blocks .name {
  font-weight: bold;
  font-size: 3.9rem;
  color: #000000;
  text-align: center;
}

@media screen and (max-width: 63.9375em) and (min-width: 40em) {
  .service_blocks {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service_blocks {
  margin-top: 115px;
  margin-bottom: 100px;
}

.service_blocks .description {
  color: #6d6d73;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 45px;
}

.service_blocks {
  margin-top: 115px;
  margin-bottom: 100px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .service_blocks {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 39.9375em) {
  .service_blocks {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service_blocks .columns:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.service_blocks__title {
  color: #ff2e28;
  font-weight: bold;
  font-size: 3.9rem;
  text-align: left;
}

@media screen and (max-width: 39.9375em) {
  .service_blocks__title {
    font-size: 2rem;
  }
}
.service_blocks__subtitle {
  color: #40414c;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 1rem;
  width: 26rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 39.9375em) {
  .service_blocks__subtitle {
    width: inherit;
  }
}
.service_blocks__phone {
  color: #14151a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 2rem;
}

.service_blocks__cont {
  width: 55.9rem;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .service_blocks__cont {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 39.9375em) {
  .service_blocks__cont {
    width: 100%;
    margin-bottom: 30px;
  }
}
.service_blocks__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 21rem;
  border-radius: 3px;
  background-color: #f1f5f9;
}

.service_blocks__ico-cont {
  width: 27rem;
}

@media screen and (max-width: 39.9375em) {
  .service_blocks__ico-cont {
    width: 20rem;
  }
}
.service_blocks__ico {
  width: 23.3rem;
  height: 23.3rem;
  border-radius: 50%;
  position: relative;
  top: -1.3rem;
  left: 1.3rem;
}

@media screen and (max-width: 39.9375em) {
  .service_blocks__ico {
    width: 18.3rem;
    height: 18.3rem;
    top: 1.5rem;
    left: 0.3rem;
  }
}
.service_blocks__ico:before {
  content: "";
  display: block;
  position: absolute;
  width: 163px;
  height: 22px;
  background: url("../img//assets/service_blocks/shadow.png") no-repeat;
  z-index: -1;
  bottom: -1.3rem;
  left: calc(50% - 83px);
}

.service_blocks--item {
  background: #fff no-repeat;
  background-position: 50% 50%;
}

.service_blocks__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 2.5rem;
  padding-left: 1rem;
}

.service_blocks__buttons {
  border: 2px solid #ff2e28;
  border-radius: 3px;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service_blocks__buttons a {
  font-size: 1.2rem;
  color: #40414c;
  text-decoration: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 0.8rem 0rem;
}

@media screen and (max-width: 39.9375em) {
  .service_blocks__buttons a {
    padding: 0.8rem 1rem;
  }
}
.service_blocks__buttons a .fa {
  color: #ff2a24;
  margin-right: 1rem;
}

.service_blocks__buttons a:hover {
  background: #ff2e28;
  border-right: 2px solid #ff2e28 !important;
  color: #fff;
}

.service_blocks__buttons a:hover .fa {
  color: #fff;
}

.service_blocks__buttons a {
  border-right: 2px solid #ff2e28;
}

.service_blocks__buttons a:last-child {
  border-right: 2px solid #fff;
}

.service_blocks__buttons a:nth-child(1) .fa {
  font-size: 1.3em;
}

.page-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.page-404 .title {
  display: flex;
  justify-content: center;
  font-size: 15rem;
  line-height: 15rem;
  margin: 0rem !important;
  margin-bottom: 5rem !important;
  margin-top: 10rem !important;
}

.page-404 .description {
  justify-content: center;
  font-size: 4rem;
  line-height: 4rem;
  display: flex;
  margin-bottom: 2rem;
}

.page-404 .button {
  align-self: center;
}

.case-section-wrapper {
  border: none !important;
}

.wrapper-iso-icon {
  top: 30rem;
  position: fixed;
  z-index: 10;
  box-sizing: border-box;
  padding: 0 1rem;
  width: 8rem;
  height: 8rem;
  left: 0;
}

.wrapper-iso-icon .icon {
  width: 100%;
  height: auto;
  display: block;
}

.wrapper-iso-icon::before {
  top: -3rem;
}

.wrapper-iso-icon::before {
  transition-property: "background-color";
  transition-duration: 0.2s;
  transition-timing-function: ease;
  height: 12rem;
  z-index: -1;
  background: red;
  -ms-transform: skewY(45deg);
  transform: skewY(45deg);
}

.wrapper-iso-icon::before {
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 63.9375em) {
  .wrapper-iso-icon {
    display: none;
  }
}
@media screen and (max-width: 63.9375em) and (min-width: 40em) {
  #personal {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#personal {
  margin-top: 11.5rem;
  margin-bottom: 10rem;
  padding-left: 15px;
  padding-right: 15px;
}

#personal .name {
  font-weight: bold;
  font-size: 3.9rem;
  color: #000000;
  text-align: center;
}

#personal .wrapper {
  background: linear-gradient(#fff 0rem, #fff 80px, #efefef 80px, #efefef 180px, #fff 180px);
}

#personal .items .item {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 63.9375em) {
  #personal .items .item {
    background: linear-gradient(#fff 0px, #fff 35px, #efefef 35px, #efefef 135px, #fff 135px);
  }
}
#personal .name-first {
  margin-top: 2rem;
  font-weight: bold;
  font-size: 2.5rem;
  color: #000000;
}

#personal .name-second {
  font-size: 2rem;
  color: #6d6d73;
}

#personal .description {
  margin-top: 4.5rem;
  font-size: 1.8rem;
  color: #6d6d73;
  text-align: center;
}

#personal .button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  padding: 1.5rem 9rem;
  text-align: center;
  background-color: #d22630;
  color: #fff;
  margin: 0 auto;
  margin-top: 2rem;
  cursor: pointer;
  border-radius: 3px;
  max-width: 341px;
}

#personal .button:hover {
  opacity: 0.5;
}

#question {
  margin-top: 11.5rem;
}

#question .title-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

#question .title {
  font-size: 3.9rem;
  color: #000;
  font-weight: bold;
}

#question .items {
  max-width: 1120px;
}

#question .item {
  margin-top: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  height: 195px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 6rem;
  padding-bottom: 2rem;
}

#question .item .name-first {
  color: #6b6966;
  font-weight: bold;
  font-size: 3rem;
}

#question .item .name-second {
  color: #000000;
  font-size: 1.6rem;
  line-height: 1.8rem;
}

#question .item-1,
#question .item-2,
#question .item-3 {
  height: 204px !important;
}

#question .item-5 {
  padding-top: 4rem;
  padding-left: 6rem;
}

element.style {
  flex: 0 0 80.66667%;
  max-width: 45%;
}

@media print, screen and (min-width: 64em) {
  #question .width-45 {
    flex: 0 0 45%;
    max-width: 45%;
  }
  #question .width-55 {
    flex: 0 0 55%;
    max-width: 55%;
  }
}
#question .item-3 {
  position: relative;
}

#question .item-3::before {
  position: absolute;
  content: "";
  right: -50px;
  bottom: 0px;
  display: block;
  width: 214px;
  height: 173px;
  background-image: url(/local/templates/akme-business/static/img/assets/question/umbrello.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.form-custom {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 11.5rem;
  margin-bottom: 10rem;
  padding-left: 15px;
  padding-right: 15px;
}

.form-custom .title {
  color: #000000;
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
}

.form-custom .title .bold {
  font-weight: bold;
}

.form-custom .wrapper {
  display: flex;
  justify-content: center;
  max-width: 867px;
  width: 100%;
  padding-bottom: 20px;
}

.form-custom .wrapper-form-header {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  margin: 0 auto;
  position: relative;
}

.form-custom .wrapper-form-header::before {
  position: absolute;
  background-color: #cddbe8;
  display: block;
  content: "";
  z-index: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 10px;
  opacity: 0.8;
  top: -10px;
  left: 10px;
  right: 10px;
  bottom: 50px;
}

.form-custom .title-sub {
  color: #000000;
  font-size: 2.4rem;
  text-align: center;
  margin-top: 2rem;
}

.form-custom .title-sub .bold {
  font-weight: bold;
}

.form-custom .items {
  padding-bottom: 6rem;
  padding-left: 7rem;
  padding-right: 7rem;
}

.form-custom .items input {
  width: 100%;
  font-size: 1.8rem;
  padding: 1.5rem 1rem;
  background-color: #efefef;
  height: 5rem;
}

.form-custom .items input::placeholder {
  font-size: 1.3rem;
  color: #6d6d73;
}

.form-custom .items button {
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  height: 5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  background-color: #d22630;
  color: #fff;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 3px;
  max-width: 341px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.form-custom .items button:hover {
  opacity: 0.5;
}

.form-custom .title-info {
  color: #000000;
  font-size: 3rem;
  margin-top: 5rem;
}

.form-custom .info-item {
  display: flex;
  align-items: center;
}

.form-custom .info-item-1 {
  margin-bottom: 4rem;
  justify-content: start;
}

.form-custom .info-item-2 {
  margin-bottom: 6rem;
}

.form-custom .img-wrapper {
  width: 100px;
  display: flex;
  justify-content: center;
}

.form-custom .info-item-1 .img-wrapper {
  justify-content: left;
}

.form-custom .info-item .description {
  color: #000000;
  font-size: 1.7rem;
}

.form-custom .info-item .description .bold {
  font-weight: bold;
  color: #000000;
  font-size: 1.7rem;
}

.form-custom .item-right {
  position: relative;
  text-align: end;
}

.form-custom .item-right img {
  position: absolute;
  left: -50px;
  height: 367px;
}

.form-custom .name-blue {
  display: inline-flex;
  font-size: 2.2rem;
  padding: 1rem 1.5rem;
  text-align: center;
  border-radius: 5px;
  background-color: #326295;
  margin-top: 8rem;
  transform: skew(-20deg);
}

.form-custom .name-blue span {
  font-size: 1.9rem;
  text-align: center;
  color: #fff;
  transform: skew(20deg);
}

.form-custom .name-second {
  color: #000000;
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-left: -15px;
}

.form-custom .term {
  color: #6d6d73;
  font-size: 1rem;
}

@media screen and (max-width: 39.9375em) {
  .form-custom .item-right {
    position: relative;
    text-align: center !important;
    margin-bottom: 2rem;
  }
  .form-custom .item-right img {
    position: relative;
    max-width: 100%;
    left: unset !important;
    height: auto;
  }
  .form-custom .name-blue {
    margin-top: 1rem !important;
  }
  .form-custom .item-right img {
    display: none !important;
  }
}
#reason {
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-left: 15px;
  padding-right: 15px;
}

#reason .items {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.documents-nav__buttons {
  margin: calc(1rem - 5px) -5px -5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% + 10px);
}
@media screen and (min-width: 1280px) {
  .documents-nav__buttons {
    margin-top: calc(1.5rem - 5px);
  }
}
.documents-nav__button {
  padding: 0.7em 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  margin: 5px;
  padding: 10px;
  color: #25282A;
  background: #F0F4F6;
  font-size: 0.6rem;
  font-weight: normal;
  min-width: 9rem;
  flex-grow: 1;
}
.documents-nav__button:hover {
  opacity: 0.5;
}
.documents-nav__button:hover {
  background: #D22630;
  color: #fff;
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .documents-nav__button {
    padding: 0.5rem;
    margin-top: 0.9rem;
  }
}
@media screen and (min-width: 1470px) {
  .documents-nav__button {
    flex-grow: 0;
    width: 17.4rem;
  }
}

.work-scheme {
  align-items: start;
}
.work-scheme__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.work-scheme__item {
  display: flex;
  font-size: 0.6rem;
  align-items: center;
}
.work-scheme__item + .work-scheme__item {
  margin-top: 0.3125rem;
}
.work-scheme__item-number {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background: #D22630;
  border-radius: 50%;
  flex-shrink: 0;
}

.advantages2 {
  align-items: start;
  background: #F0F4F6;
}
.advantages2__list {
  list-style: none;
  padding: 0;
}
.advantages2__item {
  font-size: 0.6rem;
  border-left: 0.1875rem solid #D22630;
  padding-left: 0.625rem;
}
.advantages2__item + .advantages2__item {
  margin-top: 0.3125rem;
}

.video-block {
  background: #F0F4F6;
}
.video-block__video {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 1rem;
  border-radius: 0.2rem;
}
@media screen and (min-width: 1280px) {
  .video-block__video {
    margin: 1.5rem 0 0;
  }
}

.documents__list {
  margin-top: 1.25rem;
}
.documents__item {
  display: flex;
  flex-direction: column;
}
.documents__item + .documents__item {
  margin-top: 0.625rem;
}
@media screen and (min-width: 520px) {
  .documents__item {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1366px) {
  .documents__item {
    flex-wrap: nowrap;
  }
}
.documents__item-name {
  background: #CDDDF6;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 0.6rem;
  padding: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .documents__item-name {
    width: 100%;
  }
}
@media screen and (min-width: 1366px) {
  .documents__item-name {
    width: 21.8%;
    flex-shrink: 0;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
  }
}
.documents__item-description {
  margin-top: 1px;
  padding: 1.25rem 0.625rem;
  font-size: 0.6rem;
  background: #F0F4F6;
  box-sizing: border-box;
}
@media screen and (min-width: 520px) {
  .documents__item-description {
    width: 50%;
  }
}
@media screen and (min-width: 1366px) {
  .documents__item-description {
    width: unset;
    display: flex;
    align-items: center;
    margin-top: 0px;
    margin-left: 1px;
  }
}
.documents__item-images {
  margin-top: 1px;
  padding: 1.25rem 0.625rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background: #F0F4F6;
  box-sizing: border-box;
  gap: 10px;
}
@media screen and (min-width: 520px) {
  .documents__item-images {
    width: 50%;
  }
}
@media screen and (min-width: 1366px) {
  .documents__item-images {
    margin-top: 0px;
    margin-left: 1px;
    flex-shrink: 0;
    width: 31.5%;
  }
}
.documents__item-image {
  max-width: 100%;
  max-height: 7.5rem;
  object-fit: contain;
}
@media screen and (min-width: 1366px) {
  .documents__item-image {
    max-height: 10rem;
  }
}

@media (min-width: 64em) {
  #reason {
    margin: 0 auto;
    height: 724px;
    margin-top: 11.5rem;
  }
  #reason .items {
    height: 100%;
    background-image: url("/local/templates/akme-business/static/img/assets/reason/reason.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 628px 588px;
  }
  #reason .wrapper-left,
  #reason .wrapper-right {
    height: 100%;
  }
  #reason .wrapper-left {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  #reason .wrapper-left .item {
    color: #ffffff;
    font-size: 1.6rem;
    text-align: right;
  }
  #reason .wrapper-left .item-5 {
    padding-top: 80px;
    padding-right: 150px;
  }
  #reason .wrapper-left .item-4 {
    padding-top: 30px;
    padding-right: 265px;
  }
  #reason .wrapper-left .item-3 {
    padding-top: 60px;
    padding-right: 325px;
  }
  #reason .wrapper-left .item-2 {
    padding-top: 90px;
    padding-right: 320px;
  }
  #reason .wrapper-left .item-1 {
    padding-top: 77px;
    padding-right: 240px;
  }
  #reason .wrapper-right {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  #reason .wrapper-right .item {
    color: #ffffff;
    font-size: 1.6rem;
    text-align: left;
  }
  #reason .wrapper-right .item-5 {
    padding-top: 80px;
    padding-left: 150px;
  }
  #reason .wrapper-right .item-4 {
    padding-top: 30px;
    padding-left: 265px;
  }
  #reason .wrapper-right .item-3 {
    padding-top: 60px;
    padding-left: 325px;
  }
  #reason .wrapper-right .item-2 {
    padding-top: 60px;
    padding-left: 320px;
  }
  #reason .wrapper-right .item-1 {
    padding-top: 60px;
    padding-left: 240px;
  }
  #reason .pointer {
    display: none;
  }
  #reason {
    position: relative;
  }
  #reason .title {
    position: absolute;
    display: block;
    flex-direction: column;
    margin: 0 auto;
  }
  #reason .title .number {
    font-size: 26rem;
    line-height: 22rem;
    font-weight: 900;
    color: #d22630;
    text-align: center;
  }
  #reason .title .description {
    font-size: 3.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #ffffff;
  }
}
@media screen and (max-width: 63.9375em) {
  #reason {
    margin-top: 11.5rem;
  }
  #reason .wrapper-left,
  #reason .wrapper-right {
    flex-direction: column;
  }
  #reason .wrapper-left,
  #reason .wrapper-right {
    height: 100%;
  }
  #reason .wrapper-left {
    display: flex;
  }
  #reason .item {
    display: flex;
    position: relative;
    padding-left: 70px;
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    height: 60px;
    align-items: center;
  }
  #reason .wrapper-right .item br,
  #reason .wrapper-left .item br {
    display: none;
  }
  #reason .items {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: flex-start;
  }
  #reason .pointer {
    position: absolute;
    left: 0px;
    display: inline-flex;
    width: 60px;
    height: 60px;
    background-image: url(/local/templates/akme-business/static/img/assets/reason/pointer.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    color: #d22630;
    font-size: 3rem;
  }
  #reason .title {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: block;
  }
  #reason .title .number {
    font-size: 26rem;
    line-height: 22rem;
    font-weight: 900;
    color: #d22630;
    text-align: center;
  }
  #reason .title .description {
    font-size: 3.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #ffffff;
  }
}
.form-payment-consultation {
  margin-bottom: 0px;
}

@media screen and (max-width: 39.9375em) {
  .service_blocks {
    margin-bottom: 0px !important;
  }
  #personal {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  #reason {
    margin-top: 30px !important;
  }
  #question {
    margin-top: 30px !important;
  }
  .form-custom {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .form-custom .title-info {
    margin-bottom: 1rem;
  }
  .form-custom .item-right {
    display: none;
  }
  .form-custom .title br {
    display: none;
  }
  .form-custom .title-sub br {
    display: none;
  }
  #quality {
    margin-top: 30px !important;
  }
  #plus {
    margin-top: 30px !important;
  }
}
.g-recaptcha {
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
