* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'MullerUltraLight';
    src: local('MullerUltraLight'),
         url('/fonts/MullerUltraLight.woff2') format('woff2'),
         url('/fonts/MullerUltraLight.woff') format('woff'),
         url('/fonts/MullerUltraLight.ttf') format('ttf'),
         url('/fonts/MullerUltraLight.eot') format('eot');
}
@font-face {
    font-family: 'MullerRegular';
    src: local('MullerRegular'),
         url('/fonts/MullerRegular.woff2') format('woff2'),
         url('/fonts/MullerRegular.woff') format('woff'),
         url('/fonts/MullerRegular.ttf') format('ttf'),
         url('/fonts/MullerRegular.eot') format('eot');
}
@font-face {
    font-family: 'MullerMedium';
    src: local('MullerMedium'),
         url('/fonts/MullerMedium.woff2') format('woff2'),
         url('/fonts/MullerMedium.woff') format('woff'),
         url('/fonts/MullerMedium.ttf') format('ttf'),
         url('/fonts/MullerMedium.eot') format('eot');
}
body {
    margin: 0;
    padding: 0;
    font-family: 'MullerRegular',sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #303030;
    background: #f8f8f8;
}
.container {
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px
}
.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.space-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}
.align-start {
    align-items: start;
}
.bold {
    font-weight: 700;
}
a {
    text-decoration: none;
    outline: none;
}
.link {
    color: #7645E9;
    border-bottom: 1px solid #7645E9;
    transition: ease .3s;
}
.link:hover {
    color: #894AE0;
    border-bottom: 1px solid transparent;
}
p {
    margin: 0 0 5px;
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}
.header-mobile {
    display: none;
}
.header {
    background: hsla(0,0%,100%,.7);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.header-wrap {
    padding: 15px 0;
}
.header-logo img, .footer-logo img {
    width: 60px;
    margin-right: 15px;
}
.header-logo__link, .footer-logo__link {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 17px;
    color: #303030;
    max-width: 250px;
}
.header-logo__link:hover, .footer-logo__link:hover {
    color: #303030;
}
.header-add__vk, .footer-add__vk {
    display: inline-block;
    margin-right: 20px;
    height: 52px;
}
.btn-modal {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #7645E9;
    height: 50px;
    padding: 0 20px;
    border: 1px solid  #7645E9;
    border-radius: 25px;
    transition: ease .3s;
}
.header-nav {
    padding: 5px 0 15px;
}
.btn-modal:hover {
    background: #7645E9;
    color: #fff;
}
.header-nav__item {
    display: inline-block;
    padding: 0 0 5px;
    margin-right: 22px;
}
.header-nav__item:last-child {
    margin-right: 0;
}
.header-nav__link {
    font-size: 16px;
    line-height: 22px;
    color: #303030;
    transition: ease .3s;
}
.header-nav__link:hover {
    color: #894AE0;
}
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown__wrap {
    position: absolute;
    top: calc(100%);
    left: 0;
    display: block;
    width: 340px;
    padding: 20px;
    background: #fff;
    padding: 25px 20px;
    border-radius: 25px;
    -webkit-box-shadow: 0 4px 24px 0 rgba(0,0,0,.08);
    box-shadow: 0 4px 24px 0 rgba(0,0,0,.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}
.nav-dropdown:hover .nav-dropdown__wrap {
    opacity: 1;
    visibility: visible;
}
.nav-dropdown__item {
    margin-bottom: 10px;
}
.nav-dropdown__item:last-child {
    margin-bottom: 0;
}
.nav-dropdown__link {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: rgb(48, 48, 48);
    transition: ease .3s;
}
.nav-dropdown__link:hover {
    color: #894AE0;
}
.main {
    border-radius: 40px;
}
.company {
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}
.main, .company, .work {
    background: #f2efff;
}
.main-block {
    padding: 50px 0 0;
    margin: auto;
}
.main-content {
    max-width: 400px;
    padding-bottom: 50px;
}
.main-pict {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 530px;
}
.main-pict img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 400px;
}
h1 {
    margin: 0;
}
.main-title {
    margin-bottom: 20px;
}
.main-title h1 {
    font-family: 'MullerMedium',sans-serif;
    font-size: 50px;
    line-height: 54px;
    letter-spacing: 1px;
}
.btn {
    font-family: 'MullerMedium',sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7645E9;
    color: #fff;
    width: 230px;
    height: 55px;
    border-radius: 25px;
    transition: ease .3s;
}
.btn:hover, .btn:focus, .btn:active {
    background: #894AE0;
    color: #fff;
    outline: none;
    box-shadow: none;
}
.main-desc {
    margin-bottom: 25px;
}
.main-desc p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
}
.title-block {
    margin-bottom: 15px;
}
.title-block p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
}
h2 {
    font-family: 'MullerMedium',sans-serif;
    font-size: 40px;
    line-height: 48px;
    margin: 0;
    padding: 15px 0;
}
.section-block {
    padding: 70px 0;
}
.catalog-vacansiy {
    width: 48%;
    overflow: hidden;
    padding: 35px 20px;
    background: #fff;
    border-radius: 40px;
    margin-bottom: 35px;
}
.catalog-vacansiy:last-child {
    margin-bottom: 0;
}
.catalog-title, .detail-title, .others-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin: 0 0 5px;
    color: #303030;
    transition: ease .3s;
}
.catalog-title:hover {
    color: #894AE0;
}
.catalog-price {
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    margin-bottom: 2px;
}
.catalog-price span {
    display: block;
    font-family: 'MullerMedium',sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #894AE0;
}
.catalog-tags span {
    font-size: 15px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(90, 90, 163, .08);
    color: #909090;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 10px 12px 0 0;
}
.catalog-list {
    margin: 20px 0 0;
}
.catalog-list li {
    font-size: 15px;
    padding: 3px 0;
}
.catalog-more {
    font-size: 14px;
    line-height: 18px;
    color: #909090;
    border-bottom: 1px solid #909090;
    display: inline-block;
    cursor: pointer;
}
.catalog-more::before {
    content:'Показать еще';
}
.catalog-vacansiy .btn {
    font-size: 16px;
    max-width: 210px;
}
.catalog-action {
    margin-top: 20px;
}
.catalog-action .btn-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    min-width: 130px;
}
.catalog-others {
    margin-top: 50px;
    padding: 35px 20px;
    background: #fff;
    border-radius: 40px;
}
.others-title {
    margin-bottom: 12px;
}
.catalog-others__wrap .btn-modal {
    margin: 0 12px 12px 0;
    border: 1px dashed #7645E9;
}
.catalog-others__wrap .btn-modal:last-child {
    margin-bottom: 0;
}
.detail-block {
    max-width: 680px;
}
.detail-btn {
    position: sticky;
    top: 20px;
    width: 270px;
    height: 180px;
    padding: 35px 20px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(0,0,0, .06);
}
.detail-btn-big {
    height: 130px;
}
.detail-btn p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
}
.detail-item {
    padding: 35px 20px;
    margin: auto;
    background: #fff;
    border-radius: 40px;
    margin-bottom: 20px;
}
.detail-item:last-child {
    margin-bottom: 0;
}
.detail-title {
    margin-bottom: 12px;
}
.detail-item ul li {
    font-size: 16px;
    line-height: 22px;
    padding-left: 22px;
    margin-bottom: 5px;
    position: relative;
}
.detail-item ul li:last-child {
    margin-bottom: 0;
}
.detail-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6.5px;
    width: 8px;
    height: 8px;
    background: #7645E9;
    border-radius: 50%;
    opacity: .5;
}
.detail-text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}
.detail-text-bottom {
    margin-bottom: 8px;
}
.detail-action a {
    margin-right: 12px;
}
.detail-action a:last-child {
    margin-right: 0;
}
.detail-mo, .detail-lo {
    display: inline-block;
}
.work {
    border-radius: 40px;
}
.work-item {
    display: inline-block;
    width: 48%;
    min-height: 110px;
    padding: 35px 20px;
    margin: auto;
    background: #fff;
    border-radius: 40px;
    margin-bottom: 20px;
}
.work-item:nth-child(3) {
    width: 72%;
    margin-bottom: 0;
}
.work-item:nth-child(4) {
    width: 24%;
    margin-bottom: 0;
}
.work-step {
    font-weight: 700px;
    color: #888;
    margin-bottom: 10px;
}
.work-text p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}
.question {
    background: #fff;
}
.question h2, .centered {
    text-align: center;
}
.question-block {
    max-width: 800px;
    margin: auto;
}
details {
    display: block;
    background: #f8f8f8;
    padding: 0 20px 0;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
}
details:last-child {
    margin-bottom: 0;
}
  details p {
    margin-bottom: 0;
  }
  summary::-webkit-details-marker{display:none;}
  summary::-moz-list-bullet{list-style-type:none;}
  summary::marker{display:none;}
  summary {
     display: block;
     padding: 20px 0;
     font-family: 'MullerMedium';
     font-size: 20px;
     cursor: pointer;
     position: relative;
  }
  summary:before {
    top: 25px;
    right: 0;
    color: transparent;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTYuNTkgOC41OUwxMiAxMy4xNyA3LjQxIDguNTkgNiAxMGw2IDYgNi02eiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=") no-repeat 50% 50% / 1em 1em;
    width: 1em;
    height: 1em;
    content: "";
    position: absolute;
    transition: transform .5s;
  }
  details[open] > summary:before {
    transform: scale(1,-1);
  }
  summary ~ * {
     padding: 0 0 20px;
  }
  details[open] summary ~ *{
    animation: sweep .5s ease-in-out;
  }
  @keyframes sweep {
    0%    {opacity: 0;}
    100%  {opacity: 1;}
  }
  summary:focus {
    outline: 0;
}
.feedback, .catalog-one {
    border-bottom: 1px solid #e6e6e6;
}
.feedback-item {
    width: 48%;
    padding: 35px 20px;
    background: #fff;
    border-radius: 40px;
    margin-bottom: 35px;
}
.feedback-title {
    font-family: 'MullerMedium';
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}
.feedback-desc {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 20px;
}
.feedback-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
}
.feedback-info {
    font-family: 'MullerUltraLight';
    font-size: 14px;
    color: #909090;
    margin-bottom: 0;
}
.company-content {
    width: 48%;
}
.company-btn {
    padding-top: 5px;
}
.company-logos {
    width: 520px;
}
.company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 10px 20px 10px 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 4px 0 24px 0 rgba(0,0,0,.05), 0 4px 4px 0 rgba(0,0,0,.05);
}
.company-logo img {
    width: 70px;
    border-radius: 10px;
}
.company-logo:nth-child(5) {
    margin-left: 30px;
}
.company-logo:nth-child(9) {
    margin-left: 60px;
}
.footer {
    background: #fff;
    padding: 45px 0;
}
.footer-city {
    position: relative;
}
.footer-city__label {
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    color: #303030;
    cursor: pointer;
}
.footer-city__modal {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    width: 250px;
    background: #fff;
    padding: 25px 20px;
    border-radius: 25px;
    -webkit-box-shadow: 0 4px 24px 0 rgba(0,0,0,.08);
    box-shadow: 0 4px 24px 0 rgba(0,0,0,.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}
.footer-city__arrow, .dropdown-arrow {
    display: inline-block;
    margin-left: 4px;
}
.footer-city:hover .footer-city__modal {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.footer-city__modal-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
}
.footer-city__list {
    overflow-y: scroll;
    height: 170px;
}
.footer-city__list li {
    margin-bottom: 10px;
}
.footer-city__list li:last-child {
    margin-bottom: 0;
}
.footer-city__list li a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #303030;
    transition: ease .3s;
}
.footer-city__list li a:hover {
    color: #894AE0;
}
.city-mo::before, .detail-mo::before {
    content: 'МО, ';
}
.city-lo::before, .detail-lo::before {
    content: 'ЛО, ';
}
.footer-add__vk {
    display: inline-block;
}
.footer-vacancy {
    margin-top: 20px;
}
.footer-vacancy__item:first-child {
    width: 20%;
}
.footer-vacancy__item {
    width: 33%;
}
.footer-vacancy ul li {
    margin: 0 0 5px 0;
}
.footer-vacancy ul li a {
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: #303030;
    border-bottom: 1px solid #eee;
    transition: ease .3s;
}
.footer-vacancy ul li a:hover {
    color: #894AE0;
    border-bottom: 1px solid transparent;
}
.footer-vacancy__item {
    margin-right: 30px;
}
.footer-vacancy__item:last-child {
    margin-right: 0;
}
.footer-vacancy__item p {
    font-size: 16px;
    font-family: 'MullerUltraLight';
    line-height: 22px;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.footer-info {
    margin-top: 20px;
}
.footer-info__text {
    font-family: 'MullerUltraLight';
    font-size: 14px;
    line-height: 18px;
    color: #888;
    margin: 0;
    padding: 20px 0 0;
}
.footer-info__wrap a, .footer-info__wrap p {
    display: inline-block;
    font-family: 'MullerUltraLight';
    font-size: 16px;
    line-height: 18px;
    color: #888;
    margin: 0 20px 5px 0;
}
.footer-info__wrap a {
    border-bottom: 1px solid #eee;
    transition: ease .3s;
}
.footer-info__wrap a:hover {
    border-bottom: 1px solid transparent;
}
.footer-info__wrap a:hover {
    color: #303030;
}
.modal-backdrop {
    background: #7645E9;
}
.modal-content {
    border-radius: 25px;
    border: none;
}
.modal-header {
    padding: 25px 25px 0 20px;
    border-bottom: none;
    padding-bottom: 0;
}
.btn-close {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    background: none;
    border: 1px solid #e4ebf0;
    border-radius: 50%;
    transition: ease .3s;
}
.btn-close:hover, .btn-close:focus, .btn-close:active {
    box-shadow: none;
    outline: none;
    background: #f7f8fa;
}
.modal-title {
    font-family: 'MullerMedium',sans-serif;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
}
.modal-body {
    max-width: 360px;
    margin: auto;
    padding: 10px 0 30px;
}
.group-form {
    margin-bottom: 15px;
}
.form-input {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: #fff;
    width: 100%;
    height: 55px;
    border: 1px solid #c0c1c6;
    border-radius: 25px;
}
.form-input:focus {
    border: 1px solid #894AE0;
    color: #894AE0;
    outline: none;
}
.modal-body .btn {
    width: 100%;
}
.agreement p {
    font-size: 12px;
    color: #909090;
}
.text-title {
    font-size: 20px;
    line-height: 26px;
    margin: 25px 0 15px;
}
.texy-desc {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
}
.vidget {
    display: none;
    width: 100%;
    max-width: 700px;
    padding: 15px 15px;
    background: #ffffff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: 0 0 20px rgba(0,0,0, .06);
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: rgba(96,96,116, .05);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(96,96,116, .3);
    border-radius: 8px;
    transition: ease .3s;
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(96,96,116, .4);
}
@media (max-width: 1050px) {
    .company-logo:nth-child(9) {
        margin-left: 0;
    }
    .detail-block {
        max-width: 630px;
    }
}
@media (max-width: 992px) {
    .header-mobile {
        display: block;
    }
    #menuToggle {
      display: block;
      position: relative;
      top: 0;
      right: 0;
      z-index: 1;
      -webkit-user-select: none;
      user-select: none;
    }
    #menuToggle a {
      color: #303030;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    #menuToggle a:hover {
      color: #894AE0;
    }
    #menuToggle input {
      display: block;
      width: 40px;
      height: 32px;
      position: absolute;
      top: -7px;
      left: -5px;
      cursor: pointer;
      opacity: 0;
      z-index: 2;
      -webkit-touch-callout: none;
    }
    #menuToggle span {
      display: block;
      width: 33px;
      height: 4px;
      margin-bottom: 5px;
      position: relative;
      background: #888;
      border-radius: 3px;
      z-index: 1;
      transform-origin: 4px 0px;
      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  opacity 0.55s ease;
    }
    #menuToggle span:first-child {
      transform-origin: 0% 0%;
    }
    #menuToggle span:nth-last-child(2) {
      transform-origin: 0% 100%;
    }
    #menuToggle input:checked ~ span {
      opacity: 1;
      transform: rotate(45deg) translate(-2px, -1px);
      background: #7645E9;
    }
    #menuToggle input:checked ~ span:nth-last-child(3) {
      opacity: 0;
      transform: rotate(0deg) scale(0.2, 0.2);
    }
    #menuToggle input:checked ~ span:nth-last-child(2) {
      transform: rotate(-45deg) translate(0, -1px);
    }
    #menu {
      position: fixed;
      top: 0;
      width: 340px;
      height: 100vh;
      margin: 0 0 0 -20px;
      padding: 30px 20px;
      padding-top: 125px;
      background: #ffffff;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
      list-style-type: none;
      -webkit-font-smoothing: antialiased;
      transform-origin: 0% 0%;
      transform: translate(-100%, 0);
      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }
    #menu li {
      padding: 0;
      margin-bottom: 15px;
      font-size: 20px;
      line-height: 26px;
    }
    #menuToggle input:checked ~ ul {
      transform: none;
    }
    .header-nav__list {
        display: block;
    }
    .header-logo {
        margin-left: 40px;
    }
    .header-two .header-logo {
        margin-left: 0;
    }
    .header-nav {
        display: none;
    }
    .main-block {
        justify-content: center;
        flex-wrap: wrap;
        padding: 50px 0 0;
    }
    .main-title h1 {
        font-size: 40px;
        line-height: 48px;
    }
    .main-pict {
        max-width: 480px;
        width: 100%;
    }
    .section-block {
        padding: 50px 0;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
        padding: 10px 0;
    }
    .catalog-title, .detail-title, .others-title {
        font-size: 20px;
    }
    .catalog-price span {
        font-size: 18px;
    }
    .detail-block {
        max-width: 60%;
    }
    .detail-action a:last-child {
        margin-top: 12px;
    }
    .company-content {
        width: 52%;
    }
    .company-logos {
        width: 46%;
    }
    .company-logo {
        width: 70px;
        height: 70px;
        margin: 5px 10px 5px 0;
    }
    .company-logo img {
        width: 45px;
    }
}
@media (max-width: 768px) {
    .header-wrap {
        flex-wrap: wrap;
    }
    .header-logo {
        margin: 0 20px;
    }
    .header-logo img {
        width: 40px;
    }
    .header-logo__link {
        font-size: 12px;
        line-height: 15px;
        max-width: 220px;
    }
    .header-two .header-logo__link {
        max-width: 250px;
        min-width: 210px;
    }
    .header-add {
        width: 120px;
    }
    .header-add .btn-modal {
        display: none;
    }
    .header-add__vk {
        margin-right: 0;
        margin-left: auto;
    }
    .main-title h1, .text-content h1 {
        font-size: 32px;
        line-height: 36px;
    }
    h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .main-desc p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .catalog .title-block {
        text-align: center;
    }
    .catalog-vacansiy {
        max-width: 500px;
        width: 100%;
        padding: 25px 20px;
        margin: 0 auto 20px;
    }
    .catalog-others {
        max-width: 500px;
        width: auto;
        padding: 30px 20px;
        margin: 35px auto 0;
    }
    .detail-block {
        max-width: none;
    }
    .detail-btn {
        width: auto;
        height: auto;
        max-width: 500px;
        margin: 20px auto 0;
        padding: 30px 20px;
    }
    .detail-wrap {
        display: block;
        flex-wrap: wrap;
    }
    .detail-item {
        max-width: 500px;
        width: auto;
        padding: 25px 20px;
        margin: 0 auto 20px;
    }
    .work-item, .work-item:nth-child(3),.work-item:nth-child(4) {
        width: 100%;
        padding: 25px 20px;
    }
    .work-item:nth-child(3) {
        margin-bottom: 20px;
    }
    .feedback-item {
        padding: 25px 20px;
        width: 100%;
        margin-bottom: 20px;
    }
    .feedback-item:last-child {
        margin-bottom: 0;
    }
    .footer-vacancy {
        flex-wrap: wrap;
    }
    .footer-vacancy__item:first-child {
        width: 100%;
        margin-right: 0;
    }
    .footer-vacancy__item:first-child ul {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-vacancy__item:first-child ul li {
        margin-right: 20px;
    }
    .footer-vacancy__item:nth-child(2) {
        width: 100%;
        margin: 15px auto;
    }
    .footer-vacancy__item:last-child {
        width: 100%;

    }
    .company-block {
        flex-wrap: wrap;
    }
    .company-content {
        width: 100%;
    }
    .company-logos {
        max-width: 400px;
        width: 100%;
        margin: 30px auto 0;
    }
    .company-logo:nth-child(8) {
        margin-right: 0;
    }
}
@media (max-width: 563px) {
    .footer-city {
        order: 4;
        margin: 8px auto 0;
    }
    .header-add {
        width: 120px;
    }
}
@media (max-width: 576px) {
    .header .btn-modal, .main-desc p br {
        display: none;
    }
    .detail .btn-modal {
        display: flex;
        padding: 0 12px;
        height: 40px;
    }
    .catalog-others__wrap .btn-modal {
        display: flex;
        font-size: 14px;
        padding: 0 12px;
        height: 46px;
    }
    .catalog-others__wrap .btn-modal:last-child {
        margin-bottom: 0;
    }
    .detail-action a {
        margin-bottom: 12px;
    }
    .detail-action a:last-child {
        margin: 0;
    }
    .header-add__vk {
        margin-right: 0;
    }
    .main-pict {
        max-width: 350px;
    }
    .main-desc {
        margin-bottom: 20px;
    }
    .catalog-tags span {
        font-size: 14px;
        padding: 5px 9px;
    }
    .catalog-tags span:last-child {
        margin-right: 0;
    }
    .footer-city__modal {
        padding: 20px 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-city__modal-title {
        font-size: 16px;
        line-height: 22px;
    }
    .footer-block {
        flex-wrap: wrap;
    }
    .footer-logo__link {
        max-width: 280px;
    }
    .footer-logo {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    .footer-add {
        width: 100%;
        max-width: 280px;
        margin: 12px 0 0;
    }
    .vidget {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .vidget-fixed {
        position: fixed;
        bottom: 0;
        transition: all 0.5s ease;
    }
}
@media (max-width: 485px) {
    .catalog-action .btn-modal {
        margin-bottom: 15px;
    }
    .header-logo img {
        display: none;
    }
    .header-logo {
        margin: 0 30px;
        width: 180px;
    }
    .header-two .header-logo img {
        display: block;
    }
}
@media (max-width: 462px) {
    .header-add {
        width: auto;
    }
    .modal-body {
        max-width: 300px;
    }
}