*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

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 {
  display: block; }

body {
  line-height: 1; }

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; }
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/K88pR3goAWT7BTt32Z01mxJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; }
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/RjgO7rYTmqiVp7vzi-Q5URJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/LWCjsQkB6EMdfHrEVqA1KRJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF; }
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/xozscpT2726on7jbcb_pAhJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
  unicode-range: U+0370-03FF; }
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/59ZRklaO5bWGqF5A9baEERJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; }
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/u-WUoqrET9fUeobQW7jkRRJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; }
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

.ui_list {
  position: relative;
  padding-left: 40px;
  padding-top: 15px;
  padding-bottom: 15px; }
  .ui_list li {
    position: relative;
    padding-right: 20px;
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 2; }
    .ui_list li::before {
      font-family: Arial;
      content: "• ";
      color: #b94279;
      position: absolute;
      left: -22px;
      top: 18px;
      line-height: 0;
      font-size: 40px; }

.button {
  display: inline-block;
  outline: none;
  background: #df2867;
  color: #fff;
  border: 0;
  padding: 10px 20px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer; }
  .button:hover {
    text-decoration: none !important;
    color: #fff !important; }

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000; }
  .modal--open {
    display: block; }
  .modal__form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 620px;
    max-width: 100%;
    max-height: 100%;
    background-color: #fff;
    border-radius: 4px;
    overflow: auto;
    transition: all 0.2s ease-in-out; }
    .modal__form hr {
      margin: 0; }
  .modal__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #333; }
  .modal__input {
    width: 100%;
    padding: 7px 0 5px;
    margin-bottom: 21px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 21px;
    transition: all 0.2s ease-out; }
    .modal__input:focus, .modal__input:hover {
      outline: none;
      border-bottom: 1px solid #92d6ef; }
  .modal__textarea {
    padding: 5px;
    margin-bottom: 10px;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ccc;
    font-size: 15px;
    line-height: 21px;
    transition: all 0.2s ease-out;
    resize: none;
    outline: none; }
    .modal__textarea:hover {
      border-color: #999; }
    .modal__textarea:focus {
      border-color: #92d6ef; }
  .modal__row {
    display: flex;
    gap: 20px; }
  .modal__button {
    padding: 8px 14px 6px;
    margin-top: 20px;
    background-color: #ff0059;
    border: none;
    border-bottom: 1px solid #ff0059;
    border-radius: 2px;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
    cursor: pointer; }
    .modal__button:hover {
      background-color: #f73377; }
    .modal__button:active {
      border-bottom: none;
      border-top: 1px solid #ff0059;
      background-color: #ff0059; }
  .modal__button-file {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1em;
    height: 50px;
    width: 100%;
    border: 2px dashed #ccc !important;
    background: none;
    color: #999;
    line-height: 120px;
    border-radius: 0.5em;
    transition: border 0.12s;
    cursor: pointer; }
    .modal__button-file.dz-drag-hover {
      border-color: #6bb5f3 !important;
      border-style: solid !important;
      color: #1385e5 !important;
      outline: none !important; }
    .modal__button-file:focus, .modal__button-file:active {
      border-color: #6bb5f3 !important;
      border-style: solid !important;
      color: #1385e5 !important;
      outline: none !important; }
  .modal__file {
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    cursor: pointer;
    margin-top: -23px !important; }
  .modal__close {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
    opacity: 0.4;
    transition: opacity 0.14s ease-in-out; }
    .modal__close:focus, .modal__close:hover {
      opacity: 1; }
  .modal .modal-alert__container {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    height: 90%;
    transform: translate(-50%, -40%);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .modal .modal-alert__title {
      padding: 0 0 30px 0;
      font-size: 24px;
      width: 600px;
      text-align: center; }
    .modal .modal-alert__content {
      color: #97b937; }
      .modal .modal-alert__content--danger {
        color: #df2867; }
  .modal__flash {
    display: none; }
  .modal .modal__feedback {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: block;
    padding: 20px;
    background-color: #fff;
    transition: all 2000ms ease;
    opacity: 1; }
    .modal .modal__feedback.hidden {
      opacity: 0; }

html, body, #app, #page {
  height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4; }

main {
  min-height: 100vh;
  padding-bottom: 86px; }

h1 {
  margin: 40px 0;
  font-size: 30px; }

h2 {
  margin: 20px 0;
  font-size: 24px; }

h3 {
  margin: 20px 0;
  font-size: 16px; }

h4 {
  margin: 10px 0;
  font-size: 14px; }

h5 {
  font-size: 12px; }

h6 {
  font-size: 10px; }

b {
  font-weight: bold; }

p {
  font-size: 16px;
  line-height: 1.4;
  text-align: justify; }

hr {
  border: 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 2em;
  margin-top: 2em; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 100; }

h3, h4, h5 {
  margin-top: 5px;
  font-weight: 600; }

.container {
  position: relative;
  display: block;
  padding: 0 40px; }
  .container--padding-bottom {
    padding-bottom: 40px; }
  .container--padding-top {
    padding-top: 40px; }
  .container__header {
    text-align: center;
    font-size: 30px;
    margin: 40px 0; }

.fatborder-t {
  border-top: 10px solid #f9f9f9; }
  .fatborder-b {
    border-bottom: 10px solid #f9f9f9; }

.blog .post-list {
  display: grid;
  grid-gap: 30px 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr)); }
  @media screen and (min-width: 768px) {
    .blog .post-list {
      grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media screen and (min-width: 1281px) {
    .blog .post-list {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-gap: 60px 20px; } }
  @media screen and (min-width: 1581px) {
    .blog .post-list {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-gap: 40px; } }
  .blog .post-list .post-list-item {
    background: #f5f5f5;
    padding: 15px 20px 20px 20px;
    border-radius: 10px; }
    .blog .post-list .post-list-item a {
      text-decoration: none; }
    .blog .post-list .post-list-item .info {
      display: flex;
      margin-top: 15px;
      font-size: 13px;
      justify-content: space-between; }

.post {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  max-width: 960px;
  margin: 0 auto; }
  .post .content {
    margin: 0 12px; }
  .post .content img {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin: 15px auto;
    max-width: 100%; }
  .post .content p {
    padding: 6px 0;
    line-height: 1.5em; }
  .post .info {
    margin-top: 25px; }

.tags {
  padding-top: 15px; }
  .tags .tag {
    text-decoration: none;
    background: #8400a9;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
    margin: 3px 2px;
    color: white;
    font-weight: bold; }
  .tags .tag:hover {
    background: #7700d7; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  z-index: 50;
  transition: background 0.2s ease-in-out; }
  .header.static {
    background: linear-gradient(-200deg, #69258c, #c14577); }
  .header__logo {
    width: 30px;
    height: 55px;
    padding-top: 20px;
    background-color: #fff;
    align-self: flex-start; }
  .header svg {
    margin: 5px; }
  .header__list {
    display: flex;
    gap: 20px; }
  .header__link {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 2px 4px;
    transition: padding 0.25s ease; }
  .header__link:hover, .header__link:focus, .header__link--active {
    animation: anim-rainbow-background 8s infinite;
    padding-top: 40px; }
  .header-scroll {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0px 0px 2px rgba(78, 64, 64, 0.1); }
  .header-scroll .header__link {
    color: #333; }

@keyframes anim-rainbow-background {
  0% {
    background: #e63333; }

  20% {
    background: #e633d5; }

  40% {
    background: #d1ae2f; }

  60% {
    background: #51ab18; }

  80% {
    background: #e68433; }

  100% {
    background: #e53232; } }

.burger-menu {
  display: none; }
  .burger-menu .bm-burger-button {
    position: fixed;
    width: 36px;
    height: 36px;
    left: 20px;
    top: 20px; }
  .burger-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    transform: translate3d(-100%, 0px, 0px); }
  .burger-menu__overlay--open {
    opacity: 1;
    transform: none; }
  .burger-menu__block {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background: #581f5f;
    padding: 3.6em 2.6em 0;
    transition: all 0.5s ease-in-out;
    transform: translate3d(-100%, 0px, 0px); }
  .burger-menu__block--open {
    transform: none; }
  .burger-menu__item {
    margin-bottom: 10px; }
  .burger-menu__link {
    text-decoration: none;
    text-transform: uppercase;
    color: #fbfbfb;
    font-weight: 700;
    font-size: 18px; }
  .burger-menu__link--active {
    color: #e633d5; }
  .burger-menu__link:hover, .burger-menu__link:focus, .burger-menu__link:active {
    color: #3c9def; }
  .burger-menu__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none; }
  .burger-menu__close::after {
    position: absolute;
    top: 5px;
    right: 10px;
    display: block;
    content: '';
    width: 3px;
    height: 14px;
    background-color: #bdc3c7;
    transform: rotate(45deg); }
  .burger-menu__close::before {
    position: absolute;
    top: 5px;
    right: 10px;
    display: block;
    content: '';
    width: 3px;
    height: 14px;
    background-color: #bdc3c7;
    transform: rotate(-45deg); }

.footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 40px 40px 30px;
  background: linear-gradient(-200deg, #69258c, #c14577);
  margin-top: -86px; }
  .footer__text {
    font-size: 12px;
    color: #fff; }
  .footer__link {
    font-size: 12px;
    color: #fff;
    text-decoration: none; }
  .footer__button {
    position: absolute;
    left: 50%;
    top: -21px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    transform: rotate(180deg);
    cursor: pointer; }
  .footer__button svg {
    width: 24px;
    animation: arrow-up 1s infinite; }
  .footer__button path {
    fill: #ab4e7a; }

@keyframes arrow-up {
  0% {
    opacity: 0.2; }

  100% {
    opacity: 1; } }

.cookie {
  position: fixed;
  bottom: 30px;
  left: 50%;
  z-index: 1000;
  display: none;
  gap: 50px;
  padding: 30px;
  max-width: 1000px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 13px rgba(131, 131, 131, 0.5);
  border-radius: 20px;
  transform: translate(-50%, 0); }
  .cookie--open {
    display: flex; }
  .cookie__text {
    color: #fff;
    max-width: 900px;
    width: 100%; }
  .cookie__button {
    width: fit-content;
    align-self: center; }

.message {
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 800px;
  width: calc(100% - 30px);
  padding: 10px 15px;
  border-radius: 0 0 15px 15px;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 13px #000;
  z-index: 1000; }
  .message__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: white; }
  .message__link {
    text-decoration: none;
    color: #0079c1;
    transition: color 0.3s; }
  .message__link:hover, .message__link:focus {
    color: #2195cf; }

.section-tags {
  width: 100%;
  height: 100vh;
  background: linear-gradient(-200deg, #69258c, #c14577);
  overflow: hidden; }
  .section-tags__button {
    position: absolute;
    left: 50%;
    bottom: 13%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.5s ease-in-out;
    cursor: pointer; }
  .section-tags__button:hover {
    border: 4px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.2); }
    .section-tags__button:hover svg {
      animation: none; }
  .section-tags__button svg {
    width: 44px;
    animation: arrow-down 1s infinite; }
  .section-tags__logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); }

.list-block {
  display: flex;
  flex-wrap: wrap; }
  .list-block__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .list-block__text {
    font-size: 16px;
    text-align: center;
    color: #250167;
    padding: 10px; }

.section-system {
  display: flex;
  flex-direction: column;
  padding: 20px 0 60px;
  background: linear-gradient(-200deg, #69258c, #c14577); }
  .section-system--padding {
    padding: 10px 0 30px; }
  .section-system__title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    margin: 40px 0;
    color: #fff; }
  .section-system__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%; }
  .section-system__row--baseline {
    align-items: baseline; }
  .section-system__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 20px 40px;
    justify-content: center;
    align-content: center; }
  .section-system__container--small {
    width: 11%; }
  .section-system__container--padding {
    padding: 10px 20px; }
  .section-system__img {
    margin-bottom: 20px; }
  .section-system__info {
    font-size: 18px;
    color: #fff;
    text-align: center; }

.section-connect {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 40px 0;
  align-items: flex-end; }
  .section-connect__container {
    flex: 1; }
  .section-connect__container-left {
    padding: 30px 60px 0; }
  .section-connect__container-right {
    text-align: center;
    padding: 40px 10px 0; }
  .section-connect__title {
    font-size: 30px;
    margin: 0; }
  .section-connect__info {
    font-size: 16px;
    color: #888; }
  .section-connect__button {
    padding: 20px 40px;
    border: 0px;
    border-radius: 100px;
    background: #df2867;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer; }

.section-adress {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0; }
  .section-adress__title {
    margin: 0;
    font-size: 30px;
    text-align: center; }
  .section-adress__adress {
    font-size: 14px;
    text-align: center;
    color: #999; }

.section-map {
  width: 100%;
  height: 315px; }

.about-us {
  padding-top: 70px; }
  .about-us__text {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.4;
    max-width: 900px; }
  .about-us__text--margin-top {
    margin-top: 5px; }

.contact-info__header {
  font-size: 30px;
  margin: 40px 0; }
  .contact-info__adress {
    font-style: normal; }
  .contact-info__phone {
    text-decoration: none; }
  .contact-info__phone a {
    text-decoration: none;
    color: #000; }

.about-smorodina {
  padding-top: 70px;
  padding-bottom: 110px; }
  .about-smorodina section > *:not(hr) {
    max-width: 900px; }
  .about-smorodina__section {
    padding-top: 1px; }

.products-smorodina {
  padding-top: 70px;
  padding-bottom: 110px; }
  .products-smorodina__section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -10px; }

.product {
  flex-basis: 32%;
  display: flex;
  flex-direction: column;
  width: 453px;
  height: 631px;
  border-radius: 15px;
  margin: 0px 10px 73px 10px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.1); }
  .product:last-child {
    margin-bottom: 40px; }
  .product__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 193px;
    border-radius: 15px 15px 0px 0px;
    padding: 20px;
    background: linear-gradient(98.36deg, #78018d -4.14%, #cf2373 116.66%); }
  .product__shortInfoContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 52%;
    height: 100%;
    font-weight: 400;
    color: #fff; }
  .product__title {
    font-size: 18px; }
  .product__subtitle {
    font-size: 14px; }
  .product__image #lka-fl-img {
    margin-right: -28px;
    filter: drop-shadow(6px 6px 20px rgba(0, 0, 0, 0.1)); }
  .product__main {
    flex-grow: 1;
    overflow: auto; }
  .product__main li {
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 22px; }
    .product__main li:last-child {
      padding-bottom: 0; }
    .product__main li::before {
      top: 12px; }
  .product__footer {
    position: relative;
    width: 100%;
    height: 45px; }
  .product__button {
    position: absolute;
    display: flex;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 13px;
    word-wrap: normal;
    color: #fff;
    background: linear-gradient(98.36deg, #78018d -4.14%, #cf2373 116.66%);
    cursor: pointer;
    transition: 0.2s; }
  .product__button:hover:first-child {
    width: 140px; }
    .product__button:hover:last-child {
      width: 143px; }
  .product__button span {
    white-space: nowrap;
    overflow: hidden; }
  .product .to-product {
    justify-content: flex-start;
    border-radius: 0px 15px; }
  .product .to-product span {
    margin-left: 9px; }
  .product .show-more {
    right: 0;
    justify-content: flex-end;
    border-radius: 15px 0px; }
  .product .show-more img {
    margin: 5.5px; }
  .product .show-more span {
    margin-right: 9px; }

@media (max-width: 1576px) {
  .product {
    flex-basis: 48%; } }

@media (max-width: 1076px) {
  .product {
    flex-basis: 100%; } }

.for-partners {
  padding-top: 70px;
  padding-bottom: 100px; }
  .for-partners .container > * {
    max-width: 900px; }

.vacancies {
  padding-top: 70px; }
  .vacancies__row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    gap: 50px; }
  .vacancies__info {
    max-width: 600px;
    padding: 0 8px; }
  .vacancies .ui_list li {
    font-size: 16px;
    line-height: 1.5; }
    .vacancies .ui_list li::before {
      color: #97b937;
      top: 13px; }

.vacancies-list__header {
  font-size: 30px;
  margin: 40px 0; }
  .vacancies-list__list {
    display: flex;
    flex-wrap: wrap; }
  .vacancies-list__item {
    display: flex;
    flex-wrap: wrap;
    min-width: 33%;
    max-width: 33%;
    width: 100%;
    border-bottom: 1px solid #ececec;
    margin-bottom: 20px;
    padding: 0 8px 20px; }
  .vacancies-list__container {
    padding: 0 8px;
    flex-wrap: wrap; }
  .vacancies-list__container--left {
    max-width: 33%;
    flex-basis: 33%; }
  .vacancies-list__container--right {
    max-width: 66%;
    flex-basis: 66%; }
  .vacancies-list__avatar {
    width: 100%;
    min-height: 150px;
    padding-bottom: 20px; }
  .vacancies-list__name {
    margin: 10px 0 20px;
    font-size: 24px;
    font-weight: 100; }
  .vacancies-list__title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600; }
  .vacancies-list .ui_list {
    padding-top: 0; }
  .vacancies-list__link {
    text-decoration: none; }

.vacancy {
  padding-top: 70px; }
  .vacancy__back {
    display: inline-block;
    margin-bottom: 60px;
    text-decoration: none;
    color: #be3f92;
    font-weight: 600; }
  .vacancy__department {
    color: #bababa; }
  .vacancy__title {
    margin-top: 0;
    font-size: 30px;
    font-weight: 600; }
  .vacancy__description {
    max-width: 900px; }
  .vacancy__button {
    padding: 20px 40px;
    border: 0px;
    border-radius: 100px;
    background: #df2867;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer; }
  .vacancy ul, .vacancy ol {
    position: relative;
    padding-left: 40px;
    padding-top: 15px;
    padding-bottom: 15px; }
  .vacancy ul li, .vacancy ol li {
    position: relative;
    padding-right: 20px;
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 2; }
    .vacancy ul li::before, .vacancy ol li::before {
      font-family: Arial;
      content: "• ";
      color: #97b937;
      position: absolute;
      left: -22px;
      top: 18px;
      line-height: 0;
      font-size: 40px; }

.page-crm {
  padding-top: 70px;
  padding-bottom: 110px; }
  .page-crm .container {
    max-width: 1280px;
    margin: 0 auto; }
  .page-crm .promo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .page-crm .promo .img-circle {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    background: #01a1ea; }
    .page-crm .promo .img-circle img {
      transform: scale(1.2); }
  .page-crm .promo .title {
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0; }
  .page-crm .downloads {
    margin: 15px 0 10px 0;
    display: flex;
    justify-content: center; }
  .page-crm .downloads a {
    width: 320px;
    background: #0c6fcc;
    padding: 18px 20px;
    text-align: center;
    margin: 10px 10px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: white;
    text-shadow: 0px 2px 3px rgba(32, 32, 32, 0.639);
    transition: all 0.3s ease; }
    .page-crm .downloads a:hover {
      background: #267dd0;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25); }
  .page-crm .features {
    display: flex;
    justify-content: center; }
  .page-crm .features .ui_list {
    background: #f3f3f3;
    border-radius: 16px;
    padding: 16px 40px;
    margin: 20px 10px;
    display: flex;
    flex-direction: column; }
    .page-crm .features .ui_list li {
      max-width: 350px; }
  .page-crm .description .ui_list li {
    max-width: 960px;
    margin-bottom: 1px; }
    .page-crm .description .ui_list li:first-letter {
      text-transform: capitalize; }
  @media only screen and (max-width: 640px) {
.header__nav {
  display: none !important; }
.header__logo {
  position: fixed;
  top: 0;
  right: 20px; }
.burger-menu {
  display: block; }
.bm-burger-button {
  display: block;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
  background-size: 32px 32px;
  background-position: 1px;
  background-repeat: no-repeat;
  background-image: url('../themes/smorodina/assets/icons/menu.svg'); }
.header-scroll {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important; }
.footer {
  flex-direction: column-reverse; }
  .footer__link {
    margin-bottom: 20px; } }

@media screen and (max-width: 480px) {
  .section-system__container {
    width: 100%; } }

@media screen and (max-width: 1200px) {
  .vacancies-list__item {
    max-width: 50%;
    flex-basis: 50%; } }

@media screen and (max-width: 770px) {
  .vacancies-list__item {
    max-width: 100%;
    flex-basis: 100%; } }

@media screen and (max-width: 850px) {
  .cookie {
    flex-direction: column;
    gap: 0; }
    .cookie__button {
      margin-top: 30px; } }
