.headermenu {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 22;
    width: 100%;
    width: 1680px;
    margin: 0 auto;
    background: #fff;
    height: 74px;
    padding: 0 20px;
    border-radius: 0 0 26px 26px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .headermenu._shadow {
    -webkit-box-shadow: 0 4px 21.4px 0 rgba(186, 197, 211, 0.27);
    box-shadow: 0 4px 21.4px 0 rgba(186, 197, 211, 0.27);
  }
  
  .headermenu-panel-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    background: rgba(48, 47, 47, 0.32);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .headermenu-panel-bg.show {
    opacity: 1;
  }
  
  .headermenu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 100%;
  }
  
  .headermenu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    position: relative;
    z-index: 6;
    width: 40px;
    height: 40px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    display: none;
  }
  
  .headermenu-burger span {
    display: block;
    width: 80%;
    height: 2px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #05203e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 10px;
  }
  
  .headermenu-burger span:nth-last-child(1) {
    margin-bottom: 0;
  }
  
  .headermenu-burger span:nth-child(1) {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  
  .headermenu-burger span:nth-child(2) {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  
  .headermenu-burger span:nth-child(3) {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  
  .active.headermenu-burger span {
    position: absolute;
  }
  
  .active.headermenu-burger span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(0px, 0px);
    -ms-transform: rotate(45deg) translate(0px, 0px);
    transform: rotate(45deg) translate(0px, 0px);
  }
  
  .active.headermenu-burger span:nth-child(2) {
    width: 0;
    opacity: 0;
  }
  
  .active.headermenu-burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(13px, -13px);
    -ms-transform: rotate(-45deg) translate(13px, -13px);
    transform: rotate(-45deg) translate(13px, -13px);
  }
  
  .headermenu-logo {
    position: relative;
    width: 164px;
    margin-right: 20px;
    z-index: 5;
  }
  
  .headermenu-logo a {
    display: block;
    opacity: 1;
  }
  
  .headermenu-logo a:hover {
    opacity: 0.7;
  }
  
  .headermenu-logo img {
  }
  
  .headermenu-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  
  .headermenu-nav__item {
    font-size: 18px;
    line-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
  }
  
  .headermenu-nav__item._border-left {
    border-left: 2px solid #f0f4f7;
    padding-left: 20px;
  }
  
  .headermenu-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }
  
  .headermenu-nav__item svg {
    width: 12px;
    height: auto;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
  .headermenu-nav__item.active svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .headermenu-nav__item svg path {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .headermenu-nav__item.active svg path {
    stroke: #ff8e24;
  }
  
  .headermenu-nav__item span {
    display: block;
  }
  
  .headermenu-nav__item.active span, .headermenu-nav__item:hover a {
    color: #ff8e24;
  }
  
  .headermenu-socs {
    margin-right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .headermenu-socs__item {
    display: inline-block;
    opacity: 1;
    cursor: pointer;
  }
  
  .headermenu-socs__item svg {
    width: 22px;
    height: auto;
  }
  
  .headermenu-tel {
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .headermenu-tel__link {
    display: block;
    opacity: 1;
  }
  
  .headermenu-tel__link:hover {
    opacity: 0.7;
  }
  
  .headermenu-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
  }
  
  .headermenu-buttons .btn {
    padding: 8px 20px;
    border-radius: 16px;
  }
  
  .headermenu-buttons .btn svg {
    position: relative;
    width: 32px;
    height: auto;
    margin-right: 4px;
    z-index: 2;
  }
  
  .headermenu-buttons .btn span {
    font-size: 18px;
  }
  
  .headermenu-buttons .btn .btn-arrow {
    width: 12px;
    height: auto;
    margin-right: 0;
    margin-left: 4px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
  .headermenu-buttons .btn.active .btn-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .btn.btn-grey.active {
    background: #dee7f0;
  }
  
  .headermenu-userpanel {
    position: absolute;
    right: 0;
    top: 72px;
    width: 278px;
    background: #fff;
    padding: 14px 25px 5px;
    line-height: 100%;
    border-radius: 0 0 22px 22px;
    -webkit-box-shadow: 4px 6px 37.1px rgba(186, 197, 211, 0.45);
    box-shadow: 4px 6px 37.1px rgba(186, 197, 211, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1;
  }
  
  .headermenu-userpanel.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  
  .headermenu-userpanel:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 100px;
    background: #fff;
  }
  
  .headermenu-userpanel__head {
    margin-bottom: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .headermenu-userpanel__pic {
    width: 56px;
    height: 56px;
    overflow: hidden;
  }
  
  .headermenu-userpanel__pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .headermenu-userpanel__info {
  }
  
  .headermenu-userpanel__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .headermenu-userpanel__adress {
    color: #05203e47;
    font-size: 16px;
  }
  
  .headermenu-userpanel__linkslist {
  }
  
  .headermenu-userpanel__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 15px;
    border-top: 2px solid #f0f4f7;
    cursor: pointer;
  }
  
  .headermenu-userpanel__link:hover {
    opacity: 0.45;
  }
  
  .headermenu-userpanel__link._logout {
    opacity: 0.45;
  }
  
  .headermenu-userpanel__link._logout:hover {
    opacity: 1;
  }
  
  .headermenu-mobile {
    display: none;
  }
  
  .headermenu-panel {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: 74px;
    left: 0;
    background: #f4f9ff;
    z-index: 2;
    border-radius: 0 0 24px 24px;
    padding: 20px;
    display: none;
  }
  
  .headermenu-panel:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1240px;
    height: 230px;
    margin: auto;
    z-index: -1;
  }
  
  .headermenu-back {
    display: none;
  }
  
  .headermenu-panellist {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  .headermenu-panel-item {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1;
    display: none;
  }
  
  .headermenu-panel-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  .headermenu-panel-item__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 8px;
  }
  
  .headermenu-panel-item__column {
    width: 364px;
  }
  
  .headermenu-panel-item__container {
    overflow: hidden;
    position: relative;
    padding: 20px;
  }
  
  .headermenu-panel-item__container._white-bg {
    background: #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 21.4px 0 rgba(186, 197, 211, 0.27);
    box-shadow: 0 4px 21.4px 0 rgba(186, 197, 211, 0.27);
    /* height: 100%; */
  }
  
  .headermenu-panel-item__title {
    font-size: 20px;
    letter-spacing: -0.4px;
    font-weight: 600;
    margin-bottom: 8px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .headermenu-panel-item__linkslist {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  
  .headermenu-panel-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .headermenu-panel-item__link-pic {
    width: 36px;
    height: 36px;
  }
  
  .headermenu-panel-item__link-pic img {
    width: 100%;
    height: 100%;
  }
  
  .headermenu-panel-item__link-info {
    width: calc(100% - 36px);
    padding-left: 12px;
  }
  
  .headermenu-panel-item__link-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    margin-bottom: 2px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .headermenu-panel-item__link._blue:hover .headermenu-panel-item__link-name {
    color: #0e61d9;
  }
  
  .headermenu-panel-item__link._yellow:hover .headermenu-panel-item__link-name {
    color: #ffbb0d;
  }
  
  .headermenu-panel-item__link._orange:hover .headermenu-panel-item__link-name {
    color: #ff8e24;
  }
  
  .headermenu-panel-item__link._green:hover .headermenu-panel-item__link-name {
    color: #3fc325;
  }
  
  .headermenu-panel-item__link._black:hover .headermenu-panel-item__link-name {
    color: #5c6978;
  }
  
  .headermenu-panel-item__link-dscrp {
    font-size: 14px;
    letter-spacing: -0.28px;
    opacity: 0.7;
  }
  
  .headermenu-panel-item__title-line {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  .headermenu-panel-item__title-line span {
    display: block;
    font-size: 16px;
    letter-spacing: -0.16px;
    color: rgba(5, 32, 62, 0.42);
  }
  
  .headermenu-panel-item__title-line svg {
    position: absolute;
    right: -21px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  
  .headermenu-panel-item__footer {
    overflow: hidden;
    position: relative;
    margin-top: 24px;
    padding-left: 20px;
  }
  
  .headermenu-panel-item__footer .headermenu-panel-item__linkslist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
  
  .headermenu-panel-item__card-text {
    width: 194px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.7;
  }
  
  .headermenu-panel-item__card {
    display: block;
    position: relative;
    z-index: 1;
  }
  
  .headermenu-panel-item__card._heightmore {
    min-height: 244px;
    height: auto;
    margin-bottom: 46px;
  }
  
  .headermenu-panel:before {
    content: "";
    display: block;
    position: absolute;
    top: -40px;
    left: 0;
    width: 40px;
    height: 40px;
    background: #fff;
  }
  
  .headermenu-panel-item__card-ar {
    position: relative;
    width: 24px;
    height: 24px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .headermenu-panel-item__card-ar:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    background: #a0b2c138;
    transform: scale(1);
    z-index: -1;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .headermenu-panel-item__card:hover .headermenu-panel-item__card-ar:before {
    transform: scale(1.15);
  }
  
  .headermenu-panel-item__card:hover .headermenu-panel-item__title {
    color: #0e61d9;
  }
  
  .headermenu-panel-item__card-ar svg {
    width: 12px;
    height: auto;
  }
  
  .headermenu-panel-item__card-pic {
    position: absolute;
    bottom: -15px;
    right: 0;
    z-index: -1;
    width: 239px;
  }
  
  .headermenu-panel-item__card-pic img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  
  .headermenu-panel-item__column._ver-1 {
    width: 280px;
  }
  
  .headermenu-panel-item__classes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 8px;
    margin-top: 16px;
  }
  
  .headermenu-panel-item__classes-link {
    display: block;
    width: 75px;
    padding: 8px 0;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #dae6f6;
    background: #fff;
    font-weight: 600;
  }
  
  .headermenu-panel-item__classes-link:hover {
    -webkit-box-shadow: 0 2px 12.5px 0 rgba(145, 166, 181, 0.55);
    box-shadow: 0 2px 12.5px 0 rgba(145, 166, 181, 0.55);
  }
  
  .headermenu-panel-item__classes-link._half {
    width: 116px;
  }
  
  .headermenu-panel-item__column._ver-2 {
    width: 584px;
  }
  
  .headermenu-panel-item__container
    ~ .headermenu-panel-item__container._white-bg {
    margin-top: 8px;
  }
  
  .headermenu-panel-item__footer
    .headermenu-panel-item__title-line
    + .headermenu-panel-item__linkslist {
    margin-top: 16px;
  }
  
  .headermenu-panel-item__regularlinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin-top: 16px;
  }
  
  .headermenu-panel-item__regularlinks-col {
    width: calc(50% - 12px);
  }
  
  .headermenu-panel-item__regularlink {
    display: block;
    border-bottom: 2px solid #f1f6fa;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  
  .headermenu-panel-item__regularlink:nth-last-child(1) {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .headermenu-panel-item__regularlink-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4px;
  }
  
  .headermenu-panel-item__regularlink-title span {
    display: block;
    margin-right: 2px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .headermenu-panel-item__regularlink:hover
    .headermenu-panel-item__regularlink-title
    span {
    color: #0e61d9;
  }
  
  .headermenu-panel-item__regularlink-title svg {
    width: 12px;
    height: auto;
  }
  
  .headermenu-panel-item__regularlink-title svg path {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .headermenu-panel-item__regularlink:hover
    .headermenu-panel-item__regularlink-title
    svg
    path {
    stroke: #0e61d9;
  }
  
  .headermenu-panel-item__regularlink-dscrp {
    font-size: 14px;
    letter-spacing: -0.28px;
    opacity: 0.7;
  }
  
  .headermenu-panel-item__textlinks {
    margin-top: 16px;
  }
  
  .headermenu-panel-item__textlink {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    margin-bottom: 16px;
  }
  
  .headermenu-panel-item__textlink:hover {
    color: #0e61d9;
  }
  
  .headermenu-panel-item__textlink:nth-last-child(1) {
    margin-bottom: 0;
  }
  
  ._pic-centered .headermenu-panel-item__card-pic {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 149px;
  }
  
  .headermenu-panel-item__classes-link._thirth {
    width: 103px;
  }
  
  .headermenu-panel-item__link._bordered {
    border-radius: 8px;
    border: 1px solid #dae6f6;
    background: #fff;
    padding: 12px;
  }
  
  .headermenu-panel-item__classes + .headermenu-panel-item__linkslist {
    margin-top: 16px;
  }
  
  .headermenu-panel-item__subjectslist {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .headermenu-panel-item__subject {
    border-radius: 8px;
    border: 1px solid #dae6f6;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
  }
  
  .headermenu-panel-item__subject:hover {
    -webkit-box-shadow: 0 2px 12.5px 0 rgba(145, 166, 181, 0.55);
    box-shadow: 0 2px 12.5px 0 rgba(145, 166, 181, 0.55);
  }
  
  .headermenu-panel-item__subject img {
    width: 22px;
    height: 22px;
  }
  
  .headermenu-panel-item__subject span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    line-height: 150%;
  }
  
  .headermenu-panel-item__column._ver-3 {
    width: 474px;
  }
  
  .headermenu-panel-item__card-pic._bot {
    width: 145px;
    height: 138px;
    bottom: -22px;
    right: -12px;
  }

  .headermenu-panel-item__card-pic._bot img {
    height: 100%;
  }
  
  .headermenu-panel-item__title-line-wrap {
    overflow: hidden;
  }

  .headermenu-panel-item__container._height-max {
    height: 100%;
  }

  .headermenu-panel-item__column._ver-4 > .headermenu-panel-item__container:not(:nth-last-child(1)) {
    padding-bottom: 0;
  }
  
  .soon {
        display: inline-block;
        padding: 20px;
        background: #ccc;
        display: inline-flex;
        padding: 2px 6px 4px 6px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 5px;
        background: #E0EAF6;
        color: #9EB4D0;
        margin-left: 10px;
    }


  
  @media only screen and (max-width: 1700px) {
    .headermenu {
      width: 1324px;
      height: 64px;
    }
  
    .headermenu-logo {
      width: 118px;
      margin-right: 16px;
    }
  
    .headermenu-nav {
      gap: 12px;
    }
  
    .headermenu-nav__item {
      font-size: 15px;
      line-height: 32px;
    }
  
    .headermenu-nav__item._border-left {
      padding-left: 16px;
    }
  
    .headermenu-nav__item svg {
      width: 8px;
    }
  
    .headermenu-socs__item svg {
    }
  
    .headermenu-socs {
      margin-right: 12px;
    }
  
    .headermenu-tel {
      margin-right: 12px;
    }
  
    .headermenu-tel__link {
      font-size: 15px;
    }
  
    .headermenu-buttons .btn {
      padding: 8px 10px;
      border-radius: 12px;
    }
  
    .headermenu-buttons .btn svg {
      width: 26px;
    }
  
    .headermenu-buttons .btn span {
      font-size: 15px;
    }
  
    .headermenu-panel {
      top: 64px;
    }
  
    .headermenu-panel-item__title {
      font-size: 18px;
      letter-spacing: -0.36px;
    }
  
    .headermenu-panel-item__container {
      padding: 16px;
    }
  
    .headermenu-panel-item__linkslist {
      margin-top: 12px;
      gap: 12px;
    }
  
    .headermenu-panel-item__link-pic {
      width: 28px;
      height: 28px;
    }
  
    .headermenu-panel-item__link-info {
      width: calc(100% - 28px);
    }
  
    .headermenu-panel-item__link-name {
      font-size: 14px;
      letter-spacing: -0.28px;
    }
  
    .headermenu-panel-item__link-dscrp {
      font-size: 12px;
      letter-spacing: -0.24px;
    }
  
    .headermenu-panel-item__title-line span {
      font-size: 14px;
      letter-spacing: -0.14px;
    }
  
    .headermenu-panel-item__footer {
      margin-top: 16px;
      padding-left: 12px;
    }
  
    .headermenu-panel-item__card-text {
      width: 200px;
      margin-bottom: 14px;
    }
  
    .headermenu-panel-item__card-pic {
      width: 204px;
    }
  
    .headermenu-panel-item__card._heightmore {
      min-height: 218px;
    }
  
    .headermenu-panel-item__classes-link {
      font-size: 14px;
      width: 78px;
      padding: 4px 10px;
    }
  
    .headermenu-panel-item__classes-link._half {
      width: 120px;
    }
  
    .headermenu-panel-item__regularlinks {
      gap: 16px;
      margin-top: 12px;
    }
  
    .headermenu-panel-item__regularlink-title span {
      font-size: 14px;
      letter-spacing: -0.28px;
    }
  
    .headermenu-panel-item__regularlink-dscrp {
      font-size: 12px;
      letter-spacing: -0.24px;
    }
  
    .headermenu-panel-item__textlink {
      font-size: 14px;
      margin-bottom: 12px;
      letter-spacing: -0.28px;
    }
  
    .headermenu-panel-item__column._ver-2 {
      width: 528px;
    }
  
    .headermenu-panel-item__column._ver-4 {
      width: 230px;
    }
  
    ._pic-centered .headermenu-panel-item__card-pic {
      width: 111px;
    }
  
    .headermenu-panel-item__classes._four-cols {
      gap: 6px;
      margin-top: 12px;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
  
    ._four-cols .headermenu-panel-item__classes-link {
      width: -webkit-fit-content !important;
      width: -moz-fit-content !important;
      width: fit-content !important;
    }
  
    .headermenu-panel-item__classes + .headermenu-panel-item__linkslist {
      margin-top: 12px;
    }
  
    .headermenu-panel-item__column._ver-3 {
      width: 373px;
    }
  
    .headermenu-panel-item__subjectslist {
      margin-top: 12px;
      gap: 6px;
    }
  
    .headermenu-panel-item__subject {
      padding: 4px 10px;
      gap: 6px;
    }
  
    .headermenu-panel-item__subject img {
      width: 20px;
      height: 20px;
    }
  
    .headermenu-panel-item__subject span {
      font-size: 14px;
      line-height: 171.429%;
      letter-spacing: -0.28px;
    }
  }
  
  @media only screen and (max-width: 1439px) {
    .headermenu-panel-item__container {
    }
  
    .headermenu-panel-item__column {
      width: 330px;
    }
  
    .headermenu {
      width: 1232px;
      height: 60px;
    }
  
    .headermenu-nav {
      gap: 10px;
    }
  
    .headermenu-nav__item._border-left {
      padding-left: 10px;
    }
  
    .headermenu-userpanel {
      top: 60px;
    }
  
    .headermenu-panel {
      top: 59px;
    }
  
    .headermenu-socs {
      margin-right: 8px;
    }
  
    .headermenu-buttons .btn svg {
      margin-right: 4px;
    }
  }
  
  @media only screen and (max-width: 1279px) {
    .headermenu-logo {
      margin-right: 0;
      margin-left: 16px;
      padding-left: 16px;
      border-left: 2px solid #f0f4f7;
    }
  
    .headermenu-nav {
      display: none;
    }
  
    .headermenu {
      width: calc(100% - 24px);
    }
  
    .headermenu-burger {
      display: block;
      z-index: 2;
    }
  
    .headermenu-panel-item__main._tablet-column {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .headermenu-panel {
      width: 100%;
      top: 0;
      z-index: 9999;
    }
  
    .headermenu-panellist {
      width: calc(100% + 10px);
      margin-top: 20px;
      padding-right: 10px;
      overflow-y: auto;
    }
  
    .headermenu-panel-item__main {
      width: 100%;
    }
  
    .headermenu-panel-item {
      width: 100%;
      max-height: calc(100vh - 140px);
    }
  
    .headermenu-back {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      cursor: pointer;
      margin: -20px -20px 0 -20px;
      background: #fff;
      padding: 12px 20px;
      height: 60px;
      position: relative;
      z-index: 2;
    }
  
    .headermenu-back svg {
      width: 26px;
      height: auto;
    }
  
    .headermenu-back span {
      display: block;
      color: #a6b5c7;
      margin-left: 8px;
      font-size: 16px;
      letter-spacing: -0.32px;
      font-weight: 600;
    }
  
    .headermenu-panel-wrap {
      width: 100%;
    }

    .headermenu-panel-item__column._ver-4 > .headermenu-panel-item__container:not(:nth-last-child(1)) {
        padding-bottom: 16px;
    }
  
    .headermenu-panel-item__column._ver-1 .headermenu-panel-item__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
  
    .headermenu-panel-item__column._ver-1 {
      width: 100%;
    }
  
    .headermenu-panel-item__column._ver-1
      .headermenu-panel-item__card._heightmore {
      width: 344px;
      margin-bottom: 0;
      padding-right: 16px;
      min-height: 172px;
    }
  
    .headermenu-panel-item__column._ver-1 .headermenu-panel-item__classes {
      width: calc(100% - 344px);
      margin-top: 0;
      padding-left: 16px;
    }
  
    .headermenu-panel-item__classes-link {
      width: calc(100% / 3 - 6px);
      padding: 8px 12px;
    }
  
    .headermenu-panel-item__card-pic {
      width: 234px;
      margin-bottom: -20px;
      margin-right: 20px;
    }
  
    .headermenu-panel-item__classes-link._half {
        width: calc(50% - 4px) !important;
    }
  
    .headermenu-panel-item__card._heightmore .headermenu-panel-item__card-text {
      width: 178px;
    }
  
    .headermenu-panel-item__column._ver-2 {
    }
  
    .headermenu-panel-item__column._ver-4 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 16px;
    }
  
    .headermenu-panel-item__main .headermenu-panel-item__column {
      width: 100%;
    }
  
    .headermenu-panel-item__column._ver-4 .headermenu-panel-item__container {
      width: calc(50% - 12px);
    }
  
    .headermenu-panel-item__column._ver-4
      .headermenu-panel-item__container:not(:nth-child(1)) {
      padding-left: 0;
    }
  
    .headermenu-panel-item__column._tablet-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 8px;
    }
  
    .headermenu-panel-item__column._tablet-row .headermenu-panel-item__container {
      width: 100%;
      margin: 0;
    }
  
    .headermenu-panel-item__footer {
      margin-top: 16px;
    }
  
    .headermenu-mobile {
      display: block;
      position: fixed;
      top: 59px;
      background: #fff;
      padding: 20px;
      left: 0;
      right: 0;
      padding-top: 4px;
      border-radius: 0 0 16px 16px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
  
    .headermenu-mobile.show {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
    }
  
    .headermenu-mobile__itemslist {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      cursor: pointer;
      margin-bottom: 24px;
    }
  
    .headermenu-mobile__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 16px 0;
      border-bottom: 2px solid #f0f4f7;
      font-size: 18px;
      font-weight: 600;
    }
  
    .headermenu-mobile__buttons {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 8px;
    }
  
    .btn.headermenu-mobile-button {
      height: 54px;
    }
  
    .btn.headermenu-mobile-button._number {
      width: calc(100% - 62px);
    }
  
    .btn.headermenu-mobile-button._number svg {
      margin-right: 8px;
    }
  
    .btn.headermenu-mobile-button._soc {
      width: 54px;
      padding: 0;
    }
  
    .headermenu-panel-item__link._bordered {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  
    .headermenu-panel-bg {
      pointer-events: all;
    }
  
    .headermenu-burger:before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 34px;
      margin: auto;
      width: calc(100% - 24px);
      height: 30px;
      position: fixed;
      background: #fff;
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
    }
    .headermenu-burger.active:before {
      opacity: 1;
    }
  }
  
  @media only screen and (max-width: 1023px) {

    .headermenu-buttons .btn {
      width: 54px;
      height: 40px;
      padding: 0;
    }
  
    .headermenu-buttons .btn span {
      display: none;
    }
  
    .headermenu-buttons .btn .btn-arrow {
      display: none;
    }
  
    .headermenu-buttons .btn svg {
      margin: auto;
      width: 30px;
    }
  
    .headermenu-socs {
      display: none;
    }
  
    .headermenu-tel {
      display: none;
    }
  
    .headermenu-logo {
      width: 105px;
      border-left: 0;
      padding-left: 0;
      margin-left: 12px;
    }
  
    .headermenu {
      width: 100%;
      padding: 0 12px;
      border-radius: 0 0 16px 16px;
    }
  
    .headermenu-userpanel {
      width: 100%;
    }
  
    .headermenu-panel-item__main {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .headermenu-panel {
      padding-left: 12px;
      padding-right: 12px;
    }
  
    .headermenu-panel-item__column._ver-1 .headermenu-panel-item__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .headermenu-panel-item__column._ver-1
      .headermenu-panel-item__card._heightmore {
      min-height: initial;
      width: 100%;
      padding: 0;
    }
  
    .headermenu-panel-item__card-pic {
      margin-right: 0;
      margin-bottom: 0;
    }
  
    .headermenu-panel-item__column._ver-1 .headermenu-panel-item__classes {
      width: 100%;
      padding: 0;
      margin-top: 16px;
      gap: 8px;
    }
  
    .headermenu-panel-item__classes-link {
      width: calc(100% / 3 - 6px);
    }
  
    .headermenu-panel-item__classes-link._half,
    .headermenu-panel-item__classes-link._thirth:nth-last-child(1),
    .headermenu-panel-item__classes-link._thirth:nth-last-child(2) {
      width: calc(50% - 4px) !important;
    }
  
    .headermenu-panel-item__regularlinks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 0;
    }
  
    .headermenu-panel-item__regularlinks-col {
      width: 100%;
    }
  
    .headermenu-panel-item__regularlinks-col:not(:nth-last-child(1))
      .headermenu-panel-item__regularlink:nth-last-child(1) {
      border-bottom: 2px solid #f1f6fa;
      padding-bottom: 12px;
      margin-bottom: 12px;
    }
  
    .headermenu-panel-item__regularlinks-col:not(:nth-last-child(1))
      .headermenu-panel-item__textlink:nth-last-child(1) {
      margin-bottom: 12px;
    }
  
    .headermenu-panel-item__column._ver-4 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 0;
    }
  
    .headermenu-panel-item__column._ver-4 .headermenu-panel-item__container {
      width: 100%;
    }
  
    .headermenu-panel-item__footer .headermenu-panel-item__linkslist {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .headermenu-panel-item__footer
      .headermenu-panel-item__title-line
      + .headermenu-panel-item__linkslist {
      margin-top: 12px;
    }
  
    .headermenu-panel-item__column._ver-4
      .headermenu-panel-item__container:not(:nth-child(1)) {
      padding-left: 16px;
    }
  
    .headermenu-panel-item__linkslist {
      margin-top: 12px;
    }
  
    ._four-cols .headermenu-panel-item__classes-link {
      width: calc(100% / 3 - 6px) !important;
    }
  
    .headermenu-panel-item__classes-link._thirth:nth-last-child(1),
    .headermenu-panel-item__classes-link._thirth:nth-last-child(2) {
    }
  
    .headermenu-panel-item__link._bordered {
      width: 100%;
    }
  
    .headermenu-panel-item__column._tablet-row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .headermenu-panel-item__card .headermenu-panel-item__title {
      margin-bottom: 4px;
    }
  
    .headermenu-panel-item__card-text {
      font-size: 12px;
      margin-bottom: 16px;
    }
  
    .headermenu-panel-item__card-pic._bot {
      width: 126px;
      height: auto;
    }

    .headermenu-back {
        margin: -20px -12px 0 -12px;
    }

    .headermenu-panel-item__card._heightmore .headermenu-panel-item__card-pic {
        width: 204px;
        height: 128px;
    }

    .headermenu-panel-item__card._heightmore .headermenu-panel-item__card-text {
        width: 148px;
    }

    .headermenu-panel-item__regularlink {
        border-bottom: 1px solid #f1f6fa;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .headermenu-panellist {
        margin-top: 12px;
    }

    .headermenu-panel-item__link-name {
        margin-bottom: 0;
    }

    .headermenu-panel-item__container:not(._white-bg) {
        padding: 12px 16px;
    }

    .headermenu-panel-item__footer {
        margin-top: 12px;
    }

    .headermenu-burger:before {
        width: 100%;
    }

  }
  