* {
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  cursor: default;
}

body {
  overflow-x: hidden;
  background-color: #232323;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

body.popup-open {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input, select, textarea {
  outline: none;
  border: none;
}

select {
  background: url(/img/arrow_select.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 4px 20px;
}

button {
  cursor: pointer;
}

.h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.accent {
  color: #0C88DB !important;
}

.conteiner {
  max-width: 1730px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.main {
  width: 100%;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #FFFFFF;
}
.main__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main__right {
  border-radius: 36px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/img/offer_right_image.webp);
  width: 100%;
}
.main .header {
  background-color: #121212;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-radius: 36px;
  transition: background-color 0.5s ease, padding 0.5s ease;
}
.main .header__logo {
  height: 100%;
}
.main .header--scrolled {
  font-size: 16px;
  top: 0;
  left: auto;
  right: auto;
  display: flex;
  position: fixed;
  width: 100%;
  max-width: 1730px;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.99);
  padding: 10px 30px;
  border-radius: 0 0 36px 36px;
  border: 1px solid #0C88DB;
  border-top: none;
  transition: top 0.5s ease, padding 0.5s ease, border-radius 0.5s ease, background-color 0.5s ease;
  box-shadow: 1px 6px 8px 0px rgba(51, 51, 51, 0.45);
}
.main .header--scrolled .header__logo {
  transform: scale(0.7) !important;
  transition: transform 0.5s ease;
  transform-origin: left;
}
.main .header--scrolled .navigation__item {
  font-size: 16px;
}
.main .navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main .navigation__item {
  cursor: pointer;
  color: #FFFFFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: 0.2s;
}
.main .navigation__item:hover {
  color: #0C88DB;
}
.main .navigation__item .active {
  color: #0C88DB;
}
.main .offer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .offer__image {
  border-radius: 36px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 285px;
  background-color: #121212;
  background-image: url(/img/offer_left_image.webp);
}
.main .offer .plane {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-color: #121212;
  border-radius: 36px;
}
.main .offer .plane__h1 {
  min-width: 835px;
  color: #FFF;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  text-transform: uppercase;
}
.main .offer .plane__ul {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.main .offer .plane__li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.main .offer .plane__li::before {
  content: "";
  background-image: url(/img/dot.svg);
  background-repeat: no-repeat;
  width: 7px;
  height: 7px;
  padding-right: 10px;
}
.main .offer .plane__action {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main .offer .plane__button-detals {
  min-width: 314px;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  border-radius: 14px;
  border: none;
  color: #FFFFFF;
  background: #0C88DB;
  padding: 21px 40px;
  transition: 0.2s;
}
.main .offer .plane__button-detals:hover {
  background-color: #FFFFFF;
  color: #0C88DB;
}
.main .offer .plane__button-contacts {
  min-width: 308px;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  border-radius: 14px;
  background: none;
  color: #FFFFFF;
  border: 2px solid #0C88DB;
  padding: 19px 26px;
  transition: 0.2s;
}
.main .offer .plane__button-contacts:hover {
  border: 2px solid #FFFFFF;
}
.main .offer .plane__social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.main .offer .plane__whatsapp {
  min-width: 113px;
  width: 100%;
  cursor: pointer;
}
.main .offer .plane__telegram {
  min-width: 113px;
  width: 100%;
  cursor: pointer;
}

.advantages {
  display: flex;
  flex-direction: column;
  padding: 30px;
  padding-top: 80px;
  background-color: #121212;
  border-radius: 36px;
  position: relative;
}
.advantages__bg, .advantages .conteiner {
  position: absolute;
  z-index: -1;
  top: 29%;
  right: 0;
}
.advantages__h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.advantages__cards {
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
}
.advantages .cards {
  max-width: calc((100% - 60px) / 3);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  border-radius: 22px;
  background: #D9D9D9;
}
.advantages .cards__title {
  color: #000000;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
}
.advantages .cards__subtitle {
  color: #000000;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ready-solutions {
  padding: 0;
  position: relative;
}
.ready-solutions__cards {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 60px;
  color: #FFFFFF;
}
.ready-solutions__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  background: #121212;
  box-shadow: 1px 6px 16px 0px rgba(51, 51, 51, 0.08);
  padding: 30px;
  max-width: calc((100% - 60px) / 4);
}
.ready-solutions__image {
  width: 100%;
  border-radius: 18px;
}
.ready-solutions__action {
  margin: 20px 0;
  display: inline-flex;
  padding: 0px 8px;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  border-radius: 10px;
  background: #0C88DB;
}
.ready-solutions__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.ready-solutions__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ready-solutions__parametrs {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ready-solutions__parametr {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  opacity: 0.7;
}
.ready-solutions__price {
  font-size: 32px;
}
.ready-solutions__button {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  border-radius: 14px;
  border: none;
  color: #FFFFFF;
  background: #0C88DB;
  padding: 16px 32px;
  transition: 0.2s;
}
.ready-solutions__button:hover {
  background-color: #FFFFFF;
  color: #0C88DB;
}

.portfolio {
  background-image: url(/img/portfolio_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 30px;
  width: 100%;
  border-radius: 32px;
  position: relative;
}
.portfolio__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.portfolio__left {
  display: flex;
  flex-direction: column;
}
.portfolio__leftWrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.portfolio__subtitle {
  color: #0C88DB;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.portfolio__title {
  color: #000000;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.portfolio__navigation {
  display: flex;
  gap: 35px;
}
.portfolio__navigation-item {
  display: flex;
  padding: 12px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 1px solid #C6C6C6;
  background: none;
}
.portfolio__navigation-icon path, .portfolio svg, .portfolio path {
  cursor: default !important;
}
.portfolio__arrows {
  display: flex;
  gap: 16px;
}
.portfolio__arrows svg, .portfolio__arrows rect, .portfolio__arrows path {
  cursor: pointer !important;
  transition: fill 0.2s ease;
}
.portfolio__arrows .swiper-button-left:hover rect {
  fill: #0C88DB;
}
.portfolio__arrows .swiper-button-left:hover path {
  fill: #FFFFFF;
}
.portfolio__arrows .swiper-button-right:hover rect {
  fill: #0C88DB;
}
.portfolio__arrows .swiper-button-right:hover path {
  fill: #FFFFFF;
}

.swiper {
  margin-top: 70px;
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: cente;
}
.swiper-slide img {
  height: 500px;
  border-radius: 24px;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-conteiner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.swiper-title {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.swiper-subtitle {
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.salle__h1 {
  color: #000000;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 40px;
}

.steps {
  position: relative;
}
.steps__image-mob {
  display: none;
}
.steps__image {
  max-width: 100%;
  height: auto;
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
}
.form__input {
  display: flex;
  height: 50px;
  padding: 13px 24px 13px 55px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 32px;
  border: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-size: auto 18px;
  color: #888B97;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.form__input.item-f2 {
  max-width: 180px;
  background: white url(/img/form_user.svg) no-repeat 23px 50%;
  margin-right: 15px;
}
.form__input.item-f4 {
  max-width: 220px;
  border-radius: 32px 0px 0px 32px;
  background: white url(/img/form_phone.svg) no-repeat 23px 50%;
}
.form__button {
  cursor: pointer;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid #0C88DB;
  border-radius: 10px;
  background: #0C88DB;
  color: #FFFFFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 20px 40px;
  transition: 0.2s;
}
.form__button:hover {
  background-color: #FFFFFF;
  color: #0C88DB;
  border-color: #0C88DB;
}

.background {
  max-width: 100% !important;
  left: 0;
  margin: 0;
  position: absolute;
  top: 3000px;
  z-index: -1;
}

.action {
  display: flex;
  gap: 20px;
}
.action__h1 {
  font-size: 65px;
  font-weight: 500;
}
.action__h2 {
  margin: 18px 0;
  font-size: 20px;
  font-weight: 400;
  max-width: 365px;
}
.action__wrap {
  width: 100%;
  max-width: 1035px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #CED2DD;
}
.action__image {
  background: url(/img/sendForm_right.webp);
  background-size: cover;
  width: 675px;
  border-radius: 22px;
}

.sendForm {
  font-style: normal;
  line-height: normal;
  display: flex;
  gap: 30px;
  color: #000000;
}
.sendForm__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  margin: 0 auto;
}
.sendForm__form {
  font-style: normal;
  line-height: normal;
  display: flex;
  justify-content: stretch;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 470px;
}
.sendForm__input, .sendForm .item-f2 {
  max-width: 205px;
  padding: 15px 20px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  height: 50px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #232323;
}
.sendForm__input, .sendForm .item-f4 {
  max-width: 247px;
  padding: 15px 20px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  height: 50px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #232323;
  text-decoration: none;
}
.sendForm__input::-moz-placeholder {
  color: #CED2DD;
}
.sendForm__input::placeholder {
  color: #CED2DD;
}
.sendForm__select:required:invalid {
  border-radius: 8px;
  background: #232323;
  color: #CED2DD;
}
.sendForm__select {
  height: 50px;
  font-size: 20px;
  font-weight: 400;
  padding: 9px 20px;
  width: 100%;
  border-radius: 8px;
  color: #CED2DD;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #232323 url(/img/arrow_select.svg) right 18px center no-repeat !important;
  background-size: 20px !important;
}
.sendForm__contacts {
  max-width: 382px;
  color: #000000;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sendForm__phone {
  cursor: pointer;
  color: #000000;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s;
}
.sendForm__phone:hover {
  color: #0C88DB;
}
.sendForm__social-icon {
  display: flex;
  gap: 15px;
}
.sendForm__comment {
  width: 100%;
  border-radius: 8px;
  padding: 9px 20px;
  background: #232323;
  color: #FFFFFF;
  height: 60px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sendForm__comment::-moz-placeholder {
  color: #CED2DD;
}
.sendForm__comment::placeholder {
  color: #CED2DD;
}
.sendForm__button {
  cursor: pointer;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 20px;
  max-width: 204px;
  height: 55px;
  border-radius: 10px;
  background: #0C88DB;
  transition: 0.2s;
}
.sendForm__button:hover {
  background-color: #FFFFFF;
  color: #0C88DB;
}
.sendForm__email {
  color: #000000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s;
}
.sendForm__email:hover {
  color: #0C88DB;
}
.sendForm__wrap {
  display: flex;
  gap: 18px;
}
.sendForm__privacy {
  color: #000000;
  text-align: justify;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
  padding: 0 30px;
}
.footer__item-button {
  color: #000000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 7px;
  background: #FFF;
}
.footer__item-button img {
  cursor: pointer;
}
.footer__subtitle {
  max-width: 460px;
}
.footer__navigation {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
}
.footer__item-title {
  color: #0C88DB;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-bottom: 40px;
}
.footer__flex-el {
  color: #FFFFFF;
  height: 180px;
  max-width: 195px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__item-messenger {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer__item-element {
  color: #FFFFFF;
  transition: 0.2s;
}
.footer__item-element:hover {
  color: #0C88DB;
}

.privacy {
  color: #FFFFFF;
  padding: 0 20px;
}

@media (max-width: 1500px) {
  .advantages .cards {
    gap: 20px;
  }
  .advantages .cards__title {
    font-size: 24px;
  }
  .advantages .cards__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 1366px) {
  body {
    gap: 80px;
  }
  .main .header__logo {
    height: none;
    width: 80%;
  }
  .main .offer__image {
    height: 195px;
  }
  .main .offer .plane__h1 {
    width: 100%;
    min-width: 100%;
    font-size: 53px;
    line-height: 50.8px;
  }
  .main .offer .plane__ul {
    font-size: 16px;
  }
  .ready-solutions__card {
    max-width: calc((100% - 40px) / 3);
  }
  .action__image {
    background-size: cover;
    width: 400px;
    height: auto;
  }
  .action__h1 {
    font-size: 58px;
    font-weight: 500;
  }
}
@media (max-width: 960px) {
  .main__right {
    display: none;
  }
  .main .offer .plane__action {
    justify-content: flex-start;
    gap: 15px;
  }
  .main .offer .plane__button-detals {
    font-size: 22px;
  }
  .main .offer .plane__button-contacts {
    font-size: 22px;
  }
  .main .offer .plane__ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
  }
  .action {
    flex-wrap: wrap;
  }
  .action__image {
    display: none;
  }
  .action__image__h1 {
    font-size: 60px;
    font-weight: 500;
  }
  .ready-solutions__card {
    max-width: calc((100% - 20px) / 2);
  }
  .footer {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .main {
    padding-top: 0px;
  }
  .main .navigation {
    display: none;
  }
  .main .header {
    font-size: 16px;
    top: 0;
    left: auto;
    right: auto;
    display: flex;
    position: fixed;
    width: 100%;
    max-width: 1730px;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.99);
    padding: 10px 30px;
    border-radius: 0 0 36px 36px;
    border: 1px solid #0C88DB;
    border-top: none;
    transition: top 0.5s ease, padding 0.5s ease, border-radius 0.5s ease, background-color 0.5s ease;
    box-shadow: 1px 6px 8px 0px rgba(51, 51, 51, 0.45);
  }
  .main .header--scrolled .header__logo {
    transform: scale(0.7);
    transition: transform 0.5s ease;
    transform-origin: left;
  }
  .main .offer {
    height: 100vh;
    padding-top: 94px;
  }
  .main .offer__image {
    min-height: 119px;
    height: 100%;
  }
  .main .offer .plane {
    gap: 15px;
  }
  .main .offer .plane__h1 {
    text-align: center;
    font-size: 25px;
    line-height: 37px;
    margin-bottom: -14px;
  }
  .main .offer .plane__action {
    flex-wrap: wrap;
  }
  .main .offer .plane__social {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }
  .main .offer .plane__button-detals {
    width: 100%;
    font-size: 20px;
    padding: 12px 24px;
  }
  .main .offer .plane__button-contacts {
    width: 100%;
    font-size: 20px;
    padding: 12px 24px;
  }
  .main .offer .plane__link1, .main .offer .plane__link2 {
    width: 100%;
  }
  .main .offer .plane__whatsapp {
    width: auto;
    height: 45px;
  }
  .main .offer .plane__telegram {
    width: auto;
    height: 45px;
  }
  .h2 {
    font-size: 26px;
  }
  .advantages .cards {
    max-width: 100%;
  }
  .ready-solutions__card {
    max-width: 100%;
  }
  .ready-solutions__jacor {
    position: absolute;
    top: -90px;
  }
  .portfolio {
    padding: 30px;
  }
  .portfolio__leftWrap {
    justify-content: center;
  }
  .portfolio__jacor {
    position: absolute;
    top: -90px;
  }
  .portfolio__title {
    font-size: 26px;
    text-align: center;
  }
  .portfolio__navigation {
    display: none;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .portfolio__wrap {
    justify-content: center;
    max-width: 100%;
    gap: 15px;
  }
  .portfolio__arrows {
    display: none;
  }
  .portfolio .swiper {
    margin-top: 40px;
  }
  .portfolio .swiper-slide img {
    height: 400px;
  }
  .portfolio .form {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }
  .portfolio .form__input.item-f2 {
    margin: 0;
    max-width: none;
    width: 100%;
  }
  .portfolio .form__input.item-f4 {
    max-width: none;
    width: 100%;
    border-radius: 32px;
  }
  .portfolio .form__button {
    height: auto;
    font-size: 20px;
    padding: 12px 24px;
    max-width: none;
    width: 100%;
  }
  .salle__h1 {
    margin-top: 80px;
    font-size: 26px;
  }
  .action__h1 {
    font-size: 26px;
  }
  .action__h2 {
    font-size: 16px;
  }
  .steps__jacor {
    position: absolute;
    top: -90px;
  }
  .steps__image {
    display: none;
  }
  .steps__image-mob-img {
    width: 100%;
  }
  .steps__image-mob {
    display: block;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .sendForm {
    flex-wrap: wrap;
  }
  .sendForm__input.item-f2 {
    margin: 0;
    max-width: none;
    width: 100%;
  }
  .sendForm__input.item-f4 {
    max-width: none;
    width: 100%;
  }
  .sendForm__button {
    max-width: none;
    width: 100%;
  }
  .sendForm__phone {
    max-width: none;
    width: 100%;
    font-size: 30px;
    text-align: center;
  }
  .sendForm__wrap {
    flex-direction: column;
  }
  .sendForm__social-icon {
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }
  .footer {
    position: relative;
    flex-wrap: wrap;
  }
  .footer__item-title {
    padding-bottom: 10px;
  }
  .footer__navigation {
    gap: 40px;
    flex-wrap: wrap;
  }
  .footer__jacor {
    position: absolute;
    top: -90px;
  }
}/*# sourceMappingURL=style.css.map */