@font-face {
  font-family: "Manrope";
  src: url("/new/assets/fonts/Manrope-ExtraLight.woff2");
  font-weight: 200;
}

@font-face {
  font-family: "Manrope";
  src: url("/new/assets/fonts/Manrope-Light.woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Manrope";
  src: url("/new/assets/fonts/Manrope-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("/new/assets/fonts/Manrope-Medium.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Manrope";
  src: url("/new/assets/fonts/Manrope-SemiBold.woff2");
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url("/new/assets/fonts/Manrope-Bold.woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Manrope";
  src: url("/new/assets/fonts/Manrope-ExtraBold.woff2");
  font-weight: 800;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-width: 375px;
  height: 100%;
  font-family: "Manrope", sans-serif;
}

a {
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  color: inherit;
}

input,
textarea {
  outline: none;
}

button {
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
}

img,
video {
  width: 100%;
  display: block;
  border-style: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 70px;
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 57px;
  list-style: none;
}

.navbar__item-link {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.navbar__item-link:hover {
  color: #5f6065;
}

.logo {
  display: block;
  width: 170px;
  height: 41px;
}

.copyright {
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.social-block {
  display: flex;
  align-items: center;
  gap: 13px;
  list-style: none;
}

.social-block__item-link {
  display: inline-block;
}

.social-block__item-link svg rect {
  transition: 0.3s ease-in-out;
}

.social-block__item-link:hover svg rect {
  fill: #292929;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0px;
}

.header-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-user__login-link {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header-user__callback-btn {
  padding: 15px 36px;
  border-radius: 12px;
  background: #292929;
  color: #a5df45;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  transition: 0.3s ease-in-out;
}

.header-user__callback-btn:hover {
  color: #212121;
  background: #a5df45;
}

.header-user__callback-btn:active {
  color: #a5df45;
  background: #3e3d3d;
}

.header-menu {
  position: relative;
  display: none;
}

.header-menu.active .header-menu__btn-item:first-child {
  position: absolute;
  top: 45%;
  transform: rotate(45deg);
}

.header-menu.active .header-menu__btn-item:nth-child(2) {
  transform: translateX(-100%);
  position: absolute;
  top: 45%;
  opacity: 0;
}

.header-menu.active .header-menu__btn-item:last-child {
  bottom: 45%;
  position: absolute;
  transform: rotate(-45deg);
}

.header-menu.active .header-menu__block {
  display: block;
  animation: menuShow 0.3s ease-in-out;
}

@keyframes menuShow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.header-menu__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
}

.header-menu__btn-item {
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: #292929;
  transition: 0.3s ease-in-out;
}

.header-menu__btn-item:first-child {
  top: 0%;
}

.header-menu__btn-item:nth-child(2) {
  top: 45%;
}

.header-menu__btn-item:last-child {
  bottom: 0%;
}

.header-menu__block {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 9;
  min-width: 240px;
}

.header-menu__block-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  list-style: none;
}

.header-menu__block-link {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.header-menu .header-user__callback-btn {
  display: none;
}

.modal-callback {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.modal-callback.show {
  display: block;
}

.modal-callback__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(41, 41, 41, 0.2196078431);
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0px 35px;
}

.footer-logo__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* PAGES */

.main-page .preview__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 0px 60px;
}

.main-page .preview-desc {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.main-page .preview-desc__title {
  max-width: 750px;
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -1.56px;
}

.main-page .preview-desc__text {
  max-width: 420px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.main-page .preview-desc__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: max-content;
  padding: 16px 24px;
  border-radius: 14px;
  background: #a5df45;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.main-page .preview-desc__link:hover {
  color: #a5df45;
  background: #292929;
}

.main-page .preview-desc__link:hover .preview-desc__link-icon path {
  stroke: #a5df45;
}

.main-page .preview-desc__link-icon {
  width: 24px;
  height: 24px;
}

.main-page .preview-desc__link-icon path {
  transition: 0.3s ease-in-out;
}

.main-page .preview__img {
  width: 620px;
}

.main-page .advantages {
  background: #292929;
}

.main-page .advantages__wrap {
  padding: 100px 0px;
}

.main-page .advantages-title {
  margin-bottom: 50px;
  color: #f5f5f5;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.main-page .advantages-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.main-page .advantages-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 266px;
  padding: 36px 30px;
  border-radius: 45px;
  background: rgba(77, 77, 77, 0.41);
}

.main-page .advantages-card__icon {
  width: 50px;
  height: 50px;
}

.main-page .advantages-card__desc {
  color: #f5f5f5;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.main-page .advantages-card__desc--green {
  color: #a5df45;
}

.main-page .working-set__wrap {
  padding: 120px 0px;
}

.main-page .working-set__title {
  margin-bottom: 50px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.main-page .working-set__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.main-page .working-set__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 400px;
  padding: 35px;
  border-radius: 40px;
  background: #f5f5f5;
  transition: 0.3s ease-in-out;
}

.main-page .working-set__card:hover {
  background: #ffffff;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.main-page .working-set__card:hover .working-set__stack-item {
  border: 1px solid rgba(199, 199, 199, 0.6);
}

.main-page .working-set__card:hover .working-set__stack-item:hover {
  border: 1px solid #a5df45;
}

.main-page .working-set__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.main-page .working-set__card-icon {
  width: 40px;
  height: 40px;
}

.main-page .working-set__card-title {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.main-page .working-set__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.main-page .working-set__stack-item {
  padding: 10px 30px;
  border-radius: 16px;
  border: 1px solid #ffffff;
  background: #ffffff;
  transition: 0.3s ease-in-out;
}

.main-page .working-set__stack-link {
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-page .working-set__card-basement {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-page .working-set__price {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.main-page .working-set__link svg path {
  transition: 0.3s ease-in-out;
}

.main-page .working-set__link:hover svg path:first-child {
  fill: #5f6065;
  stroke: #5f6065;
}

.main-page .experience {
  background: #292929;
}

.main-page .experience__wrap {
  padding: 100px 0px;
}

.main-page .experience__content {
  padding: 80px 60px;
  border-radius: 50px;
  background: rgba(77, 77, 77, 0.41);
}

.main-page .experience__title {
  margin-bottom: 50px;
  color: #f5f5f5;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.main-page .experience-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 57px;
}

.main-page .experience-list__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-page .experience-list__item-num {
  color: #a5df45;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0.5px;
}

.main-page .experience-list__item-desc {
  color: #f5f5f5;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.main-page .process__wrap {
  padding: 120px 0px;
}

.main-page .process__title {
  margin-bottom: 50px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.main-page .process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.main-page .process-list__item {
  display: flex;
  flex-direction: column;
  gap: 65px;
  height: 304px;
  padding: 35px;
  border-radius: 45px;
  background: #f5f5f5;
}

.main-page .process-list__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #292929;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

.main-page .process-list__item-title {
  margin-bottom: 10px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.main-page .process-list__item-text {
  max-width: 457px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.partners {
  background: #292929;
  padding: 100px 0px;
}

.partners__title {
  margin-bottom: 50px;
  color: #f5f5f5;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.partners .partners-ticker .splide__slide {
  display: flex;
  align-items: center;
}

.main-page .cooperation__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 120px 0px 175px;
}

.main-page .cooperation__title {
  max-width: 530px;
  margin-bottom: 40px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.main-page .cooperation__text {
  max-width: 420px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.main-page .cooperation .callback-form__close {
  display: none;
}

.developers-page__wrap {
  background: radial-gradient(circle, rgba(163, 179, 133, 0.2) 20%, rgb(245, 245, 245) 70%, rgba(221, 205, 255, 0.2) 95%);
}

.developers-page .developers-top {
  padding-top: 80px;
  text-align: center;
}

.developers-page .developers-title {
  margin: 0 auto 20px;
  max-width: 680px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  letter-spacing: -1.56px;
}

.developers-page .developers-desc {
  margin: 0 auto 60px;
  max-width: 418px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.developers-page .search-block__wrap {
  padding: 40px;
  margin-bottom: 80px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 7px 7px 60px 0px rgba(100, 100, 111, 0.1);
}

.developers-page .search-form__search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 14px;
  border: 1px solid rgba(199, 199, 199, 0.6);
}

.developers-page .search-form__search-input {
  flex-grow: 1;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.developers-page .search-form__search-input::placeholder {
  color: #5f6065;
}

.developers-page .search-form__search-icon {
  width: 30px;
  height: 30px;
}

.developers-page .search-form__filter-list,
.developers-page .busyness__filter-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}
.developers-page .busyness__filter-list {
  margin-bottom:20px;
}

.developers-page .search-form__filter-item {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  background: #ffffff;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.developers-page .search-form__filter-item:hover {
  border: 1px solid #292929;
}

.developers-page .search-form__filter-item.active {
  color: #ffffff;
  border: 1px solid #292929;
  background: #292929;
}

.developers-page .search-form__filter-reset {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  background: #f5f5f5;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
}

.developers-page .search-form__filter-reset.show {
  display: flex;
}

.developers-page .search-form__filter-reset img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.developers-page .developers-list__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 150px;
}

.developers-page .developers-card {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 20px 12px;
  min-height: 554px;
  border-radius: 32px;
  background: #fff;
}

.developers-page .developers-card__img-link {
  margin-bottom: 12px;
}

.developers-page .developers-card__img {
  height: 261px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.developers-page .developers-card__desc {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 0 8px;
}

.developers-page .developers-card__head {
  margin-bottom: 20px;
}

.developers-page .developers-card__name {
  margin-bottom: 9px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.developers-page .developers-card__name .developer-status {
  font-size: 11px;
  display: inline-block;
  padding-left: 15px;
  margin-left: 4px;
  position: relative;
  padding-top: -10px;
}
.developers-page .developers-card__name .developer-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: red;
  position: absolute;
  top: 50%;
  left: 3px;
  border-radius: 50%;
  transform: translate(0, -50%);
}
.developers-page .developers-card__name .developer-status.green::before {
  background-color: green;
}
.developers-page .developers-card__speciality {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.developers-page .developers-card__speciality-type {
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.developers-page .developers-card__speciality-position {
  padding: 7px 14px;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.developers-page .developers-card__speciality-position--yellow {
  color: #b87a00;
  background: #fff7c2;
}

.developers-page .developers-card__speciality-position--blue {
  color: #4c698a;
  background: #e5f1fe;
}

.developers-page .developers-card__speciality-position--green {
  color: #7eb745;
  background: #e8ffd0;
}

.developers-page .developers-card__skills-title {
  margin-bottom: 8px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.developers-page .developers-card__skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.developers-page .developers-card__skills-item,
.developers-page .developers-card__level-item {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  background: #ffffff;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.developers-page .developers-card__level-item {
  border: none;
}
.senior-color {
  background-color:#FFF7C2!important;
  color: #B87A00!important;
  font-weight:bold!important;
}
.middle-color {
  background-color:#E8FFD0!important;
  color:#7EB745!important;
  font-weight:bold!important;
}
.junior-color {
  background-color:#E5F1FE!important;
  color:#4C698A!important;
  font-weight:bold!important;
}
.developers-page .developers-card__link {
  padding: 12px 0px;
  border-radius: 12px;
  border: 1px solid #5f6065;
  text-align: center;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.developers-page .developers-card__link:hover {
  border: 1px solid #a5df45;
}

.profile-page {
  background: #f5f5f5;
}

.profile-page .header {
  background: #ffffff;
}

.profile-page .breadcrumbs {
  padding: 60px 0px 30px;
  background: #ffffff;
}

.profile .preview {
  background: #ffffff;
}

.profile .preview__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}

.profile .preview-info {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profile .preview-info__img {
  grid-column: span 1;
  height: 260px;
  object-fit: contain;
  object-position: top;
  border-radius: 20px;
}

.profile .preview-info__desc {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.profile .preview-info__title {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.profile .preview-info__skills-desc {
  max-width: 414px;
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.profile .preview-info__skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
}

.profile .preview-info__skills-item {
  min-width: max-content;
  padding: 7px 14px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.profile .preview-info__skills-item--yellow {
  color: #b87a00;
  background: #fff7c2;
}

.profile .preview-info__skills-item--blue {
  color: #4c698a;
  background: #e5f1fe;
}

.profile .preview-info__skills-item--green {
  color: #7eb745;
  background: #e8ffd0;
}

.profile .preview-price {
  display: flex;
  align-items: center;
}

.profile .preview-price__wrap {
  width: 100%;
  padding: 20px;
  border-radius: 30px;
  background: #f2f5f6;
}

.profile .preview-price__item-box {
  margin-bottom: 24px;
}

.profile .preview-price__item:first-child {
  margin-bottom: 16px;
}

.profile .preview-price__label {
  margin-bottom: 2px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.profile .preview-price__value {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.profile .preview-price__callback {
  width: 100%;
  padding: 11px 24px;
  border-radius: 12px;
  background: #a5df45;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.profile .preview-price__callback:hover {
  background: #292929;
  color: #a5df45;
}

.profile .about__wrap {
  margin: 50px 0px;
  padding: 60px;
  border-radius: 32px;
  background: #ffffff;
}

.profile .about-desc {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(199, 199, 199, 0.6);
}

.profile .about-desc__title {
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

.profile .about-desc__text {
  max-width: 1030px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.profile .about-skills {
  padding-top: 40px;
}

.profile .about-skills__title {
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.profile .about-skills__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1030px;
  list-style: none;
}

.profile .about-skills__item {
  padding: 10px 20px;
  border-radius: 24px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.profile .about-skills__item.active {
    color: #ffffff!important;
    border: 1px solid #292929!important;
    background: #292929!important;
}
.profile .about-languages {
  padding-top: 40px;
  border-top: 1px solid rgba(199, 199, 199, 0.6);
}

.profile .about-languages__title {
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.profile .about-languages__list {
  display: flex;
  gap: 20px;
}

.profile .about-languages__item {
  display: flex;
  gap: 10px;
  position:relative;
  padding-left:25px
}
.profile .about-languages__item img{
  position:absolute;
  top:4px;
  left:0;
  width:20px;
}

.profile .about-languages__img {
  width: 26px;
  height: 18px;
}

.profile .about-languages__lang {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.profile .about-languages__level {
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}

.profile .projects__wrap {
  margin-bottom: 50px;
  padding: 60px;
  border-radius: 32px;
  background: #ffffff;
}

.profile .projects__title {
  margin-bottom: 30px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

.profile .projects-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.profile .projects-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 345px;
  padding: 20px;
  border-radius: 32px;
  background: #f5f5f5;
}

.profile .projects-card__header-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.profile .projects-card__title {
  position: relative;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.profile .projects-card__completed {
  display: flex;
  gap: 40px;
}

.profile .projects-card__completed-title {
  margin-bottom: 4px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.profile .projects-card__completed-value {
  min-width: max-content;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.profile .projects-card__completed-num {
  font-size: 24px;
  font-weight: 500;
}

.profile .projects-card__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile .projects-card__stack-title {
  margin-bottom: 6px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.profile .projects-card__stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.profile .projects-card__stack-item {
  padding: 4px 10px;
  border-radius: 20px;
  background: #ffffff;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.profile .projects-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  height: 340px;
  padding: 20px;
  border-radius: 32px;
  background: rgba(255, 242, 215, 0.5019607843);
}

.profile .projects-link__img {
  width: 111px;
  height: 111px;
}

.profile .projects-link__item {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-decoration-line: underline;
}

.profile .projects-show {
  display: block;
  width: 320px;
  padding: 11px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.profile .projects-show:hover {
  border: 1px solid #a5df45;
}

.profile .achievements__wrap {
  padding: 60px;
  margin-bottom: 50px;
  border-radius: 32px;
  background: #ffffff;
}

.profile .achievements__title {
  margin-bottom: 30px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

.profile .achievements-certificates {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  list-style: none;
}

.profile .achievements-certificates__item {
  height: 191px;
  padding-bottom: 12px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 7px 57px 0px rgba(100, 100, 111, 0.14);
}

.profile .achievements-certificates__img {
  height: 113px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.profile .achievements-certificates__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 12px 12px 0;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.profile .achievements-tests__title {
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.profile .achievements-tests__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  list-style: none;
}

.profile .achievements-tests__item {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(199, 199, 199, 0.6);
}

.profile .achievements-tests__header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.profile .achievements-tests__label {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.profile .achievements-tests__level {
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.profile .achievements-tests__check {
  width: 13px;
  height: 13px;
}

.profile .achievements-tests__value {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.profile .cooperation__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 120px 0px 175px;
}

.profile .cooperation__title {
  max-width: 530px;
  margin-bottom: 40px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.profile .cooperation__text {
  max-width: 420px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.profile .cooperation .callback-form__close {
  display: none;
}

.outstaffing .preview__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 0px 215px;
}

.outstaffing .preview-desc {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.outstaffing .preview-desc__title {
  max-width: 750px;
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -1.56px;
}

.outstaffing .preview-desc__text {
  max-width: 420px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.outstaffing .preview-desc__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: max-content;
  padding: 16px 24px;
  border-radius: 14px;
  background: #a5df45;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.outstaffing .preview-desc__link:hover {
  color: #a5df45;
  background: #292929;
}

.outstaffing .preview-desc__link:hover .preview-desc__link-icon path {
  stroke: #a5df45;
}

.outstaffing .preview-desc__link-icon {
  width: 24px;
  height: 24px;
}

.outstaffing .preview-desc__link-icon path {
  transition: 0.3s ease-in-out;
}

.outstaffing .preview__img {
  width: 515px;
}

.outstaffing .advantages {
  background: #292929;
}

.outstaffing .advantages__wrap {
  padding: 100px 0px;
}

.outstaffing .advantages-title {
  margin-bottom: 50px;
  color: #f5f5f5;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.outstaffing .advantages-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.outstaffing .advantages-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 266px;
  padding: 36px 30px;
  border-radius: 45px;
  background: rgba(77, 77, 77, 0.41);
}

.outstaffing .advantages-card__icon {
  width: 50px;
  height: 50px;
}

.outstaffing .advantages-card__desc {
  color: #f5f5f5;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.outstaffing .advantages-card__desc--green {
  color: #a5df45;
}

.outstaffing .description__wrap {
  padding: 100px 0px;
  display: flex;
  gap: 90px;
}

.outstaffing .description-aside {
  position: relative;
  min-width: 331px;
}

.outstaffing .description-aside__box {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.outstaffing .description-aside__callback-box {
  padding: 20px;
  border-radius: 26px;
  background: #f5f5f5;
}

.outstaffing .description-aside__title {
  margin-bottom: 36px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.outstaffing .description-aside__btn {
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  background: #a5df45;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.outstaffing .description-aside__btn:hover {
  color: #a5df45;
  background: #292929;
}

.outstaffing .description-aside__list-title {
  margin-bottom: 18px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  text-decoration: underline;
}

.outstaffing .description-aside__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.outstaffing .description-aside__item {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.outstaffing .description-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.outstaffing .description-content__title {
  margin-bottom: 26px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.outstaffing .description-content__paragraph-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outstaffing .description-content__paragraph {
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.outstaffing .description-content__block-title {
  margin-bottom: 20px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

.outstaffing .description-content__table {
  display: grid;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 20px;
  border-radius: 20px;
  border: 1px solid rgba(199, 199, 199, 0.6);
}

.outstaffing .description-content__table-header,
.outstaffing .description-content__table-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.outstaffing .description-content__table-header {
  border-bottom: 1px solid rgba(199, 199, 199, 0.6);
  background: #f5f5f5;
  border-radius: 20px 20px 0px 0px;
}

.outstaffing .description-content__table-title {
  padding: 10px 12px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.outstaffing .description-content__table-title:first-child {
  border-right: 1px solid rgba(199, 199, 199, 0.6);
}

.outstaffing .description-content__table-title:last-child {
  border-left: 1px solid rgba(199, 199, 199, 0.6);
}

.outstaffing .description-content__table-row {
  border-bottom: 1px solid rgba(199, 199, 199, 0.6);
}

.outstaffing .description-content__table-row:last-child {
  border-bottom: none;
}

.outstaffing .description-content__table-item {
  padding: 10px 12px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.outstaffing .description-content__table-item:first-child {
  border-right: 1px solid rgba(199, 199, 199, 0.6);
}

.outstaffing .description-content__table-item:last-child {
  border-left: 1px solid rgba(199, 199, 199, 0.6);
}

.outstaffing .description-content__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0px 20px 30px;
}

.outstaffing .description-content__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.outstaffing .description-content__item-icon {
  width: 24px;
  height: 24px;
}

.outstaffing .description-content__quote-wrap {
  margin: 26px 0px 26px 30px;
}

.outstaffing .description-content__quote {
  padding: 28px 0px 28px 28px;
  background: #f5f5f5;
  border-left: 10px solid #d9d9d9;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.outstaffing .cooperation__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 120px 0px 175px;
}

.outstaffing .cooperation__title {
  max-width: 530px;
  margin-bottom: 40px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -1.26px;
}

.outstaffing .cooperation__text {
  max-width: 420px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.outstaffing .cooperation .callback-form__close {
  display: none;
}

/* UI */

.callback-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 530px;
  padding: 35px 30px 45px;
  border-radius: 20px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  background: #ffffff;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.callback-form__inputs-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-form__contact-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-form__contact-label {
  margin-bottom: 8px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.callback-form__contact-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.callback-form__contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.callback-form__contact-item.active .callback-form__contact-icon path:first-child {
  display: block;
}

.callback-form__contact-icon path:first-child {
  display: none;
}

.callback-form__item {
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid rgba(199, 199, 199, 0.6);
}

.callback-form__item-input {
  width: 100%;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.callback-form__item-input::placeholder {
  color: #5f6065;
}

.callback-form__item-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.callback-form__item-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.callback-form__item-input:hover {
  appearance: none;
  -moz-appearance: textfield;
}

.callback-form__item-input:focus {
  appearance: none;
  -moz-appearance: textfield;
}

.callback-form__item-textarea {
  resize: none;
  width: 100%;
  height: 103px;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.callback-form__item-textarea::placeholder {
  color: #5f6065;
}

.callback-form__load-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 12px;
}

.callback-form__load-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.callback-form__load-label {
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  padding-top: 12px;
}

.callback-form__load-label.hide {
  display: none;
}

.callback-form__load-elem {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.callback-form__load-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding-top: 12px;
}

.callback-form__load-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
}

.callback-form__load-del {
  display: none;
  align-items: center;
  gap: 4px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
}

.callback-form__load-del.show {
  display: flex;
}

.callback-form__load-icon {
  width: 13px;
  height: 13px;
}

.callback-form__submit {
  margin-bottom: 6px;
  padding: 12px 30px;
  border-radius: 8px;
  background: #a5df45;
  color: #212121;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.callback-form__submit:hover {
  color: #a5df45;
  background: #292929;
}

.callback-form__agreement-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.callback-form__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #a6a6a6;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.callback-form__check.active {
  border: 1px solid #292929;
  background: #292929;
}

.callback-form__check.active .callback-form__check-icon {
  opacity: 1;
}

.callback-form__check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.callback-form__check-desc {
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.callback-form__close {
  position: absolute;
  top: -40px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.callback-form__close-icon {
  width: 20px;
  height: 20px;
}

.callback-form__encryption {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #5f6065;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}

.callback-form__encryption-icon {
  width: 13px;
  height: 13px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  list-style: none;
}

.breadcrumbs-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-container h1 {
  margin: 10px 0 30px 0;
}
.about-container h3 {
  margin: 20px 0;
}
.info-choose-developer ul {
    font-size: 15px;
    list-style-type: none;
    margin-bottom:40px;
}
.info-choose-developer ul li {
  padding: 10px 0 10px 27px;
  background: url(/new/assets/images/icons/marker_list.svg) 0 50% no-repeat;
  background-size: 25px 25px;
}

.about-container .middle-info {
  background-color: #F5F5F5;
  padding:20px 0;
}
.about-container .about-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style-type: none;
}
.about-container .about-advantages li {
  height: 264px;
  gap: 47px;
  padding: 35px 30px;
  background-color:#fff;
  border-radius: 20px;
}
.about-container .about-advantages li h4 {
  margin: 20px 0;
}
.about-container .about-advantages li p {
  font-size:15px;
  color: #5F6065;
}

.about-advantages-mark {
  display: inline-block;
  padding: 19px;
  background-color: #A5DF45;
  border-radius: 50%;
  position: relative;
}
#tick-mark {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 1px;
  left: 3px;
}
#tick-mark::before {
  position: absolute;
  left: 4px;
  top: 40%;
  height: 50%;
  width: 4px;
  background-color: #ffffff;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}

#tick-mark::after {
  position: absolute;
  left: 4px;
  bottom: 3px;
  height: 4px;
  width: 70%;
  background-color: #ffffff;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}
.sertificates-wrap .detail-user-el-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  list-style-type: none;
}
.sertificates-wrap .detail-user-el-list li {
  padding: 10px;
  display:flex;
  flex-direction: column;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2)
}
.sertificates-wrap .detail-user-el-list.sertificates li img {
  height:100px;
  margin-bottom:20px;
}
.sertificates-wrap .surveys-test p.surveys-status {
  font-size:14px;
  color:#5f6065;
}
.sertificates-wrap h4 {
  margin:20px 0;
  font-weight:400
}
.sertificates-wrap .surveys-test li {
  position:relative;
}
.sertificates-wrap .surveys-test img {
  position:absolute;
  right:5px;
  top:5px;
  width:20px;
  height:20px;
}
.breadcrumb {
  margin:40px 0;
}
.breadcrumb li {
  display:inline-block;
  padding-right:20px;
  font-size:13px;
  position:relative;
  color:#5F6065
}
.breadcrumb li:not(:last-child)::after {
  content: '>';
  font-size: 20px;
  position: absolute;
  right: 3px;
  top: 9px;
  line-height: 0;
}
.breadcrumb li:last-child {
  color:#000;
  font-weight:500;
}
.contact-info ul {
  list-style-type: none;
  margin:0;
  padding:0;
}
.contact-info li span {
  font-size:12px;
  color:#5f6065;
}
.contact-info li p.item-value-info {
  font-size:15px;
  font-weight:bold;
}
.contact-info li p img {
  width:30px;
  display:inline-block;
  margin-right:3px;
}
.contact-info li p img.telegram_icon {
  width:27px;
}
@media screen and (max-width: 1439px) {
  .container {
    padding: 0px 42px;
  }

  .navbar__list {
    gap: 44px;
  }

  .navbar__item-link {
    font-size: 14px;
  }

  .logo {
    width: 130px;
    height: 30px;
  }

  .social-block__item-link svg {
    width: 30px;
    height: 30px;
  }

  .header-user {
    gap: 18px;
  }

  .header-user__login-link {
    font-size: 14px;
  }

  .header-user__callback-btn {
    padding: 12px 34px;
    border-radius: 10px;
    font-size: 14px;
  }

  .main-page .preview__wrap {
    padding: 20px 0px 20px;
  }

  .main-page .preview-desc {
    gap: 40px;
  }

  .main-page .preview-desc__title {
    max-width: 580px;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1.2px;
  }

  .main-page .preview-desc__text {
    font-size: 18px;
    line-height: 25px;
    max-width: 340px;
  }

  .main-page .preview-desc__link {
    padding: 13px;
    gap: 8px;
    font-size: 14px;
    line-height: 24px;
  }

  .main-page .preview-desc__link-icon {
    width: 20px;
    height: 20px;
  }

  .main-page .preview__img {
    width: 444px;
    height: 380px;
  }

  .main-page .advantages-title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
    margin-bottom: 30px;
  }

  .main-page .advantages-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-page .advantages-card {
    height: 200px;
  }

  .main-page .working-set__wrap {
    padding: 100px 0px;
  }

  .main-page .working-set__title {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .main-page .working-set__card-icon {
    width: 30px;
    height: 30px;
  }

  .main-page .working-set__card-title {
    font-size: 24px;
    line-height: normal;
  }

  .main-page .working-set__stack {
    gap: 10px;
  }

  .main-page .working-set__price {
    font-size: 24px;
    line-height: normal;
  }

  .main-page .working-set__link svg {
    width: 50px;
    height: 50px;
  }

  .main-page .experience__content {
    padding: 80px 50px;
  }

  .main-page .experience__title {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .main-page .experience-list {
    gap: 45px;
  }

  .main-page .experience-list__item {
    gap: 6px;
  }

  .main-page .experience-list__item-num {
    font-size: 50px;
    line-height: 60px;
  }

  .main-page .experience-list__item-desc {
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0.5px;
  }

  .main-page .process__wrap {
    padding: 100px 0px;
  }

  .main-page .process__title {
    margin-bottom: 36px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .main-page .process-list__item {
    height: 264px;
    gap: 47px;
    padding: 35px 30px;
  }

  .main-page .process-list__item-num {
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 28px;
  }

  .main-page .process-list__item-title {
    font-size: 20px;
    line-height: normal;
  }

  .main-page .process-list__item-text {
    font-size: 16px;
    line-height: 24px;
  }

  .partners {
    padding: 65px 0px;
  }

  .partners__title {
    margin-bottom: 36px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .main-page .cooperation__wrap {
    padding: 100px 0px 150px;
  }

  .main-page .cooperation__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .developers-page .developers-top {
    padding-top: 60px;
  }

  .developers-page .developers-title {
    max-width: 561px;
    margin: 0 auto 16px;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -1.2px;
  }

  .developers-page .developers-desc {
    font-size: 18px;
    line-height: 23px;
  }

  .developers-page .search-block__wrap {
    margin-bottom: 40px;
  }

  .developers-page .developers-card {
    padding: 12px 12px 14px;
  }

  .developers-page .developers-card__img {
    height: 224px;
  }

  .developers-page .developers-card__head {
    margin-bottom: 14px;
  }

  .developers-page .developers-card__name {
    font-size: 18px;
    line-height: 25px;
  }

  .developers-page .developers-card__link {
    font-size: 14px;
    line-height: 24px;
  }

  .profile .preview__wrap {
    gap: 0px;
    padding-bottom: 50px;
  }

  .profile .preview-info__img {
    height: 206px;
  }

  .profile .preview-info__title {
    max-width: 340px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .profile .preview-info__skills-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
  }

  .profile .preview-price__value {
    font-size: 20px;
  }

  .profile .about__wrap {
    margin: 40px 0px;
    padding: 50px;
  }

  .profile .about-desc {
    padding-bottom: 30px;
  }

  .profile .about-desc__title {
    font-size: 24px;
    line-height: 29px;
  }

  .profile .about-skills {
    padding-top: 30px;
  }

  .profile .about-languages {
    padding-top: 30px;
  }

  .profile .about-languages__title {
    font-size: 18px;
    line-height: 24px;
  }

  .profile .projects__wrap {
    margin-bottom: 40px;
    padding: 50px;
  }

  .profile .projects-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile .achievements__wrap {
    padding: 50px;
    margin-bottom: 40px;
  }

  .profile .achievements__title {
    font-size: 24px;
    line-height: 29px;
  }

  .profile .achievements-certificates {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .profile .achievements-tests__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile .cooperation__wrap {
    padding: 100px 0px 150px;
  }

  .profile .cooperation__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .outstaffing .preview__wrap {
    padding: 15px 0px 100px;
  }

  .outstaffing .preview-desc {
    gap: 40px;
  }

  .outstaffing .preview-desc__title {
    max-width: 580px;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1.2px;
  }

  .outstaffing .preview-desc__text {
    font-size: 18px;
    line-height: 25px;
    max-width: 361px;
  }

  .outstaffing .preview-desc__link {
    padding: 13px;
    gap: 8px;
    font-size: 14px;
    line-height: 24px;
  }

  .outstaffing .preview-desc__link-icon {
    width: 20px;
    height: 20px;
  }

  .outstaffing .preview__img {
    width: 343px;
  }

  .outstaffing .advantages-title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
    margin-bottom: 30px;
  }

  .outstaffing .advantages-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .outstaffing .advantages-card {
    height: 200px;
  }

  .outstaffing .description__wrap {
    gap: 20px;
    padding: 90px 0px;
  }

  .outstaffing .description-content {
    gap: 40px;
  }

  .outstaffing .description-content__title {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .outstaffing .description-content__paragraph-wrap {
    gap: 12px;
  }

  .outstaffing .description-content__paragraph {
    font-size: 14px;
    line-height: normal;
  }

  .outstaffing .description-content__block-title {
    font-size: 24px;
    line-height: 29px;
  }

  .outstaffing .description-content__item {
    font-size: 14px;
    line-height: 18px;
  }

  .outstaffing .description-content__quote-wrap {
    margin: 20px 0px 20px 27px;
  }

  .outstaffing .description-content__quote {
    padding: 20px 0px 20px 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .outstaffing .cooperation__wrap {
    padding: 100px 0px 150px;
  }

  .outstaffing .cooperation__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.96px;
  }

  .callback-form {
    width: 460px;
  }
}

@media screen and (max-width: 1023px) {
  .sertificates-wrap .detail-user-el-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-container .about-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  .container {
    padding: 0px 34px;
  }

  .navbar__list {
    gap: 40px;
  }

  .navbar__item-link {
    font-size: 12px;
    line-height: 14px;
  }

  .copyright {
    font-size: 12px;
    line-height: 17px;
  }

  .header .navbar {
    display: none;
  }

  .header-user {
    gap: 40px;
  }

  .header-user__login-link {
    display: none;
  }

  .header-user__callback-btn {
    padding: 10px 21px;
    font-size: 13px;
  }

  .header-menu {
    display: block;
  }

  .main-page .preview__wrap {
    padding: 30px 0px 45px;
  }

  .main-page .preview-desc__title {
    max-width: 361px;
    font-size: 28px;
    line-height: 33px;
    letter-spacing: -0.84px;
  }

  .main-page .preview__img {
    width: 338px;
    height: 290px;
  }

  .main-page .advantages__wrap {
    padding: 78px 0px;
  }

  .main-page .advantages-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
    margin-bottom: 26px;
  }

  .main-page .advantages-card {
    height: 266px;
  }

  .main-page .advantages-card__icon {
    width: 40px;
    height: 40px;
  }

  .main-page .working-set__wrap {
    padding: 70px 0px;
  }

  .main-page .working-set__title {
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .main-page .working-set__card {
    padding: 30px;
  }

  .main-page .working-set__card-header {
    margin-bottom: 18px;
  }

  .main-page .working-set__card-icon {
    width: 26px;
    height: 26px;
  }

  .main-page .working-set__card-title {
    font-size: 20px;
  }

  .main-page .working-set__stack-item {
    padding: 10px 19px;
  }

  .main-page .working-set__stack-link {
    font-size: 12px;
    line-height: 14px;
  }

  .main-page .working-set__price {
    font-size: 20px;
  }

  .main-page .experience__wrap {
    padding: 70px 0px;
  }

  .main-page .experience__content {
    padding: 55px 37px 90px;
  }

  .main-page .experience__title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .main-page .experience-list {
    gap: 16px;
  }

  .main-page .experience-list__item {
    gap: 2px;
  }

  .main-page .experience-list__item-num {
    font-size: 40px;
    line-height: 50px;
  }

  .main-page .experience-list__item-desc {
    font-size: 12px;
    line-height: 14px;
  }

  .main-page .process__wrap {
    padding: 70px 0px;
  }

  .main-page .process__title {
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .main-page .process-list__item {
    height: 240px;
    gap: 60px;
    padding: 26px 26px 30px;
  }

  .main-page .process-list__item-num {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 22px;
  }

  .main-page .process-list__item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .main-page .process-list__item-text {
    font-size: 14px;
    line-height: 20px;
  }

  .partners__title {
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .main-page .cooperation__wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 70px 0px 150px;
  }

  .main-page .cooperation__title {
    max-width: 460px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .developers-page .developers-title {
    max-width: 402px;
    margin: 0 auto 20px;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.84px;
  }

  .developers-page .developers-desc {
    margin: 0 auto 50px;
    max-width: 378px;
    font-size: 16px;
    line-height: 20px;
  }

  .developers-page .search-block__wrap {
    margin-bottom: 60px;
    padding: 30px;
  }

  .developers-page .search-form__search-input {
    font-size: 14px;
    line-height: 20px;
  }

  .developers-page .search-form__search-icon {
    width: 20px;
    height: 20px;
  }

  .developers-page .developers-list__wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .developers-page .developers-card__img {
    height: 261px;
  }

  .developers-page .developers-card__head {
    margin-bottom: 16px;
  }

  .profile-page .breadcrumbs {
    padding: 15px 0px 30px;
  }

  .profile .preview__wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .profile .preview-info {
    grid-column: span 2;
    gap: 10px;
  }

  .profile .preview-info__img {
    height: 182px;
  }

  .profile .preview-info__desc {
    gap: 10px;
  }

  .profile .preview-info__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .profile .preview-info__skills-desc {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .profile .preview-price__wrap {
    padding: 14px;
  }

  .profile .preview-price__value {
    font-size: 18px;
  }

  .profile .preview-price__callback {
    font-size: 14px;
  }

  .profile .about__wrap {
    padding: 40px;
    margin: 30px 0;
  }

  .profile .about-desc {
    padding-bottom: 25px;
  }

  .profile .about-desc__title {
    font-size: 20px;
    line-height: normal;
  }

  .profile .about-skills {
    padding: 25px 0;
  }

  .profile .about-skills__title {
    font-size: 16px;
    line-height: 22px;
  }

  .profile .about-skills__list {
    gap: 8px;
  }

  .profile .about-skills__item {
    padding: 8px 16px;
    font-size: 14px;
  }

  .profile .about-languages {
    padding-top: 25px;
  }

  .profile .about-languages__lang {
    font-size: 14px;
    line-height: 20px;
  }

  .profile .projects__wrap {
    margin-bottom: 30px;
    padding: 40px;
  }

  .profile .projects__title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: normal;
  }

  .profile .projects-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile .projects-card__title {
    font-size: 18px;
    line-height: 24px;
  }

  .profile .achievements__wrap {
    padding: 40px;
    margin-bottom: 30px;
  }

  .profile .achievements-tests__level {
    font-size: 12px;
  }

  .profile .cooperation__wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 70px 0px 150px;
  }

  .profile .cooperation__title {
    max-width: 460px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .outstaffing .preview__wrap {
    padding: 15px 0px 80px;
  }

  .outstaffing .preview-desc__title {
    max-width: 361px;
    font-size: 28px;
    line-height: 33px;
    letter-spacing: -0.84px;
  }

  .outstaffing .preview__img {
    width: 284px;
  }

  .outstaffing .advantages__wrap {
    padding: 78px 0px;
  }

  .outstaffing .advantages-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
    margin-bottom: 26px;
  }

  .outstaffing .advantages-card {
    height: 266px;
  }

  .outstaffing .advantages-card__icon {
    width: 40px;
    height: 40px;
  }

  .outstaffing .description__wrap {
    flex-direction: column;
    padding: 66px 0px;
  }

  .outstaffing .description-aside {
    min-width: unset;
    margin-bottom: 40px;
  }

  .outstaffing .description-aside__box {
    gap: 20px;
    flex-direction: row;
  }

  .outstaffing .description-aside__callback-box {
    padding: 30px;
    max-width: 340px;
  }

  .outstaffing .description-aside__title {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 22px;
  }

  .outstaffing .description-aside__btn {
    font-size: 14px;
    line-height: normal;
  }

  .outstaffing .description-aside__list-title {
    margin-bottom: 14px;
  }

  .outstaffing .description-aside__list {
    gap: 10px;
  }

  .outstaffing .description-content {
    gap: 30px;
  }

  .outstaffing .description-content__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .outstaffing .description-content__block-title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: normal;
  }

  .outstaffing .description-content__table-title {
    font-size: 16px;
    line-height: 24px;
  }

  .outstaffing .description-content__table-item {
    font-size: 16px;
    line-height: 24px;
  }

  .outstaffing .description-content__list {
    padding: 16px 0px 16px 30px;
  }

  .outstaffing .description-content__item-icon {
    width: 20px;
    height: 20px;
  }

  .outstaffing .description-content__quote-wrap {
    margin: 16px 0px 16px 27px;
  }

  .outstaffing .cooperation__wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 70px 0px 150px;
  }

  .outstaffing .cooperation__title {
    max-width: 460px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.72px;
  }
}

@media screen and (max-width: 767px) {
  .sertificates-wrap .detail-user-el-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-container .about-advantages {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0px 20px;
  }

  .navbar {
    order: -1;
    width: 100%;
  }

  .navbar__list {
    gap: 0;
    justify-content: space-between;
  }

  .logo {
    width: 92px;
    height: 20px;
  }

  .header-user__callback-btn {
    display: none;
  }

  .header-menu__block {
    min-width: 320px;
  }

  .header-menu__block-list {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  }

  .header-menu .header-user__callback-btn {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
  }

  .footer__wrap {
    flex-wrap: wrap;
    gap: 25px;
  }

  .main-page .preview__wrap {
    padding: 10px 0px 25px;
    flex-direction: column-reverse;
  }

  .main-page .preview-desc {
    gap: 24px;
  }

  .main-page .preview-desc__title {
    max-width: 320px;
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.75px;
  }

  .main-page .preview-desc__link {
    padding: 10px;
    min-width: 100%;
  }

  .main-page .preview__img {
    width: 217px;
    height: 186px;
  }

  .main-page .advantages__wrap {
    padding: 56px 0px;
  }

  .main-page .advantages-title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
    margin-bottom: 18px;
  }

  .main-page .advantages-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-page .advantages-card {
    padding: 30px;
    height: 200px;
  }

  .main-page .advantages-card__icon {
    width: 30px;
    height: 30px;
  }

  .main-page .working-set__wrap {
    padding: 45px 0px;
  }

  .main-page .working-set__title {
    max-width: 230px;
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .main-page .working-set__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .main-page .working-set__card {
    padding: 26px;
    min-height: 350px;
  }

  .main-page .working-set__card-header {
    gap: 10px;
  }

  .main-page .working-set__card-icon {
    width: 24px;
    height: 24px;
  }

  .main-page .working-set__card-title {
    font-size: 18px;
  }

  .main-page .working-set__price {
    font-size: 18px;
  }

  .main-page .working-set__link svg {
    width: 40px;
    height: 40px;
  }

  .main-page .experience__wrap {
    padding: 50px 0px;
  }

  .main-page .experience__content {
    padding: 50px 30px;
  }

  .main-page .experience__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .main-page .experience-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 10px;
  }

  .main-page .experience-list__item-num {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.5px;
  }

  .main-page .experience-list__item-desc {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.5px;
  }

  .main-page .process__wrap {
    padding: 45px 0px;
  }

  .main-page .process__title {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .main-page .process-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-page .process-list__item {
    height: 245px;
    gap: 50px;
    padding: 26px 26px 30px;
  }

  .main-page .process-list__item-title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 23px;
  }

  .main-page .process-list__item-text {
    font-size: 14px;
    line-height: normal;
  }

  .partners {
    padding: 55px 0px;
  }

  .partners__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .main-page .cooperation__wrap {
    gap: 18px;
    padding: 45px 0px 80px;
  }

  .main-page .cooperation__title {
    max-width: 320px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .main-page .cooperation__text {
    font-size: 14px;
    line-height: 20px;
  }

  .developers-page .developers-top {
    padding-top: 40px;
  }

  .developers-page .developers-title {
    max-width: 320px;
    margin: 0 auto 16px;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.75px;
  }

  .developers-page .developers-desc {
    max-width: 320px;
    font-size: 14px;
    line-height: normal;
  }

  .developers-page .search-block__wrap {
    padding: 20px;
    margin-bottom: 40px;
  }

  .developers-page .search-form__search {
    gap: 16px;
  }

  .developers-page .search-form__search-icon {
    width: 18px;
    height: 18px;
  }

  .developers-page .search-form__filter-item {
    padding: 10px 16px;
  }

  .developers-page .search-form__filter-reset {
    padding: 10px 16px;
  }

  .developers-page .developers-list__wrap {
    grid-template-columns: 1fr;
  }

  .developers-page .developers-card__img {
    height: 238px;
  }

  .developers-page .developers-card__name {
    font-size: 16px;
    line-height: 23px;
  }

  .developers-page .developers-card__speciality-type {
    font-size: 14px;
  }

  .developers-page .developers-card__speciality-position {
    font-size: 12px;
    line-height: normal;
  }

  .profile-page .breadcrumbs {
    padding: 0px 0px 20px;
  }

  .profile .preview__wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .profile .preview-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .profile .preview-info__img {
    height: 232px;
  }

  .profile .preview-info__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .profile .preview-info__skills-desc {
    font-size: 12px;
    line-height: 16px;
  }

  .profile .preview-price__wrap {
    padding: 26px;
  }

  .profile .preview-price__item-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .profile .preview-price__item:first-child {
    margin-bottom: 0;
  }

  .profile .preview-price__value {
    font-size: 16px;
  }

  .profile .about__wrap {
    padding: 20px;
    margin: 25px 0;
  }

  .profile .about-desc {
    padding-bottom: 16px;
  }

  .profile .about-desc__title {
    font-size: 18px;
  }

  .profile .about-desc__text {
    font-size: 14px;
    line-height: normal;
  }

  .profile .about-skills {
    padding: 16px 0;
  }

  .profile .about-skills__title {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 16px;
  }

  .profile .about-skills__item {
    font-size: 12px;
    padding: 6px 14px;
  }

  .profile .about-languages {
    padding-top: 16px;
  }

  .profile .about-languages__title {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 22px;
  }

  .profile .about-languages__list {
    flex-direction: column;
    gap: 14px;
  }

  .profile .about-languages__item {
    gap: 8px;
  }

  .profile .about-languages__img {
    width: 22px;
    height: 14px;
  }

  .profile .about-languages__lang {
    font-size: 12px;
    line-height: 16px;
  }

  .profile .projects__wrap {
    margin-bottom: 25px;
    padding: 20px;
  }

  .profile .projects__title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .profile .projects-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .profile .projects-card__title {
    font-size: 16px;
    line-height: 23px;
  }

  .profile .projects-card__completed-num {
    font-size: 18px;
  }

  .profile .projects-show {
    width: 100%;
  }

  .profile .achievements__wrap {
    padding: 20px;
    margin-bottom: 25px;
  }

  .profile .achievements__title {
    font-size: 18px;
    line-height: 24px;
  }

  .profile .achievements-certificates {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .profile .achievements-tests__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .profile .cooperation__wrap {
    gap: 18px;
    padding: 45px 0px 80px;
  }

  .profile .cooperation__title {
    max-width: 320px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .profile .cooperation__text {
    font-size: 14px;
    line-height: 20px;
  }

  .outstaffing .preview__wrap {
    flex-direction: column-reverse;
    gap: 80px;
    padding: 15px 0px 45px;
  }

  .outstaffing .preview-desc {
    gap: 24px;
  }

  .outstaffing .preview-desc__title {
    max-width: 320px;
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.75px;
  }

  .outstaffing .preview-desc__text {
    max-width: 100%;
  }

  .outstaffing .preview-desc__link {
    padding: 10px;
    min-width: 100%;
  }

  .outstaffing .preview__img {
    width: 192px;
  }

  .outstaffing .advantages__wrap {
    padding: 56px 0px;
  }

  .outstaffing .advantages-title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
    margin-bottom: 18px;
  }

  .outstaffing .advantages-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outstaffing .advantages-card {
    padding: 30px;
    height: 200px;
  }

  .outstaffing .advantages-card__icon {
    width: 30px;
    height: 30px;
  }

  .outstaffing .description__wrap {
    padding: 35px 0px;
  }

  .outstaffing .description-aside__box {
    flex-direction: column;
    gap: 24px;
  }

  .outstaffing .description-aside__callback-box {
    padding: 20px;
  }

  .outstaffing .description-aside__title {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .outstaffing .description-aside__list-title {
    font-size: 14px;
    line-height: 25px;
  }

  .outstaffing .description-aside__item {
    font-size: 12px;
    line-height: 16px;
  }

  .outstaffing .description-content {
    gap: 20px;
  }

  .outstaffing .description-content__title {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .outstaffing .description-content__paragraph-wrap {
    gap: 8px;
  }

  .outstaffing .description-content__paragraph {
    font-size: 12px;
    line-height: 16px;
  }

  .outstaffing .description-content__block-title {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .outstaffing .description-content__table-title {
    font-size: 14px;
    line-height: normal;
  }

  .outstaffing .description-content__table-item {
    font-size: 12px;
    line-height: normal;
  }

  .outstaffing .description-content__list {
    padding: 14px 0px 14px 20px;
  }

  .outstaffing .description-content__item {
    font-size: 12px;
    line-height: 16px;
  }

  .outstaffing .description-content__item-icon {
    width: 18px;
    height: 18px;
  }

  .outstaffing .description-content__quote-wrap {
    margin: 14px 0px 14px 14px;
  }

  .outstaffing .description-content__quote {
    padding: 20px 0px 20px 20px;
    font-size: 12px;
    line-height: 16px;
  }

  .outstaffing .cooperation__wrap {
    gap: 18px;
    padding: 45px 0px 80px;
  }

  .outstaffing .cooperation__title {
    max-width: 320px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.6px;
  }

  .outstaffing .cooperation__text {
    font-size: 14px;
    line-height: 20px;
  }

  .callback-form {
    width: 320px;
    padding: 30px 20px 28px;
    gap: 30px;
  }

  .callback-form__inputs-block {
    gap: 16px;
  }

  .callback-form__item {
    padding: 14px 20px;
  }

  .callback-form__item-input {
    font-size: 12px;
  }

  .callback-form__item-textarea {
    font-size: 12px;
  }

  .callback-form__submit {
    width: 100%;
  }
}