:root {
  --font-family: "Rubik", sans-serif;
  --content-width: 1180px;
  --container-offset: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --main-color: #000;
  --secondary-color: #fff;
  --light-green-color: #25bb4f;
  --green-color: #0e8d32;
  --dark-green-color: #086a23;
  --grey-color: #7d8c8f;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Rubik";
  src: url("/fonts/Rubik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/fonts/Rubik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/fonts/Rubik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/fonts/Geometria-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/fonts/Geometria-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 20px;
  line-height: 118.5%;
}
.page__body .main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
.page__body.sidebar--active {
  overflow: hidden;
}
.page__body.sidebar--active .header, .page__body.sidebar--active .main, .page__body.sidebar--active .footer {
  -webkit-transform: translateX(-456px);
  -ms-transform: translateX(-456px);
  transform: translateX(-456px);
}
@media (max-width: 576px) {
  .page__body.sidebar--active .header, .page__body.sidebar--active .main, .page__body.sidebar--active .footer {
    -webkit-transform: translateX(-320px);
    -ms-transform: translateX(-320px);
    transform: translateX(-320px);
  }
}

.header.fixed-block {
  background-color: #fff;
}

.header,
.main,
.footer {
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn {
  display: inline-block;
  font-family: "Geometria", sans-serif;
  color: var(--secondary-color);
  padding: 17px 51px;
  background: var(--light-green-color);
  -webkit-box-shadow: 0px 2px 42px rgba(37, 187, 79, 0.8);
  box-shadow: 0px 2px 42px rgba(37, 187, 79, 0.8);
  border-radius: 74px;
  text-align: center;
  font-weight: 400;
  -webkit-transition: background 0.3s ease 0s, color 0.3s ease 0s, border 0.3s ease 0s;
  transition: background 0.3s ease 0s, color 0.3s ease 0s, border 0.3s ease 0s;
  border: 2px solid transparent;
  font-size: 20px;
  line-height: 125%;
  cursor: pointer;
}
@media (any-hover: hover) {
  .btn:hover {
    background: var(--secondary-color);
    color: var(--light-green-color);
    border: 2px solid var(--light-green-color);
  }
}

.btn-hover {
  background: var(--secondary-color);
  color: var(--light-green-color);
  border: 2px solid var(--light-green-color);
}
.btn--active, .btn:active {
  background: var(--secondary-color);
  color: var(--light-green-color);
  border: 2px solid var(--light-green-color);
}

.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 119.4444444444%;
  text-align: center;
  margin: 0;
}
.title span {
  color: var(--light-green-color);
}

.subtitle {
  text-align: center;
  margin: 0;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .btn {
    padding: 11px 39px;
    font-size: 12px;
    line-height: 125%;
  }
  .title {
    font-size: 24px;
    line-height: 116.6666666667%;
  }
  .subtitle {
    font-size: 12px;
    line-height: 116.6666666667%;
    margin-top: 7px;
  }
}
.page__body.scroll .header {
  background: #ffffff;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  font-family: "Geometria", sans-serif;
  padding: 20px 0px;
}
.header__container {
  max-width: 1310px;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  margin-right: 37px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header__menu {
  margin-right: 37px;
}
.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
}
.header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__btn:not(:last-child) {
  margin-right: 20px;
}
.header__burger {
  display: none;
}

.logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo__img {
  width: 140px;
  min-width: 140px;
}

.menu {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.menu__item--submenu:hover .submenu {
  display: block;
}
.menu__item:not(:last-child) {
  margin-right: 9px;
}
.menu__link {
  display: inline-block;
  padding: 5px;
  font-size: 15px;
  line-height: 125.8%;
  text-align: center;
  color: var(--main-color);
  -webkit-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: var(--light-green-color);
    text-decoration: underline;
  }
}
.menu__link--attention {
  font-weight: 700;
  color: #25bb4f;
  text-transform: uppercase;
}

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social__link:not(:last-child) {
  margin-right: 20px;
}
.social__link path {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}
.social__link--active path, .social__link:active path {
  fill: var(--grey-color);
}
@media (any-hover: hover) {
  .social__link:hover path {
    fill: var(--grey-color);
  }
}
.social__img {
  width: 25px;
  min-width: 25px;
  height: 25px;
}

.btn-menu--light {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  text-transform: uppercase;
  color: var(--light-green-color);
  -webkit-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
}
@media (any-hover: hover) {
  .btn-menu--light:hover {
    color: var(--green-color);
    text-decoration: underline;
  }
}

.btn-menu {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  color: var(--secondary-color);
  padding: 12px 47px;
  background: var(--light-green-color);
  border-radius: 6px;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
@media (any-hover: hover) {
  .btn-menu:hover {
    background: var(--grey-color);
  }
}
.btn-menu--active, .btn-menu:active {
  background: var(--grey-color);
}

@media (max-width: 1310px) {
  .header__logo {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .header__menu {
    display: none;
  }
  .header__login {
    margin-right: 30px;
  }
  .burger {
    display: block;
    --burger-width: 31px;
    --burger-height: 24px;
    --burger-line-height: 4px;
    position: relative;
    border: none;
    padding: 0;
    width: var(--burger-width);
    height: var(--burger-height);
    color: var(--green-color);
    background-color: transparent;
    cursor: pointer;
  }
  .burger::before, .burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--burger-line-height);
    border-radius: 47px;
    background-color: currentColor;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .burger::before {
    top: 0;
  }
  .burger::after {
    top: calc(100% - var(--burger-line-height));
  }
  .burger__line {
    position: absolute;
    right: 0;
    top: 50%;
    width: 77.4193548387%;
    height: var(--burger-line-height);
    border-radius: 47px;
    background-color: currentColor;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .burger--active::before {
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .burger--active::after {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .burger--active .burger__line {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
@media (max-width: 700px) {
  .header__social {
    display: none;
  }
}
@media (max-width: 576px) {
  .header__login {
    display: none;
  }
}
.submenu {
  display: none;
  position: absolute;
  z-index: 400;
  width: 290px;
  background-color: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 15px rgba(65, 65, 65, 0.28);
  box-shadow: 0 0 15px rgba(65, 65, 65, 0.28);
}
.submenu li {
  width: 100%;
}
.submenu a, .submenu span {
  color: #000;
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  display: inline-block;
  width: 100%;
  padding: 20px 32px;
}
.submenu a:hover {
  background-color: #F9F9F9;
}

.sidebar {
  height: 100%;
  width: 100%;
  max-width: 456px;
  background: var(--light-green-color);
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  padding: 30px 40px;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: url(../img/sidebar-bg.svg);
  background-repeat: no-repeat;
  background-size: 236px;
  background-position: -100px calc(100% + 72px);
  -webkit-transition: right 0.5s ease 0s;
  transition: right 0.5s ease 0s;
  -webkit-transform: translateX(456px);
  -ms-transform: translateX(456px);
  transform: translateX(456px);
  -webkit-transition: max-width 0.5s ease 0s, visibility 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  transition: max-width 0.5s ease 0s, visibility 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, max-width 0.5s ease 0s, visibility 0.5s ease 0s;
  transition: transform 0.5s ease 0s, max-width 0.5s ease 0s, visibility 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  visibility: hidden;
}
.sidebar__close {
  position: relative;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  min-height: 20px;
  color: var(--secondary-color);
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 58px;
}
.sidebar__close::before, .sidebar__close::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.sidebar__close::before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.sidebar__close::after {
  top: calc(100% - var(--burger-line-height));
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.sidebar__list {
  margin-bottom: 42px;
}
.sidebar__item {
  text-align: right;
}
.sidebar__item:not(:last-child) {
  margin-bottom: 25px;
}
.sidebar__item.sub-item {
  margin-bottom: 10px !important;
  display: none;
}
.sidebar__item.sub-item a {
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
}
.sidebar__link {
  font-size: 19.5px;
  line-height: 128.2051282051%;
  color: var(--secondary-color);
  font-weight: 400;
}
.sidebar__link.openned svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sidebar__link--attention {
  font-weight: 700;
  text-transform: uppercase;
}
.sidebar__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 27px;
}
.sidebar__btn:not(:last-child) {
  margin-right: 22px;
}
.sidebar__btn--normal {
  padding: 12px 50px;
  border-radius: 6px;
  color: var(--light-green-color);
  font-size: 16px;
  line-height: 125%;
  background: var(--secondary-color);
}
.sidebar__btn--light {
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
}
.sidebar__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sidebar__social path {
  fill: var(--secondary-color);
}
.sidebar .social__img {
  width: 29px;
  height: 29px;
}
.sidebar .social__link--active path, .sidebar .social__link:active path {
  fill: var(--secondary-color);
}
@media (any-hover: hover) {
  .sidebar .social__link:hover path {
    fill: var(--secondary-color);
  }
}

.sidebar--active .sidebar {
  visibility: visible;
  overflow: auto;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media (max-width: 576px) {
  .sidebar {
    max-width: 320px;
    -webkit-transform: translateX(320px);
    -ms-transform: translateX(320px);
    transform: translateX(320px);
    padding: 15px 20px;
  }
  .sidebar__close {
    width: 16px;
    height: 16px;
    min-height: 16px;
    margin-bottom: 44px;
  }
  .sidebar__list {
    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: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 21px;
    pointer-events: none;
  }
  .sidebar__item {
    pointer-events: auto;
    text-align: right;
  }
  .sidebar__item:not(:last-child) {
    margin-bottom: 19px;
  }
  .sidebar__link {
    font-size: 15px;
    line-height: 126.6666666667%;
  }
  .sidebar__login {
    pointer-events: none;
    margin-bottom: 21px;
  }
  .sidebar__btn {
    pointer-events: auto;
  }
  .sidebar__btn:not(:last-child) {
    margin-right: 17px;
  }
  .sidebar__btn--normal {
    padding: 10px 39px;
    border-radius: 5px;
    font-size: 12.5px;
    line-height: 128%;
  }
  .sidebar__btn--light {
    font-size: 12.5px;
    line-height: 128%;
  }
  .sidebar .social__img {
    width: 22px;
    height: 22px;
  }
}
.sidebar__item {
  opacity: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  will-change: transform;
}

.sidebar--active .sidebar__item {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.footer {
  background: var(--light-green-color);
  padding: 46px 0 88px;
  color: var(--secondary-color);
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.footer__logo .logo__img {
  width: 192px;
  height: 53px;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__row:not(:last-child) {
  margin: 0px 0px 20px 0px;
}
.footer__col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer__col:not(:last-child) {
  margin: 0px 0px 0px 0px;
}
.footer__col-left {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}
.footer__col-right {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.footer__text {
  font-size: 15px;
  line-height: 120%;
}
.footer__text-link {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: var(--secondary-color);
}
.footer__menu {
  font-family: "Geometria", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 23px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: -19px;
}
.footer__menu-item {
  margin-right: 19px;
  text-align: center;
}
.footer__menu-link {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  color: var(--secondary-color);
}
.footer__menu-link--attention {
  font-weight: 700;
  text-transform: uppercase;
}
.footer__submenu {
  font-family: "Geometria", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: -19px;
  position: relative;
}
.footer__submenu-item {
  margin-right: 19px;
}
.footer__submenu-link {
  font-size: 18px;
  line-height: 127.7777777778%;
  text-align: center;
  color: var(--secondary-color);
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.footer__social .social__link {
  font-size: 15px;
  line-height: 120%;
  color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__social .social__link .social__img {
  margin-right: 7px;
}
.footer__social .social__link path {
  fill: var(--secondary-color);
}
.footer__address {
  display: inline-block;
  font-size: 15px;
  line-height: 120%;
  color: var(--secondary-color);
}
.footer__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer__payment-img {
  height: 25px;
}
.footer__payment-img:not(:last-child) {
  margin: 0px 20px 0px 0px;
}
.footer__copyright {
  margin: 0;
  font-size: 13px;
  line-height: 115.3846153846%;
  color: #5aeb83;
}

@media (max-width: 768px) {
  .footer {
    padding: 61px 0;
  }
  .footer__payment {
    margin-bottom: 25px;
  }
  .footer__submenu-link {
    font-size: 15px;
  }
  .footer__social .social__link .social__img {
    margin-right: 0;
  }
  .footer__social span {
    display: none;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 44px 0 22px;
  }
  .footer__logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 48px;
  }
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__row--revers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .footer__col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .footer__menu-item {
    margin: 0;
  }
  .footer__menu-item:not(:last-child) {
    margin: 0px 0px 15px 0px;
  }
  .footer__submenu {
    -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-bottom: 48px;
    margin-right: 0;
  }
  .footer__submenu-item {
    margin: 0;
  }
  .footer__submenu-item:not(:last-child) {
    margin: 0px 0px 15px 0px;
  }
  .footer__text {
    text-align: center;
  }
  .footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__address {
    margin-bottom: 32px;
  }
  .footer__payment {
    margin-bottom: 32px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__payment-img {
    height: 22px;
  }
}
.another_links {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50px;
}
.another_links a {
  color: var(--secondary-color);
  margin-right: 5px;
}
@media (max-width: 1000px) and (min-width: 576px) {
  .another_links {
    right: 15px;
    left: unset;
  }
}
@media (max-width: 575px) {
  .another_links {
    display: none;
  }
}

.tap-to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  right: -67px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  font-weight: 500;
  font-size: 17px;
  line-height: 117.6470588235%;
  color: var(--light-green-color);
  background: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s;
}
.tap-to-top::after {
  content: "";
  display: block;
  height: 13px;
  width: 103px;
  padding-left: 14px;
  background: url(../img/arrow-to-top.svg) no-repeat center right;
}
.tap-to-top--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s ease 0s, visibility 1s ease 0s;
  transition: opacity 1s ease 0s, visibility 1s ease 0s;
}

@media (max-width: 768px) {
  .tap-to-top {
    display: none;
  }
}
.page--thanks .site-container {
  position: relative;
}
.page--thanks .site-container::before {
  content: "";
  position: absolute;
  background: url(../img/left-circle-bg.svg) no-repeat right top/contain;
  left: -280px;
  top: 800px;
  width: 377px;
  height: 377px;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 1s ease-in 0s;
  transition: -webkit-transform 1s ease-in 0s;
  transition: transform 1s ease-in 0s;
  transition: transform 1s ease-in 0s, -webkit-transform 1s ease-in 0s;
  -webkit-animation: slideInDown 1500ms forwards;
  animation: slideInDown 1500ms forwards;
}
@media (max-width: 1024px) {
  .page--thanks .site-container::before {
    background: url(../img/left-circle-tablet-bg.svg) no-repeat left top;
    left: -20px;
    width: 79px;
    height: 454px;
    top: 66px;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: none;
    animation: none;
  }
}
@media (max-width: 768px) {
  .page--thanks .site-container::before {
    background: url(../img/left-circle-mobile-bg.svg) no-repeat left top;
    left: 0;
    width: 33px;
    height: 237px;
    top: 140px;
  }
}
@media (max-width: 576px) {
  .page--thanks .site-container::before {
    left: -10px;
  }
}
.page--thanks .site-container::after {
  content: "";
  position: absolute;
  background: url(../img/right-circle-mobile-bg.svg) no-repeat left top/contain;
  right: -230px;
  top: 41px;
  width: 299px;
  height: 299px;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: slideInDown 2000ms forwards;
  animation: slideInDown 2000ms forwards;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
@media (max-width: 1024px) {
  .page--thanks .site-container::after {
    background: url(../img/right-line-tablet-bg.svg) no-repeat right top;
    right: 0;
    width: 154px;
    height: 68px;
    top: 103px;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: none;
    animation: none;
  }
}
@media (max-width: 768px) {
  .page--thanks .site-container::after {
    background: url(../img/right-circle-mobile-bg.svg) no-repeat right top;
    width: 100%;
    left: 0;
    min-width: 320px;
    height: 82px;
    top: 64px;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.page--thanks .main {
  padding-top: 165px;
}
@media (max-width: 1024px) {
  .page--thanks .main {
    background: none;
    padding-top: 150px;
  }
}
@media (max-width: 1024px) and (max-width: 576px) {
  .page--thanks .main {
    padding-top: 110px;
  }
}
@media (max-width: 576px) {
  .page--thanks .main::before {
    content: "";
    position: absolute;
    background: url(../img/left-arrow-tablet-bg.svg) no-repeat left top/contain;
    left: 0;
    top: 80px;
    width: 35px;
    height: 80px;
    pointer-events: none;
    z-index: 10;
  }
}
.page--thanks .main::after {
  content: "";
  position: absolute;
  background: url(../img/right-line-bg.svg) no-repeat right top;
  right: 0;
  top: 360px;
  width: 104px;
  height: 87px;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1024px) {
  .page--thanks .main::after {
    background: url(../img/right-circle-tablet-bg.svg) no-repeat right top/contain;
    width: 69px;
    height: 174px;
    top: 280px;
  }
}
@media (max-width: 768px) {
  .page--thanks .main::after {
    background: url(../img/right-line-mobile-bg.svg) no-repeat right top;
    width: 100%;
    left: 0;
    min-width: 320px;
    height: 18px;
    top: 300px;
  }
}
.page--thanks .footer {
  padding-top: 81px;
}

.thanks {
  margin-bottom: 225px;
}
@media (max-width: 1024px) {
  .thanks {
    margin-bottom: 140px;
  }
}
@media (max-width: 576px) {
  .thanks {
    margin-bottom: 190px;
  }
}
.thanks__container {
  max-width: 1500px;
  position: relative;
}
.thanks__content {
  max-width: var(--container-width);
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .thanks__content {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .thanks__content {
    margin-bottom: 46px;
  }
}
.thanks__title {
  font-size: 42px;
  line-height: normal;
  margin-bottom: 118px;
}
@media (max-width: 1024px) {
  .thanks__title {
    max-width: 430px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  .thanks__title span {
    display: inline-block;
  }
}
@media (max-width: 576px) {
  .thanks__title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}
.thanks__text {
  max-width: 580px;
  margin: 0;
  line-height: normal;
}
.thanks__text:not(:last-child) {
  margin: 0px 0px 15px 0px;
}
@media (max-width: 1024px) {
  .thanks__text {
    margin: 0 auto;
  }
  .thanks__text:not(:last-child) {
    margin: 0px auto 15px;
  }
}
@media (max-width: 576px) {
  .thanks__text {
    font-size: 14px;
  }
}
.thanks__link {
  color: var(--main-color);
  text-decoration: underline;
  font-weight: 500;
}
.thanks__image {
  position: absolute;
  bottom: -149px;
  right: 8%;
  padding-left: 600px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .thanks__image {
    padding-left: 0;
    bottom: -98px;
    right: auto;
    left: 5%;
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .thanks__image {
    bottom: -165px;
    padding-right: 20px;
  }
}
.thanks__rocket-bg {
  width: 100%;
  max-width: 610px;
  height: auto;
}
@media (max-width: 1024px) {
  .thanks__rocket-bg {
    max-width: 548px;
  }
}
@media (max-width: 576px) {
  .thanks__rocket-bg {
    max-width: 258px;
  }
}
.thanks__rocket {
  position: absolute;
  width: 100%;
  padding-left: 600px;
  top: 0;
  right: 0;
  -webkit-transition: -webkit-transform 1s ease-in-out 0s;
  transition: -webkit-transform 1s ease-in-out 0s;
  transition: transform 1s ease-in-out 0s;
  transition: transform 1s ease-in-out 0s, -webkit-transform 1s ease-in-out 0s;
}
@media (max-width: 1024px) {
  .thanks__rocket {
    padding-left: 0;
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .thanks__rocket {
    padding-right: 20px;
  }
}
.thanks__rocket-circle {
  position: absolute;
  width: 100%;
  padding-left: 600px;
  top: 0;
  right: 0;
  -webkit-animation: slideUpDown 3000ms infinite ease-in-out paused;
  animation: slideUpDown 3000ms infinite ease-in-out paused;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.thanks__rocket-circle:nth-child(4) {
  -webkit-animation-duration: 2000ms;
  animation-duration: 2000ms;
}
.thanks__rocket-circle:nth-child(5) {
  -webkit-animation-duration: 2500ms;
  animation-duration: 2500ms;
}
.thanks__rocket-circle:nth-child(6) {
  -webkit-animation-duration: 3000ms;
  animation-duration: 3000ms;
}
.thanks__rocket-circle:nth-child(7) {
  -webkit-animation-duration: 3500ms;
  animation-duration: 3500ms;
}
.thanks__rocket-circle:nth-child(8) {
  -webkit-animation-duration: 3000ms;
  animation-duration: 3000ms;
}
.thanks__rocket-circle:nth-child(9) {
  -webkit-animation-duration: 2200ms;
  animation-duration: 2200ms;
}
.thanks__rocket-circle:nth-child(10) {
  -webkit-animation-duration: 2500ms;
  animation-duration: 2500ms;
}
@media (max-width: 1024px) {
  .thanks__rocket-circle {
    padding-left: 0;
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .thanks__rocket-circle {
    padding-right: 20px;
  }
}

.box-thanks {
  border-radius: 25px;
  background: #FFD029;
  position: relative;
  overflow: hidden;
  padding: 0 70px 44px;
}
@media (any-hover: hover) {
  .box-thanks:hover + .thanks__image .thanks__rocket {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media (any-hover: hover) and (max-width: 1024px) {
  .box-thanks:hover + .thanks__image .thanks__rocket {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@media (any-hover: hover) {
  .box-thanks:hover + .thanks__image .thanks__rocket-circle {
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
}
@media (any-hover: hover) and (max-width: 1024px) {
  .box-thanks:hover + .thanks__image .thanks__rocket-circle {
    -webkit-animation: none;
    animation: none;
  }
}
@media (max-width: 1024px) {
  .box-thanks {
    padding: 0 70px 563px;
  }
}
@media (max-width: 576px) {
  .box-thanks {
    padding: 0 30px 140px;
  }
}
.box-thanks::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  left: -3%;
  top: -47%;
  border: 66px solid rgba(255, 255, 255, 0.19);
  pointer-events: none;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
@media (max-width: 1024px) {
  .box-thanks::before {
    width: 494px;
    height: 494px;
    top: 2%;
    left: -10%;
  }
}
@media (max-width: 576px) {
  .box-thanks::before {
    width: 310px;
    height: 310px;
    top: 30%;
    left: -40%;
  }
}
.box-thanks::after {
  content: "";
  display: block;
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: 3%;
  bottom: -12%;
  border: 29px solid rgba(255, 255, 255, 0.19);
  pointer-events: none;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
@media (max-width: 1024px) {
  .box-thanks::after {
    width: 450px;
    height: 450px;
    right: -10%;
    bottom: 8%;
  }
}
@media (max-width: 576px) {
  .box-thanks::after {
    width: 182px;
    height: 182px;
    right: -35%;
    bottom: -1%;
  }
}
.box-thanks__container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.box-thanks__wrap {
  border-radius: 0 0 25px 25px;
  background: rgba(255, 255, 255, 0.28);
  padding: 54px 95px 66px 100px;
  max-width: 580px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 18px;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .box-thanks__wrap {
    margin-bottom: 26px;
  }
}
@media (max-width: 768px) {
  .box-thanks__wrap {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .box-thanks__wrap {
    margin-bottom: 35px;
    gap: 20px;
    padding: 46px 20px 34px;
  }
}
.box-thanks__subtitle {
  color: #009B4B;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media (max-width: 768px) {
  .box-thanks__subtitle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
@media (max-width: 576px) {
  .box-thanks__subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.box-thanks__item:not(:last-child) {
  margin: 0px 18px 0px 0px;
}
.box-thanks__text {
  font-size: 18px;
  line-height: normal;
}
@media (max-width: 576px) {
  .box-thanks__text {
    font-size: 10px;
  }
}
.box-thanks__text:not(:last-child) {
  margin: 0px 0px 12px 0px;
}
@media (max-width: 576px) {
  .box-thanks__text:not(:last-child) {
    margin: 0;
  }
}
.box-thanks__text--strong {
  font-size: 22px;
  line-height: normal;
  font-weight: 700;
}
@media (max-width: 576px) {
  .box-thanks__text--strong {
    font-size: 16px;
  }
}
.box-thanks__description {
  margin: 0;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 500;
}
.box-thanks__description span, .box-thanks__description a {
  color: #009B4B;
}
@media (max-width: 1024px) {
  .box-thanks__description {
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .box-thanks__description {
    font-size: 16px;
  }
}

@-webkit-keyframes slideUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}

@keyframes slideUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}
.services {
  margin-bottom: -27px;
}
.services__container {
  max-width: 1500px;
  margin: 0 auto;
}
.services__wrap {
  background: #F9F9F9;
  padding: 74px 60px 24px;
  border-radius: 25px;
}
@media (max-width: 1024px) {
  .services__wrap {
    padding: 74px 60px 105px;
  }
}
@media (max-width: 576px) {
  .services__wrap {
    padding: 52px 20px 55px;
  }
}
.services__content {
  max-width: var(--container-width);
  margin: 0 auto;
}
.services__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  max-width: 488px;
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .services__title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 24px;
  }
}
.services__title span {
  color: #25BB4F;
}
.services__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(auto, 260px));
  gap: 50px 40px;
}
@media (max-width: 1024px) {
  .services__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .services__list {
    gap: 20px;
    text-align: left;
  }
}
.services__item {
  position: relative;
}
@media (max-width: 576px) {
  .services__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 1fr;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    -ms-flex-line-pack: start;
    align-content: start;
  }
  .services__item:nth-child(1) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
@media (max-width: 576px) {
  .services__link {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
.services__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services__img {
  width: 135px;
  height: 135px;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .services__img {
    width: 50px;
    height: 50px;
  }
}
.services__subtitle {
  color: #25BB4F;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .services__subtitle {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.services__text {
  font-size: 20px;
  line-height: normal;
  margin: 0;
}
.pay__title.title {
  margin-bottom: 40px;
}
.project-setup-navigation-wrap {
  margin-bottom: 56px;
}
.form-requirements {
  margin-bottom: 32px;
}


.project-form h3 {
  font-size: 24px;
}

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

  .pay__title.title {
    font-size: 24px;
  }

  .project-setup-navigation-wrap {
    margin-bottom: 40px;
  }
  .project-nav-link {
    font-size: 16px;
    padding: 12px 0px 13px 0px;
    height: 44px;
  }

  .form-requirements, .header-desc, .note {
    font-size: 14px;
  }

  .table.table-hover {
    overflow-x: auto;
  }

  #sites-black-list-editor-wrap {
    margin-top: 20px;
  }

/*  #projectform-comment {
    font-size: 12px;
  }*/

  .project-form h3 {
    font-size: 18px;
  }
  .main-form h3 {
    font-size: 18px;
  }

  .form-group .form-control {
    font-size: 12px!important;
    height: 34px!important;
  }
  .form-group textarea.form-control {
    height: auto!important;
  }
  label.control-label {
    font-size: 16px!important;
  }
}


.btn-reset-style {
  min-width: 140px!important;
  line-height: 60% !important;
  margin-bottom: 0!important;
}

.hidden-input {
  opacity: 0;
  width: 0;
  float: left;
}

.float-right {
  float: right;
}


.btn {
  line-height: initial;
  font-family: "Rubik", sans-serif;
  box-shadow: none;
}


.ancor-list-thead > tr {
  border: 1px solid #B7B7B7;
  background: #25BB4F;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ancor-list-thead > tr > th {
  font-weight: 400;
}
.ancor-list-thead > tr > th:first-child {
  border-radius: 11px 0px 0px 0px;
}
.ancor-list-thead > tr > th:last-child {
  border-radius: 0px 11px 0px 0px;
}

.container .container {
  padding-left: 0;
  padding-right: 0;
}
.container .container .container {
  padding-left: 0;
  padding-right: 0;
}

.field__property input[type=checkbox] {
  margin-right: 12px;
}

.field__value input[type=text] {
  text-align: center;
}


#universal-modal, #selectProjectType {
  background-image: url(/images/alfa-bg.png);
}

#selectProjectType .modal-content {
  display: flex;
  max-width: 580px;
  padding: 38px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.50);

  color: var(--black, #000);
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

#selectProjectType .modal-header {
  width: 100%;
}

.mb-12px {
  margin-bottom: 12px;
}
.mb-24px {
  margin-bottom: 24px;
}



#sites-black-list-editor-wrap {
  margin-top: 36px;
}

