@charset "UTF-8";
/**
 * Сброс стилей
 **/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Montserrat:wght@700&family=Raleway:wght@400;500;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

input {
  outline: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

/*Basic style*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Raleway", sans-serif;
  background: #f8f8f8;
}

.main {
  min-width: 360px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.wrap {
  padding: 0 16px;
  min-width: 320px;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

p,
a,
button {
  color: #18181b;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, figcaption {
  font-size: 32px;
}
@media (min-width: 768px) {
  h1, h2, figcaption {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  h1, h2, figcaption {
    font-size: 18px;
  }
}

.background_wrapper {
  border-radius: 60px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
  max-width: 1920px;
  margin: 120px auto 0;
}
@media only screen and (max-width: 1023px) {
  .background_wrapper {
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 423px) {
  .background_wrapper {
    margin-top: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 24px;
  }
}

.open {
  display: block !important;
}

.go-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 99;
  border: none;
  outline: none;
  color: #18181b;
  cursor: pointer;
  padding: 20px;
  border-radius: 100%;
  background: #ffc700 url("/promo/src/assets/icons/contacts_arrow.svg") no-repeat center center;
  background-size: 22px;
  transform: rotate(135deg);
}
.go-top-btn:hover {
  transform: scale(1.1) rotate(135deg);
}

.hero {
  background: #fff;
}
.hero .wrap {
  position: relative;
  padding-top: 20px;
  padding-bottom: 100px;
  background-image: url("/promo/src/assets/background/hero_left_bg.png"), url("/promo/src/assets/background/hero_right_bg.png");
  background-position: left center, right center;
  background-size: contain, contain;
  background-repeat: no-repeat, no-repeat;
}
.hero .wrap .content {
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.hero .wrap .content .header {
  display: flex;
}
.hero .wrap .content .header__menu {
  align-self: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  padding: 20px 10px;
  gap: 18px;
  background-color: #f8f8f8;
}
.hero .wrap .content .header__menu-list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.hero .wrap .content .header__menu-item {
  position: relative;
  border-radius: 12px;
  padding: 10px 16px;
}
.hero .wrap .content .header__menu-item:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  background-color: #bdbdbd;
  height: 26px;
  width: 3px;
  border-radius: 2px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero .wrap .content .header__menu-item:last-child:after {
  display: none;
}
.hero .wrap .content .header__menu-item:hover {
  background-color: #ffc700;
}
.hero .wrap .content .header__menu-item a {
  text-decoration: none;
  color: #bdbdbd;
  transition: all 0.5s;
}
.hero .wrap .content .header__menu-item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .wrap .content .header__menu-item a:hover {
  color: #18181b;
}
.hero .wrap .content .header__menu-item a:focus {
  color: #18181b;
}
.hero .wrap .content .header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 10;
}
.hero .wrap .content .header__hamburger .hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #18181b;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
.hero .wrap .content .header__hamburger .hamburger-line:nth-child(2) {
  width: 70%;
  margin-left: auto;
}
.hero .wrap .content .header__hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hero .wrap .content .header__hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hero .wrap .content .header__hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hero .wrap .content .header .mobile-menu {
  display: none;
  background-color: #333;
  border-radius: 20px;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
}
.hero .wrap .content .header .mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero .wrap .content .header .mobile-menu__item {
  padding: 15px;
  text-align: center;
}
.hero .wrap .content .header .mobile-menu__item a {
  color: #fff;
  text-decoration: none;
}
.hero .wrap .content .header .mobile-menu__item a:hover {
  text-decoration: underline;
}
.hero .wrap .vertical {
  display: none;
}
.hero .header__btns .header__btn--transparent {
  border: 1px solid transparent;
  background-color: #ffc700;
  border-radius: 0;
  color: #18181b;
  font-size: 16px;
  padding: 21px 16px;
  cursor: pointer;
  border-radius: 12px 0 12px 12px;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  transition: all 0.5s;
}
.hero .header__btns .header__btn--transparent:hover {
  background-color: #f8f8f8;
  border-color: #18181b;
}
.hero .logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 160px auto 60px;
  gap: 30px;
}
.hero .logo figcaption {
  font-size: 32px;
  text-align: center;
}
.hero .doc_schema {
  margin: 0 auto;
}

@media only screen and (max-width: 1599px) {
  .hero .wrap {
    background-position: calc(0% - 220px) center, calc(100% + 220px) center;
  }
  .hero .wrap .content .header__menu {
    font-size: 17px;
  }
  .hero .wrap .logo {
    margin: 130px auto 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero .content .wrap .header {
    justify-content: space-between;
    gap: 24px;
  }
  .hero .content .wrap .header__menu {
    font-size: 15px;
  }
  .hero .content .wrap .header__menu-list {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .hero .content .wrap .header__menu-item {
    border-radius: 8px;
    padding: 6px 11px;
  }
  .hero .content .wrap .header__menu-item:after {
    right: -8px;
  }
  .hero .content .logo {
    max-width: 500px;
  }
  .hero .content .logo figcaption {
    font-size: 22px;
  }
  .hero .content .header__btns .header__btn--transparent {
    font-weight: 400;
    font-size: 12px;
  }
  .hero .content .vertical {
    display: none;
  }
  .hero .content .doc_schema {
    width: 940px;
  }
}
@media only screen and (max-width: 1023px) {
  .hero .wrap {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .hero .wrap .logo {
    margin: 80px auto 40px;
  }
  .hero .wrap .content {
    flex-direction: row-reverse;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    justify-content: end;
    align-items: center;
  }
  .hero .wrap .content .header__menu {
    display: none;
  }
  .hero .wrap .content .header__hamburger {
    display: block;
  }
  .hero .wrap .content .header .mobile-menu {
    display: none;
  }
  .hero .wrap .header__btns .header__btn--transparent {
    font-weight: 700;
    border-radius: 12px 0 12px 12px;
    padding: 12px 16px;
  }
}
@media only screen and (max-width: 423px) {
  .hero .wrap {
    padding-bottom: 60px;
    background-position-y: 180px;
  }
  .hero .wrap .logo {
    width: 310px;
    margin: 60px auto 30px;
  }
  .hero .wrap .logo p {
    font-size: 14px;
  }
  .hero .wrap .vertical {
    display: block;
  }
  .hero .wrap .horizontal {
    display: none;
  }
}
.deal .wrap {
  border-radius: 60px;
  background: url("/promo/src/assets/background/deal_bg.png") no-repeat;
  background-size: cover;
  padding: 120px;
}
.deal .deal__title {
  color: #fff;
  font-weight: 700;
  font-size: 76px;
  line-height: 110%;
}
.deal .deal__cycle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 85%;
  padding-top: 220px;
  padding-bottom: 220px;
  margin: 0 auto;
  gap: 100px;
}
.deal .deal__cycle .ellipse-container {
  height: 508px;
  width: 685px;
  background: url("/promo/src/assets/background/ellipse_dashed.png") center center no-repeat;
  background-size: cover;
}
.deal .deal__cycle .ellipse-container .f-icon {
  top: -10%;
  left: 90%;
  transform: translate(-50%, -50%);
}
.deal .deal__cycle .circle-container {
  width: 508px;
  height: 508px;
  background: url("/promo/src/assets/background/circle_dashed.png") center center no-repeat;
  background-size: cover;
}
.deal .deal__cycle .circle-container, .deal .deal__cycle .ellipse-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.deal .deal__cycle .circle-container .m-icon, .deal .deal__cycle .ellipse-container .m-icon {
  top: -10%;
  left: 10%;
  transform: translate(-50%, -50%);
}
.deal .deal__cycle .circle-container .t-icon, .deal .deal__cycle .ellipse-container .t-icon {
  bottom: -10%;
  right: 10%;
  transform: translate(50%, 50%);
  flex-direction: column-reverse;
}
.deal .deal__cycle .circle-container .m-icon, .deal .deal__cycle .circle-container .f-icon, .deal .deal__cycle .ellipse-container .m-icon, .deal .deal__cycle .ellipse-container .f-icon {
  flex-direction: column;
}
.deal .deal__cycle .circle-container .m-icon, .deal .deal__cycle .circle-container .t-icon, .deal .deal__cycle .circle-container .f-icon, .deal .deal__cycle .ellipse-container .m-icon, .deal .deal__cycle .ellipse-container .t-icon, .deal .deal__cycle .ellipse-container .f-icon {
  display: flex;
  z-index: 1;
  position: absolute;
}
.deal .deal__cycle .circle-container .m-icon figcaption, .deal .deal__cycle .circle-container .t-icon figcaption, .deal .deal__cycle .circle-container .f-icon figcaption, .deal .deal__cycle .ellipse-container .m-icon figcaption, .deal .deal__cycle .ellipse-container .t-icon figcaption, .deal .deal__cycle .ellipse-container .f-icon figcaption {
  color: #27262b;
  font-weight: 700;
  font-size: 38px;
  text-align: center;
  padding: 10px;
  background: linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: 60px;
  position: relative;
}
.deal .deal__cycle .circle-container .m-icon figcaption, .deal .deal__cycle .circle-container .f-icon figcaption, .deal .deal__cycle .ellipse-container .m-icon figcaption, .deal .deal__cycle .ellipse-container .f-icon figcaption {
  top: 30px;
}
.deal .deal__cycle .circle-container .t-icon figcaption, .deal .deal__cycle .ellipse-container .t-icon figcaption {
  top: -30px;
}
.deal .deal__cycle .circle-container .circle, .deal .deal__cycle .circle-container .ellipse, .deal .deal__cycle .ellipse-container .circle, .deal .deal__cycle .ellipse-container .ellipse {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 400px;
  background: #18181b;
  mix-blend-mode: hard-light;
}
.deal .deal__cycle .circle-container .circle, .deal .deal__cycle .ellipse-container .circle {
  width: 85%;
  height: 85%;
}
.deal .deal__cycle .circle-container .ellipse, .deal .deal__cycle .ellipse-container .ellipse {
  height: 80%;
  width: 90%;
}
.deal .deal__cycle .circle-container p, .deal .deal__cycle .ellipse-container p {
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  align-content: center;
  margin: 0 auto;
}

@media only screen and (max-width: 1599px) {
  .deal .wrap {
    padding: 80px 40px;
  }
  .deal .deal__title {
    font-size: 54px;
  }
  .deal .deal__cycle {
    padding-top: 160px;
    padding-bottom: 100px;
  }
  .deal .deal__cycle .ellipse-container {
    width: 536px;
    height: 400px;
  }
  .deal .deal__cycle .circle-container {
    height: 400px;
    width: 400px;
  }
  .deal .deal__cycle .circle-container .m-icon, .deal .deal__cycle .circle-container .t-icon, .deal .deal__cycle .circle-container .f-icon, .deal .deal__cycle .ellipse-container .m-icon, .deal .deal__cycle .ellipse-container .t-icon, .deal .deal__cycle .ellipse-container .f-icon {
    width: 180px;
  }
  .deal .deal__cycle .circle-container .m-icon figcaption, .deal .deal__cycle .circle-container .t-icon figcaption, .deal .deal__cycle .circle-container .f-icon figcaption, .deal .deal__cycle .ellipse-container .m-icon figcaption, .deal .deal__cycle .ellipse-container .t-icon figcaption, .deal .deal__cycle .ellipse-container .f-icon figcaption {
    font-size: 28px;
  }
  .deal .deal__cycle .circle-container p, .deal .deal__cycle .ellipse-container p {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .deal .deal__title {
    font-size: 48px;
  }
  .deal .deal__cycle {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .deal .deal__cycle .ellipse-container {
    height: 270px;
    width: 364px;
  }
  .deal .deal__cycle .circle-container {
    height: 270px;
    width: 270px;
  }
  .deal .deal__cycle .circle-container .m-icon, .deal .deal__cycle .circle-container .t-icon, .deal .deal__cycle .circle-container .f-icon, .deal .deal__cycle .ellipse-container .m-icon, .deal .deal__cycle .ellipse-container .t-icon, .deal .deal__cycle .ellipse-container .f-icon {
    width: 150px;
  }
  .deal .deal__cycle .circle-container .m-icon figcaption, .deal .deal__cycle .circle-container .t-icon figcaption, .deal .deal__cycle .circle-container .f-icon figcaption, .deal .deal__cycle .ellipse-container .m-icon figcaption, .deal .deal__cycle .ellipse-container .t-icon figcaption, .deal .deal__cycle .ellipse-container .f-icon figcaption {
    font-size: 22px;
  }
  .deal .deal__cycle .circle-container p, .deal .deal__cycle .ellipse-container p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .deal .deal__title {
    font-size: 48px;
  }
  .deal .deal__cycle {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .deal .deal__cycle .ellipse-container {
    height: 220px;
    width: 296px;
  }
  .deal .deal__cycle .circle-container {
    height: 220px;
    width: 220px;
  }
  .deal .deal__cycle .circle-container .m-icon, .deal .deal__cycle .circle-container .t-icon, .deal .deal__cycle .circle-container .f-icon, .deal .deal__cycle .ellipse-container .m-icon, .deal .deal__cycle .ellipse-container .t-icon, .deal .deal__cycle .ellipse-container .f-icon {
    width: 120px;
  }
  .deal .deal__cycle .circle-container .m-icon figcaption, .deal .deal__cycle .circle-container .t-icon figcaption, .deal .deal__cycle .circle-container .f-icon figcaption, .deal .deal__cycle .ellipse-container .m-icon figcaption, .deal .deal__cycle .ellipse-container .t-icon figcaption, .deal .deal__cycle .ellipse-container .f-icon figcaption {
    font-size: 18px;
  }
  .deal .deal__cycle .circle-container p, .deal .deal__cycle .ellipse-container p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .deal .wrap {
    padding: 60px 20px;
    border-radius: 20px;
  }
  .deal .deal__cycle {
    flex-direction: column;
    align-items: center;
    gap: 160px;
  }
  .deal .deal__cycle .ellipse-container {
    height: 176px;
    width: 237px;
  }
  .deal .deal__cycle .circle-container {
    height: 176px;
    width: 176px;
  }
  .deal .deal__cycle .circle-container .m-icon, .deal .deal__cycle .circle-container .t-icon, .deal .deal__cycle .circle-container .f-icon, .deal .deal__cycle .ellipse-container .m-icon, .deal .deal__cycle .ellipse-container .t-icon, .deal .deal__cycle .ellipse-container .f-icon {
    width: 110px;
  }
  .deal .deal__cycle .circle-container .m-icon figcaption, .deal .deal__cycle .circle-container .t-icon figcaption, .deal .deal__cycle .circle-container .f-icon figcaption, .deal .deal__cycle .ellipse-container .m-icon figcaption, .deal .deal__cycle .ellipse-container .t-icon figcaption, .deal .deal__cycle .ellipse-container .f-icon figcaption {
    border-radius: 26px;
    padding: 4px 12px;
    font-size: 14px;
  }
  .deal .deal__cycle .circle-container p, .deal .deal__cycle .ellipse-container p {
    font-size: 16px;
  }
  .deal .deal__cycle .circle-container .m-icon figcaption, .deal .deal__cycle .circle-container .f-icon figcaption, .deal .deal__cycle .ellipse-container .m-icon figcaption, .deal .deal__cycle .ellipse-container .f-icon figcaption {
    top: 20px;
  }
  .deal .deal__cycle .circle-container .t-icon figcaption, .deal .deal__cycle .ellipse-container .t-icon figcaption {
    top: -20px;
  }
}
@media only screen and (max-width: 423px) {
  .deal .deal__title {
    font-size: 34px;
  }
  .deal .deal__cycle {
    padding-top: 100px;
  }
}
.applications .bg-wrap {
  background: url("/promo/src/assets/background/applications_bg.png") no-repeat center -70px;
  height: 330px;
  mix-blend-mode: darken;
}
.applications .wrap {
  padding-top: 80px;
  max-width: 1710px;
  display: grid;
  grid-template-columns: 430px auto;
  gap: 45px;
}
.applications .wrap .hidden {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
  display: none;
}
.applications .wrap .hidden .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .applications .wrap .hidden {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .applications .wrap .hidden .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .applications .wrap .hidden {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .applications .wrap .hidden .title {
    font-size: 18px;
  }
  .applications .wrap .hidden img {
    width: 34px;
  }
}
.applications .wrap .left-side {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.applications .wrap .left-side .bookmark {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
}
.applications .wrap .left-side .bookmark .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .applications .wrap .left-side .bookmark {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .applications .wrap .left-side .bookmark .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .applications .wrap .left-side .bookmark {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .applications .wrap .left-side .bookmark .title {
    font-size: 18px;
  }
  .applications .wrap .left-side .bookmark img {
    width: 34px;
  }
}
.applications .wrap .left-side__center-content {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.applications .wrap .left-side__center-content .title {
  grid-column: 1/4;
  grid-row: 1;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
}
.applications .wrap .left-side__center-content .notify-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}
.applications .wrap .left-side__center-content .notify-box .notify {
  position: relative;
  height: 166px;
  border-radius: 20px;
  align-content: center;
  text-align: center;
  padding: 0 15px;
  background-color: #ffc700;
}
.applications .wrap .left-side__center-content .notify-box .notify__icon {
  position: absolute;
  border-radius: 100%;
  border: 10px solid #fff;
  top: -10px;
  left: -10px;
}
.applications .wrap .left-side__center-content .notify-box .notify span {
  font-weight: 500;
  font-size: 22px;
  line-height: 110%;
}
.applications .wrap .left-side__center-content .order-info {
  position: relative;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.applications .wrap .left-side__center-content .order-info:after {
  z-index: 3;
  content: "";
  position: absolute;
  bottom: -62px;
  left: -156px;
  width: 160px;
  height: 98px;
  background: url(/promo/src/assets/img/contracts_arrow.png) center center no-repeat;
  background-size: cover;
}
.applications .wrap .left-side .order-status {
  z-index: 2;
}
.applications .right-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}
.applications .right-side .order-create {
  background: #fff;
  padding: 30px;
  z-index: 2;
}
.applications .right-side .order-create .img-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}
.applications .right-side figure {
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
}
.applications .right-side figure figcaption {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  width: 56%;
}

@media only screen and (max-width: 1599px) {
  .applications .bg-wrap {
    height: 216px;
  }
  .applications .wrap {
    padding-top: 30px;
    grid-template-columns: 342px auto;
    gap: 20px;
  }
  .applications .wrap .left-side {
    gap: 12px;
    justify-content: space-between;
  }
  .applications .wrap .left-side__center-content .title {
    font-size: 22px;
  }
  .applications .wrap .left-side__center-content .notify-box .notify {
    max-height: 130px;
  }
  .applications .wrap .left-side__center-content .notify-box .notify span {
    font-size: 18px;
  }
  .applications .right-side {
    gap: 20px;
    justify-content: flex-end;
  }
  .applications .right-side figure {
    gap: 32px;
  }
  .applications .right-side figure figcaption {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1023px) {
  .applications .bg-wrap {
    height: 216px;
  }
  .applications .wrap {
    padding-top: 30px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .applications .wrap .hidden {
    display: flex;
  }
  .applications .wrap .left-side .bookmark {
    display: none;
  }
  .applications .wrap .left-side__center-content .title {
    max-width: 40%;
  }
  .applications .wrap .left-side__center-content .notify-box .notify span {
    font-size: 18px;
  }
  .applications .wrap .left-side__center-content .order-info img {
    width: 100%;
  }
  .applications .right-side figure {
    padding: 20px;
    gap: 10px;
  }
  .applications .right-side figure figcaption {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .applications .wrap .left-side__center-content .title {
    max-width: 100%;
  }
  .applications .wrap .right-side figure figcaption {
    width: 100%;
  }
}
@media only screen and (max-width: 423px) {
  .applications .bg-wrap {
    height: 150px;
  }
  .applications .wrap {
    padding-top: 40px;
  }
  .applications .wrap .left-side__center-content {
    padding: 12px;
    grid-gap: 8px;
    grid-template-columns: 1fr 154px;
  }
  .applications .wrap .left-side__center-content .title {
    max-width: 100%;
    font-size: 18px;
  }
  .applications .wrap .left-side__center-content .notify-box .notify span {
    font-size: 14px;
  }
  .applications .wrap .left-side__center-content .order-info {
    padding: 6px;
  }
  .applications .wrap .left-side__center-content .order-info:after {
    width: 134px;
    height: 80px;
    bottom: -50px;
    left: -130px;
  }
  .applications .wrap .right-side .order-create {
    padding: 16px 12px;
  }
  .applications .wrap .right-side .order-create .img-box {
    grid-template-columns: unset;
  }
  .applications .wrap .right-side figure figcaption {
    font-size: 18px;
  }
}
.contract {
  padding-top: 120px;
}
.contract .wrap {
  max-width: 1710px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contract .wrap .left-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.contract .wrap .left-side .row {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
.contract .wrap .left-side .row .bookmark {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
}
.contract .wrap .left-side .row .bookmark .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .contract .wrap .left-side .row .bookmark {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .contract .wrap .left-side .row .bookmark .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .contract .wrap .left-side .row .bookmark {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .contract .wrap .left-side .row .bookmark .title {
    font-size: 18px;
  }
  .contract .wrap .left-side .row .bookmark img {
    width: 34px;
  }
}
.contract .wrap .left-side .row .col1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contract .wrap .left-side .row .col1 .figure {
  background-color: #fff;
  border-radius: 20px;
}
.contract .wrap .left-side .row .col2 {
  background-color: #f8f8f8;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0 10px;
}
.contract .wrap .right-side {
  display: flex;
  position: relative;
}
.contract .wrap .right-side .clip {
  position: absolute;
  top: -15%;
  left: 40%;
  z-index: 1;
  transform: translate(-50%, -50%);
  min-width: 120%;
}
.contract .figure {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  padding: 18px;
  border-radius: 10px;
}
.contract .figure .caption {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
}

@media only screen and (max-width: 1599px) {
  .contract .wrap .left-side .row {
    gap: 20px;
  }
  .contract .wrap .left-side .signature h2 {
    font-size: 22px;
  }
  .contract .wrap .right-side {
    min-width: 462px;
  }
  .contract .wrap .right-side .clip {
    top: -22%;
    left: 40%;
    min-width: 120%;
  }
  .contract .figure {
    padding: 12px;
  }
  .contract .figure .caption {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1023px) {
  .contract {
    padding-top: 80px;
  }
  .contract .wrap {
    display: flex;
    flex-direction: column;
  }
  .contract .wrap .left-side {
    z-index: 2;
    display: flex;
    flex-direction: column;
  }
  .contract .wrap .left-side .row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contract .wrap .left-side .row .col1 {
    gap: 10px;
  }
  .contract .wrap .left-side .signature__first_img {
    width: 100%;
  }
  .contract .wrap .right-side img {
    width: 100%;
  }
  .contract .wrap .right-side .clip {
    top: -10%;
    left: 40%;
    min-width: 100%;
  }
  .contract .figure {
    padding: 12px;
  }
  .contract .figure .caption {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .contract .wrap .right-side {
    min-width: unset;
  }
  .contract .figure {
    padding: 12px;
  }
  .contract .figure .caption {
    font-size: 18px;
  }
}
@media only screen and (max-width: 423px) {
  .contract {
    padding-top: 60px;
  }
  .contract .wrap {
    overflow: hidden;
  }
  .contract .wrap .left-side .row {
    gap: 24px;
  }
  .contract .wrap .left-side .row .col1 {
    gap: 24px;
  }
  .contract .wrap .left-side .signature__first_img {
    width: 100%;
  }
  .contract .wrap .right-side {
    min-width: unset;
  }
  .contract .wrap .right-side img {
    width: 100%;
  }
  .contract .wrap .right-side .clip {
    top: -14%;
    left: 44%;
    min-width: 110%;
  }
  .contract .figure {
    padding: 12px;
  }
  .contract .figure .caption {
    font-size: 18px;
  }
}
.reports {
  padding-top: 120px;
}
.reports .wrap {
  max-width: 1710px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
  gap: 30px;
}
.reports .wrap .left-side {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
}
.reports .wrap .left-side__header {
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 30px;
}
.reports .wrap .left-side__header h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
}
.reports .wrap .left-side__header .bookmark {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
}
.reports .wrap .left-side__header .bookmark .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .reports .wrap .left-side__header .bookmark {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .reports .wrap .left-side__header .bookmark .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .reports .wrap .left-side__header .bookmark {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .reports .wrap .left-side__header .bookmark .title {
    font-size: 18px;
  }
  .reports .wrap .left-side__header .bookmark img {
    width: 34px;
  }
}
.reports .wrap .left-side__content {
  position: relative;
  height: 725px;
  display: grid;
  background: url("/promo/src/assets/background/report_bg.png") no-repeat left center;
  padding-left: 190px;
  border-radius: 20px;
}
.reports .wrap .left-side__content .report-formats {
  padding: 10px 10px 10px 40px;
  height: 100%;
  border-radius: 20px;
  background: #fff;
}
.reports .wrap .right-side {
  display: flex;
  border-radius: 20px;
  background-color: #fff;
  min-width: 379px;
  min-height: 522px;
  align-self: stretch;
  overflow: hidden;
  justify-content: center;
}

@media only screen and (max-width: 1599px) {
  .reports .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .reports .wrap .left-side {
    gap: 20px;
  }
  .reports .wrap .left-side__header {
    grid-gap: 20px;
  }
  .reports .wrap .left-side__header h2 {
    font-size: 28px;
  }
  .reports .wrap .left-side__content {
    padding: 16px;
    background: #fff;
  }
  .reports .wrap .left-side__content .report-formats {
    padding: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .reports .wrap .left-side__content {
    height: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .reports {
    padding-top: 80px;
  }
  .reports .wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .reports .wrap .left-side {
    gap: 20px;
  }
  .reports .wrap .left-side__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .reports .wrap .left-side__content {
    position: relative;
    height: 725px;
    display: grid;
    background: url("/promo/src/assets/background/report_bg.png") no-repeat left center;
    padding: 0 0 0 190px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .reports .wrap .left-side__content {
    height: auto;
    background: none;
    padding-left: unset;
  }
  .reports .wrap .left-side__content .report-formats {
    width: 100%;
  }
  .reports .wrap .right-side {
    min-width: unset;
    min-height: unset;
    justify-content: flex-start;
    background: url("/promo/src/assets/background/report_mobile_bg.png") no-repeat right center;
    padding: 0 120px 0 0;
    background-size: contain;
  }
}
@media only screen and (max-width: 423px) {
  .reports {
    padding-top: 60px;
  }
  .reports .wrap .right-side {
    padding: 0 84px 0 0;
  }
}
.employees {
  padding-top: 120px;
}
.employees .wrap {
  max-width: 1710px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
}
.employees .wrap .left-side {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.employees .wrap .left-side .bookmark {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
}
.employees .wrap .left-side .bookmark .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .employees .wrap .left-side .bookmark {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .employees .wrap .left-side .bookmark .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .employees .wrap .left-side .bookmark {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .employees .wrap .left-side .bookmark .title {
    font-size: 18px;
  }
  .employees .wrap .left-side .bookmark img {
    width: 34px;
  }
}
.employees .wrap .right-side {
  border-radius: 20px;
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.employees .wrap .right-side .figure_row {
  grid-column: 1/-1;
}
.employees .wrap .right-side .figure_col {
  grid-column: 1;
}
.employees .wrap .right-side .figure_col-reverse {
  flex-direction: column-reverse;
}
.employees .wrap .right-side figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  gap: 8px;
}
.employees .wrap .right-side figure figcaption {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
}
.employees .wrap .right-side .driver-license {
  background-color: #ffc700;
  grid-column: 2;
  border-radius: 20px;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.employees .wrap .right-side .driver-license p {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
}
.employees .wrap .right-side .driver-license .img-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 6px;
}
.employees .wrap .right-side .driver-license .img-box img {
  max-width: 50%;
}

@media only screen and (max-width: 1599px) {
  .employees .wrap .left-side .img_box {
    height: auto;
    width: auto;
  }
  .employees .wrap .right-side figure figcaption {
    font-size: 28px;
  }
  .employees .wrap .right-side .driver-license p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .employees .wrap {
    gap: 20px;
  }
  .employees .wrap .left-side {
    gap: 15px;
  }
  .employees .wrap .left-side .img_box {
    height: auto;
    width: auto;
  }
  .employees .wrap .right-side {
    gap: 10px;
  }
  .employees .wrap .right-side figure {
    padding: 10px;
  }
  .employees .wrap .right-side figure figcaption {
    font-size: 22px;
  }
  .employees .wrap .right-side .driver-license {
    padding: 12px 12px 0 12px;
  }
  .employees .wrap .right-side .driver-license p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1023px) {
  .employees {
    padding-top: 80px;
  }
  .employees .wrap .right-side figure figcaption {
    font-size: 18px;
  }
  .employees .wrap .right-side .driver-license {
    padding: 10px 10px 0 10px;
  }
  .employees .wrap .right-side .driver-license p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .employees .wrap {
    grid-template-columns: unset;
  }
  .employees .wrap .left-side .img_box {
    display: none;
  }
}
@media (min-width: 423px) and (max-width: 490px) {
  .employees .wrap .right-side figure figcaption {
    font-size: 14px;
  }
  .employees .wrap .right-side .driver-license p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 423px) {
  .employees {
    padding-top: 60px;
  }
  .employees .wrap .right-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .employees .wrap .right-side .driver-license p {
    padding-bottom: 8px;
  }
}
.plots .wrap {
  max-width: 1710px;
  display: grid;
  grid-gap: 60px;
  background-color: #fff;
  border-radius: 20px;
}
.plots .wrap .header {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.plots .wrap .header .bookmark {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
}
.plots .wrap .header .bookmark .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .plots .wrap .header .bookmark {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .plots .wrap .header .bookmark .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .plots .wrap .header .bookmark {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .plots .wrap .header .bookmark .title {
    font-size: 18px;
  }
  .plots .wrap .header .bookmark img {
    width: 34px;
  }
}
.plots .wrap .header img {
  justify-self: end;
}
.plots .wrap .content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: start;
  grid-gap: 20px;
}
.plots .wrap .content__box {
  display: grid;
  gap: 30px;
  align-items: start;
}
.plots .wrap .content__box .title {
  height: 84px;
  width: 86%;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
}
.plots .wrap .content__box .line {
  height: 8px;
  border-radius: 8px;
  background-color: #ffc700;
}

@media only screen and (max-width: 1599px) {
  .plots .wrap .content__box {
    gap: 20px;
  }
  .plots .wrap .content__box .title {
    height: 60px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .plots .wrap {
    grid-gap: 24px;
  }
  .plots .wrap .header {
    display: block;
  }
  .plots .wrap .header .truck_image {
    display: none;
  }
  .plots .wrap .content {
    grid-gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .plots .wrap .content__box {
    gap: 10px;
  }
  .plots .wrap .content__box .title {
    font-size: 18px;
  }
  .plots .wrap .content__box:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1;
  }
  .plots .wrap .content__box:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2;
  }
  .plots .wrap .content__box:nth-child(2) .title {
    height: 36px;
  }
  .plots .wrap .content__box:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2;
  }
  .plots .wrap .content__box:nth-child(3) .title {
    height: 36px;
  }
  .plots .wrap .content .line {
    height: 2px;
    border-radius: 3px;
  }
}
.garage {
  padding-top: 120px;
}
.garage .wrap {
  max-width: 1710px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-gap: 30px;
  background-color: #fff;
  border-radius: 20px;
  grid-row-gap: 10px;
}
.garage .wrap .title {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  max-width: 410px;
}
.garage .wrap .header {
  align-self: start;
  justify-content: start;
  display: flex;
  gap: 30px;
  align-items: center;
  grid-column: 1;
  grid-row: 1/2;
}
.garage .wrap .header .bookmark {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
}
.garage .wrap .header .bookmark .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .garage .wrap .header .bookmark {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .garage .wrap .header .bookmark .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .garage .wrap .header .bookmark {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .garage .wrap .header .bookmark .title {
    font-size: 18px;
  }
  .garage .wrap .header .bookmark img {
    width: 34px;
  }
}
.garage .wrap .table {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-color: #f8f8f8;
  align-self: end;
  grid-column: 1;
  grid-row: 2/6;
}
.garage .wrap .table__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.garage .wrap .table__header:after {
  content: "";
  position: absolute;
  top: -100px;
  right: -10px;
  width: 94px;
  height: 130px;
  background: url(/promo/src/assets/img/reports_arrow.png) center center no-repeat;
  background-size: cover;
}
.garage .wrap .top-box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  gap: 20px;
  background: url("/promo/src/assets/icons/plus_big.svg") no-repeat calc(100% - 20px) calc(0% + 20px);
  background-color: #f8f8f8;
  grid-column: 2;
  grid-row: 1/4;
}
.garage .wrap .truck-box {
  grid-column: 2;
  grid-row: 4/6;
  position: relative;
}
.garage .wrap .truck-box .p-icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1599px) {
  .garage .wrap .title {
    font-size: 22px;
    max-width: 290px;
  }
  .garage .wrap .header {
    gap: 20px;
  }
  .garage .wrap .table {
    padding: 20px;
  }
  .garage .wrap .table__header {
    padding-bottom: 12px;
  }
  .garage .wrap .table__header:after {
    background-size: 76px;
    right: -40px;
  }
  .garage .wrap .top-box {
    background-size: 44px;
  }
  .garage .wrap .truck-box .p-icon {
    width: 64px;
  }
}
@media only screen and (max-width: 1023px) {
  .garage {
    padding-top: 80px;
  }
  .garage .wrap {
    grid-column-gap: 20px;
  }
  .garage .wrap .table__header:after {
    top: -86px;
    background-size: 56px;
  }
  .garage .wrap .top-box {
    background-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .garage {
    padding-top: 60px;
  }
  .garage .wrap {
    display: flex;
    flex-direction: column;
  }
  .garage .wrap .title {
    font-size: 18px;
    max-width: 210px;
  }
  .garage .wrap .header {
    flex-direction: column;
  }
  .garage .wrap .table__header:after {
    background-size: 56px;
    top: -96px;
    right: 8px;
    transform: scaleX(-1) rotate(-22deg);
  }
  .garage .wrap .table__header img {
    max-width: 58px;
  }
  .garage .wrap .top-box {
    background-size: 32px;
    width: 88%;
    padding: 16px 12px;
  }
  .garage .wrap .truck-box {
    text-align: -webkit-center;
  }
  .garage .wrap .truck-box .p-icon {
    width: 42px;
    position: absolute;
    left: unset;
    right: 0;
    transform: translate(-110%, -50%);
  }
}
@media only screen and (max-width: 423px) {
  .garage .wrap .top-box {
    background-size: 32px;
    width: 80%;
  }
}
.docs {
  padding-top: 120px;
}
.docs .wrap {
  max-width: 1710px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-gap: 30px;
  background-color: #fff;
  border-radius: 20px;
}
.docs .wrap .title {
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  max-width: 410px;
}
.docs .wrap .left-side {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
}
.docs .wrap .left-side .header {
  display: flex;
  gap: 30px;
  align-items: center;
}
.docs .wrap .left-side .header .bookmark {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  background-color: #ffc700;
  border-radius: 30px;
  padding: 30px;
  gap: 30px;
  align-items: center;
  width: 400px;
  height: 114px;
}
.docs .wrap .left-side .header .bookmark .title {
  font-weight: 400;
  font-size: 38px;
}
@media only screen and (max-width: 767px) {
  .docs .wrap .left-side .header .bookmark {
    gap: 10px;
    border-radius: 12px;
    padding: 12px 10px;
    width: 166px;
    height: 47px;
  }
  .docs .wrap .left-side .header .bookmark .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .docs .wrap .left-side .header .bookmark {
    gap: 10px;
    border-radius: 16px;
    padding: 18px 16px;
    width: 222px;
    height: 70px;
  }
  .docs .wrap .left-side .header .bookmark .title {
    font-size: 18px;
  }
  .docs .wrap .left-side .header .bookmark img {
    width: 34px;
  }
}
.docs .wrap .left-side .table {
  position: relative;
}
.docs .wrap .left-side .table__notify {
  position: absolute;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -84%);
}
.docs .wrap .right-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.docs .wrap .right-side .bottom-box {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background-color: #f8f8f8;
  position: relative;
}
.docs .wrap .right-side .bottom-box .title {
  max-width: 640px;
  padding-left: 20px;
}
.docs .wrap .right-side .bottom-box .p-icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -55%);
}

@media only screen and (max-width: 1599px) {
  .docs .wrap {
    grid-gap: 20px;
  }
  .docs .wrap .title {
    font-size: 22px;
  }
  .docs .wrap .left-side {
    gap: 20px;
  }
  .docs .wrap .left-side .header {
    gap: 20px;
  }
  .docs .wrap .left-side .table__notify {
    width: 86%;
  }
  .docs .wrap .right-side {
    gap: 20px;
  }
  .docs .wrap .right-side .bottom-box {
    gap: 24px;
  }
  .docs .wrap .right-side .bottom-box .p-icon {
    width: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .docs {
    padding-top: 60px;
  }
  .docs .wrap {
    grid-template-columns: unset;
  }
  .docs .wrap .title {
    font-size: 18px;
  }
  .docs .wrap .left-side .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .docs .wrap .left-side .table {
    margin-top: 120px;
  }
  .docs .wrap .left-side .table__notify {
    border-radius: 8px;
  }
  .docs .wrap .right-side .docs-truck {
    display: none;
  }
  .docs .wrap .right-side .bottom-box {
    padding: 0 0 30px 0;
  }
  .docs .wrap .right-side .bottom-box .title {
    padding-left: 10px;
    align-self: flex-start;
  }
  .docs .wrap .right-side .bottom-box .p-icon {
    width: 42px;
    right: 0;
    left: unset;
    transform: translate(-140%, -55%);
  }
}
@media only screen and (max-width: 423px) {
  .docs .wrap .left-side .table {
    margin-top: 60px;
  }
}
.tariffs {
  padding-top: 100px;
}
.tariffs .wrap {
  position: relative;
  background-color: #18181b;
  padding: 100px 120px 50px;
  border-radius: 60px;
  color: #fff;
}
.tariffs .wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/promo/src/assets/background/tariffs_bg.png") no-repeat center center;
  background-size: cover;
  opacity: 0.8;
  mix-blend-mode: soft-light;
  border-radius: inherit;
}
.tariffs .wrap .content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tariffs .wrap .content .header {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 3fr;
}
.tariffs .wrap .content .header .title {
  font-weight: 700;
  font-size: 76px;
  line-height: 110%;
  color: #fff;
  padding-top: 40px;
}
.tariffs .wrap .content .header ./promo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  justify-content: flex-start;
  gap: 60px;
  min-width: 700px;
  color: #18181b;
  padding: 40px 30px;
  border-radius: 30px;
  background: #ffc700;
  background-image: url("/promo/src/assets/background/radial_bg.png");
  background-repeat: no-repeat;
  background-position: right 41%;
  background-size: 30%;
}
.tariffs .wrap .content .header ./promo:after {
  content: "";
  position: absolute;
  background-image: url("/promo/src/assets/icons/tariffs.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: -12%;
  left: 0;
  right: -1%;
  bottom: -3%;
  background-position: right center;
}
.tariffs .wrap .content .header ./promo h2 {
  font-weight: 700;
  font-size: 76px;
  line-height: 110%;
}
.tariffs .wrap .content .header ./promo .info {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-width: 260px;
}
.tariffs .wrap .content .header ./promo .info .advantage-list {
  list-style: unset;
  font-weight: 500;
  font-size: 22px;
  line-height: 110%;
}
.tariffs .wrap .content .header ./promo .info p {
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  backdrop-filter: blur(20px);
  background: linear-gradient(312deg, #181818 0%, rgba(24, 24, 24, 0.8) 100%);
}
.tariffs .wrap .content .header ./promo .i-wrapper {
  position: absolute;
  bottom: -8%;
  right: 0;
  transform: translate(8%, 0);
}
.tariffs .wrap .content .tariffs-list__item {
  min-height: 648px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  border: 4px solid rgba(248, 248, 248, 0.2);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(15px);
  background: rgba(24, 24, 24, 0.5);
}
.tariffs .wrap .content .tariffs-list__item .top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tariffs .wrap .content .tariffs-list__item .top .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
}
.tariffs .wrap .content .tariffs-list__item .top .period {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
}
.tariffs .wrap .content .tariffs-list__item .functions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tariffs .wrap .content .tariffs-list__item .functions-list .yellow {
  color: #ffc700;
}
.tariffs .wrap .content .tariffs-list__item .functions-list .gray {
  color: rgba(255, 255, 255, 0.4);
}
.tariffs .wrap .content .tariffs-list__item .functions-list__item {
  position: relative;
  font-weight: 500;
  font-size: 22px;
  line-height: 110%;
  padding-left: 30px;
}
.tariffs .wrap .content .tariffs-list__item .functions-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background: url("/promo/src/assets/icons/plus_small.svg") no-repeat center center;
  height: 20px;
  width: 20px;
}
.tariffs .wrap .content .tariffs-list__item .bot {
  margin-top: auto;
}
.tariffs .wrap .content .tariffs-list__item .bot .price {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
}
.tariffs .wrap .content .tariffs-list__item .bot .work-place-count {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #fff;
  margin-bottom: 30px;
}
.tariffs .wrap .content .tariffs-list__item .bot .add-work-place {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #ffc700;
}

@media only screen and (max-width: 1599px) {
  .tariffs .wrap {
    padding: 60px 40px;
  }
  .tariffs .wrap .content .header .title {
    font-size: 48px;
    padding-top: 40px;
  }
  .tariffs .wrap .content .header ./promo {
    gap: 40px;
    padding: 16px;
    background-size: 40%;
  }
  .tariffs .wrap .content .header ./promo h2 {
    font-size: 48px;
  }
  .tariffs .wrap .content .header ./promo .info {
    gap: 20px;
  }
  .tariffs .wrap .content .tariffs-list__item {
    gap: 16px;
    border-radius: 16px;
    padding: 18px 16px;
    min-height: 354px;
  }
  .tariffs .wrap .content .tariffs-list__item .top .title {
    font-size: 12px;
  }
  .tariffs .wrap .content .tariffs-list__item .top .period {
    font-size: 26px;
  }
  .tariffs .wrap .content .tariffs-list__item .functions-list__item {
    font-size: 12px;
    padding-left: 20px;
  }
  .tariffs .wrap .content .tariffs-list__item .functions-list__item:before {
    height: 14px;
    width: 14px;
  }
  .tariffs .wrap .content .tariffs-list__item .bot .price {
    font-size: 26px;
  }
  .tariffs .wrap .content .tariffs-list__item .bot .work-place-count {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .tariffs .wrap .content .tariffs-list__item .bot .add-work-place {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .tariffs .wrap .content .header {
    grid-template-columns: unset;
  }
}
@media only screen and (max-width: 767px) {
  .tariffs {
    padding-top: 60px;
  }
  .tariffs .wrap {
    padding: 40px 20px;
  }
  .tariffs .wrap .content .header ./promo {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    background-size: 65%;
  }
  .tariffs .wrap .content .header ./promo h2 {
    width: 50%;
    font-size: 34px;
  }
  .tariffs .wrap .content .header ./promo .info {
    width: 50%;
  }
  .tariffs .wrap .content .header ./promo .info .advantage-list {
    padding-left: 20px;
    font-weight: 700;
    font-size: 14px;
    line-height: 110%;
  }
  .tariffs .wrap .content .header ./promo .info p {
    font-weight: 500;
    font-size: 12px;
    line-height: 110%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .tariffs {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 423px) {
  .tariffs {
    padding-top: 40px;
  }
  .tariffs .wrap {
    border-radius: 24px;
  }
  .tariffs .wrap .content .header .title {
    padding-top: 0;
  }
  .tariffs .wrap .content .header ./promo:after {
    background-size: 165px 170px;
    background-position-x: 110%;
  }
  .tariffs .wrap .content .header ./promo .info .advantage-list {
    width: 62%;
  }
}
.contacts {
  padding-top: 120px;
  margin-bottom: 60px;
}
.contacts .wrap {
  max-width: 1710px;
  border-radius: 20px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.contacts .wrap .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.contacts .wrap .left-side .contact-block {
  position: relative;
  border-radius: 30px;
  width: 100%;
  height: 260px;
  background: #ffc700;
}
.contacts .wrap .left-side .contact-block:before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -16px;
  border: 20px solid #f8f8f8;
  padding: 70px;
  border-radius: 50%;
  background-color: #ffc700;
  background-image: url(/promo/src/assets/icons/contacts_arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.contacts .wrap .left-side .contact-block .title {
  max-width: 60%;
  padding: 46px 60px;
  font-weight: 700;
  font-size: 76px;
  line-height: 110%;
  color: #18181b;
}
.contacts .wrap .left-side .social-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contacts .wrap .left-side .social-list__item {
  border: 4px solid #18181b;
  border-radius: 180px;
  padding: 30px 40px;
}
.contacts .wrap .left-side .social-list__item a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  display: flex;
  gap: 30px;
  align-items: center;
  color: #18181b;
}
.contacts .wrap .left-side .social-list__item a:hover {
  text-decoration: underline;
}
.contacts .wrap .left-side .social-list__item .icon {
  display: inline-block;
  width: 54px;
  height: 54px;
  background-size: cover;
  background-repeat: no-repeat;
}
.contacts .wrap .left-side .social-list__item .telegram {
  background-image: url("/promo/src/assets/icons/telegram.svg");
}
.contacts .wrap .left-side .social-list__item .mail {
  background-image: url("/promo/src/assets/icons/mail_small.svg");
}
.contacts .wrap .left-side .social-list__item .phone {
  background-image: url("/promo/src/assets/icons/phone.svg");
}
.contacts .wrap .right-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url("/promo/src/assets/background/contacts_bg.png") no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding: 80px 60px 50px 60px;
}
.contacts .wrap .right-side .nav .links {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.contacts .wrap .right-side .nav .links__menu-item a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  color: #fff;
}
.contacts .wrap .right-side .nav .links__menu-item a .icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/promo/src/assets/icons/contacts_arrow_small.svg");
}
.contacts .wrap .right-side .nav .links__menu-item:hover {
  text-decoration: underline;
}
.contacts .wrap .right-side .agreements {
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #ffc700;
}
.contacts .wrap .right-side .agreements:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1599px) {
  .contacts .wrap .left-side .contact-block .title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 1199px) {
  .contacts {
    padding-top: 80px;
  }
  .contacts .wrap {
    grid-gap: 20px;
  }
  .contacts .wrap .left-side {
    gap: 20px;
  }
  .contacts .wrap .left-side .contact-block {
    height: 146px;
  }
  .contacts .wrap .left-side .contact-block:before {
    padding: 40px;
  }
  .contacts .wrap .left-side .contact-block .title {
    padding: 18px 28px;
    font-size: 46px;
  }
  .contacts .wrap .left-side .social-list {
    gap: 20px;
  }
  .contacts .wrap .left-side .social-list__item {
    border: 2.25px solid #18181b;
    border-radius: 101px;
    padding: 16px 22px;
  }
  .contacts .wrap .left-side .social-list__item a {
    font-size: 22px;
  }
  .contacts .wrap .left-side .social-list__item .icon {
    width: 30px;
    height: 30px;
  }
  .contacts .wrap .right-side {
    border-radius: 17px;
    padding: 30px;
  }
  .contacts .wrap .right-side .nav .links {
    gap: 30px;
  }
  .contacts .wrap .right-side .nav .links__menu-item a {
    font-size: 22px;
  }
  .contacts .wrap .right-side .nav .links__menu-item a .icon {
    width: 24px;
    height: 24px;
  }
  .contacts .wrap .right-side .agreements {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .contacts .wrap {
    grid-template-columns: unset;
  }
  .contacts .wrap .left-side .social-list__item a {
    gap: 12px;
  }
  .contacts .wrap .right-side {
    gap: 60px;
  }
}
@media only screen and (max-width: 423px) {
  .contacts {
    padding-top: 60px;
  }
  .contacts .wrap .left-side .contact-block:before {
    padding: 34px;
  }
  .contacts .wrap .left-side .contact-block .title {
    font-size: 34px;
  }
  .contacts .wrap .right-side {
    border-radius: 12px;
    padding: 24px 16px;
  }
  .contacts .wrap .right-side .nav .links {
    gap: 24px;
  }
  .contacts .wrap .right-side .nav .links__menu-item a {
    font-size: 18px;
  }
}
.tariffs .slick-slide {
  height: auto;
}
.tariffs .slick-list {
  padding: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .tariffs .slick-list {
    padding: 0 20% 0 0 !important;
  }
}
.tariffs .slick-track {
  gap: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .tariffs .slick-track {
    gap: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
