:root {
  --white-color: #ffffff;
  --white-color-10: #FFFFFF1A;
  --white-color-20: #FFFFFF33;
  --dark-color: #232323;
  --dark-blue-color: #173a7c;
  --dark-blue-color-light: rgba(23, 58, 124, 0.05);
  --dark-blue-color-hover: #0f254f;
  --dark-blue-color-10:#173A7C1A;
  --blue-color: #14baeb;
  --red-color: #df1c41;
  --grey-color: #d9d9d9;
  --grey-color-70: rgba(35, 35, 35, 0.7);
  --grey-color-40: rgba(35, 35, 35, 0.4);
  --grey-color-20: rgba(35, 35, 35, 0.2);
  --background-grey: #F4F4F4;

}

@font-face {
  font-family: "HelveticaNeueCyr-Medium";
  src: url("/front/fonts/HelveticaNeueCyr-Medium.eot");
  src: url("/front/fonts/HelveticaNeueCyr-Medium.woff") format("woff"), url("/front/fonts/HelveticaNeueCyr-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "HelveticaNeueCyr-Roman";
  src: url("/front/fonts/HelveticaNeueCyr-Roman.eot");
  src: url("/front/fonts/HelveticaNeueCyr-Roman.woff") format("woff"), url("/front/fonts/HelveticaNeueCyr-Roman.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
button{
  margin: 0;
  padding: 0;
  border: none;
  background-color: inherit;
  outline: none;
}
body {
  font-family: "HelveticaNeueCyr-Medium";
  color: var(--dark-color);
  letter-spacing: -0.03em;
  background-color: var(--background-grey);
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
a{
  color: var(--dark-blue-color);
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  /*padding: 0 30px;*/
  padding: 0 360px;
}
.container-slider{
  padding-left: 360px;
}

.link {
  font-weight: 550;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
  color: var(--dark-color);
}

.title {
  text-shadow: 0 0 1px black;
  text-stroke: 1px #000000;
  font-size: 70px;
  line-height: 70px;
  font-weight: 550;
  color: var(--white-color);
}

.subtitle {
  font-size: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.button {
  font-size: 14px;
  line-height: 18px;
  border: none;
  color: var(--dark-blue-color);
  background-color: var(--white-color);
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 36px;
  cursor: pointer;
  transition: 0.25s;
  font-weight: 550;
  font-family: "HelveticaNeueCyr-Medium";
  min-width: 179px;
  justify-content: center;
  /*outline: 1px solid var(--white-color);*/
}
.button-secondary{
  background-color: transparent;
  outline: 1px solid var(--white-color);
  color: var(--white-color)
}
.button-tertiary{
  background-color: transparent;
  color: var(--dark-blue-color);
  outline: 1px solid var(--dark-blue-color);
}
.button-alt{
  background-color: var(--dark-blue-color);
  color: var(--white-color);
  /*outline: 1px solid var(--dark-blue-color-hover)*/
}
.button-alt:hover{
  background-color: var(--white-color);
  color: var(--dark-blue-color-hover);
}
.button:hover {
  color:var(--white-color);
  background-color: var(--dark-blue-color-hover);
}

.button:disabled {
  background-color: var(--grey-color);
  color: var(--grey-color-70);
}

.burger {
  background-color: transparent;
  border: none;
  width: 59px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  height: 58px;
}

.logo a {
  display: flex;
}

.logo img {
  width: 100%;
  height: 100%;
}

.cube {
  width: 20px;
  height: 20px;
  display: flex;
  background-color: var(--dark-blue-color);
  margin: 0 20px 0 0;
  flex-shrink: 0;
}
.white-cube{
  background-color: var(--white-color);
}


.small-cube {
  width: 10px;
  height: 10px;
  display: flex;
  /*background-color: var(--dark-blue-color);*/
  background-color: var(--white-color);
  margin: 0 10px 0 0;
  flex-shrink: 0;
}
.small-cube.small-cube-burger{
  background-color: var(--dark-blue-color)
}

.phone {
  min-width: max-content;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
}

.social {
  display: flex;
  align-items: center;
  gap: 3px;
}

.social__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.social__item_link {
  display: flex;
}
.text-field__button{
  min-width: 142px;
}
.custom-input {
  display: block;
  width: 345px;
  min-height: 58px;
  padding: 0 36px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid var(--grey-color-40);
  font-size: 14px;
  line-height: 18px;
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
}

.custom-input:focus {
  border: 1px solid var(--grey-color-40);
  outline: 0;
}

.custom-input::placeholder {
  color: var(--grey-color-40);
  font-size: 14px;
  line-height: 18px;
}

.text-field {
  width: 100%;
  display: flex;
  gap: 20px;
}

.text-field__icon {
  position: relative;
  width: 100%;
}

.text-field__icon::before {
  content: "";
  color: #bdbdbd;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.text-field__icon .text-field__input {
  padding-left: 44px;
  width: 100%;
}

.text-field__icon_search::before {
  width: 20px;
  height: 20px;
  background-image: url("/front/img/lupa.svg");
  background-repeat: no-repeat;
  background-position: center;
}

/*MEDIA*/

.visible-on-desktop {
  display: flex;
}

.visible-on-tablet {
  display: none;
}

.visible-on-mobile {
  display: none;
}

/*HEADER*/

.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: absolute;
  color: var(--white-color);
  /*overflow: hidden;*/
  overflow-x: clip;
  z-index: 3;
}
.header.current{
  position: unset;
  color:var(--dark-color) ;
}
.header.current .header__list_item{
  color: var(--dark-color);
  border-left: 1px solid var(--dark-blue-color-10)
}
.header.current .small-cube{
  background-color: var(--dark-blue-color);
}
.header.current .header__list_wrap{
  border-top: 1px solid var(--dark-blue-color-10);
  border-right: 1px solid var(--dark-blue-color-10);
}
.header.current .header__wrapper{
  border-bottom: 1px solid var(--dark-blue-color-10);
  border-left: 1px solid var(--dark-blue-color-10);
  border-right: 1px solid var(--dark-blue-color-10);
}
.header.current .header__cities_item{
  border-right: 1px solid var(--dark-blue-color-10);
}
.header.current .header__contacts_item{
  border-left: 1px solid var(--dark-blue-color-10);
}
.header.current .header__actions{
  border-left: 1px solid var(--dark-blue-color-10);
}
.header.current .button{
  background-color: var(--dark-blue-color);
  color: var(--white-color)
}
.header.current .button:hover{
  background-color: var(--white-color);
  color: var(--dark-blue-color-hover);
  border: 1px solid var(--dark-blue-color-hover);
}


.header__wrapper {
  width: 100%;
  display: grid;
  margin: 0 360px;
  font-size: 14px;
  grid-template-columns: 500px 199px 500px;
  grid-template-areas:
    "header-left  header-logo header-right"
    "header-nav  header-nav  header-nav";
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-color-10);
  border-left: 1px solid var(--white-color-10);
  border-right: 1px solid var(--white-color-10);
}

.header__search-block {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /*padding-right: 360px;*/
  /*width: 100%;*/
  padding: 30px;
  width: 1250px;
  margin: 0 0 10px;
  background-color: var(--white-color);

  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  position: absolute;
  color: var(--dark-color);
}
.header__search-block{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__search-block.is-active {
  display: flex;
  flex-direction: row;
  opacity: 1;
  visibility: visible;
}

.header__left {
  display: flex;
  align-items: center;
  grid-area: header-left;
}

.header__right {
  align-items: center;
  grid-area: header-right;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 58px;
  height: 58px;
}

.header__cities {
  display: flex;
  align-items: center;
  width: 100%;
}

.header__cities_item {
  position: relative;
  padding: 0 20px 0 20px;
  border-right: 1px solid var(--white-color-10);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: fit-content;
}

.header__wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header__logo {
  position: relative;
  top: 60%;
  grid-area: header-logo;
  justify-content: center;
}

/*.header__logo a {*/
/*  border-left: 1px solid var(--white-color-10);*/
/*  border-right: 1px solid var(--white-color-10);*/
/*}*/

.header__contacts {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__contacts_item {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--white-color-10);
  border-right: 1px solid var(--white-color-10);
  height: 100%;
}

.header__contacts_item:last-child {
  border-right: none;
}

.header__nav {
  display: flex;
  align-items: center;
  width: 100%;
  grid-area: header-nav;
}

.header__list {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header__list_wrap {
  display: flex;
  border-top: 1px solid var(--white-color-10);
  height: 100%;
}

.header__list_item {
  max-height: 58px;
  padding: 20px 20px;
  border-left: 1px solid var(--white-color-10);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /*color: var(--dark-color);*/
  color: var(--white-color);
  cursor: pointer;
}
.header__list_item.active{
  color: var(--blue-color)!important;
}

.header__list_wrap {
  border-right: 1px solid var(--white-color-10);
}

.header__list_wrap:last-child {
  border-right: none;
}


.header__actions {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--white-color-10);
}

.header__button {
  padding: 0 33px;
  width: 100%;
  color:var(--dark-blue-color);
  background-color: var(--white-color);
}
.often-searched{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px
}
.often-searched a:visited,
.often-searched a{
  text-decoration: none;
  color: var(--dark-color);
}
.often-searched h3{

  font-weight: 550;
  font-size: 14px;
  line-height: 130%;
}
.often-searched li{
  font-family: HelveticaNeueCyr-Roman, sans-serif;
  font-size: 14px;
  line-height: 130%;

}
.often-searched ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/*MOBILE MENU*/

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 100;
}

.mobile-menu__content {
  width: 100%;
  padding: 68px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: auto;
  height: 100%;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.mobile-menu__list_item {
  color: var(--dark-color);
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-color-20);
}
.mobile-menu__mobile-and-social{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu__mobile-and-social a:first-child{
  text-decoration: none;
  color: var(--dark-color);
}


.mobile-menu__cities {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.mobile-menu__cities_item {
  display: flex;
  align-items: center;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 40px;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

/*FOOTER*/

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--dark-color);
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 360px 20px;
}

.footer__link {
  color: var(--white-color);
  font-size: 14px;
  line-height: 18px;
}

.hidden {
  display: none;
}

/*WIDGETS*/

.numbered-block {
  width: 100%;
  display: flex;
  margin: 60px 0;
}

.numbered-block__list {
  width: 100%;
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
}

.numbered-block__list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.numbered-block__list_item-title {
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
}

.numbered-block__list_item-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  font-family: "HelveticaNeueCyr-Roman";
}
.numbered-block__list_item-wrapper{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.number {
  position: relative;
  top: 2px;
}
.mlrd::before {
  content: "млрд";
  position: relative;
  top: -3px;
  margin-left: 6px;
}

.info-and-text {
  width: 100%;
  margin: 90px 0;
}
.cases{
  width: 100%;
  margin: 90px 0;
}
.cases-title__wrap{
  width: 100%;
  display: flex;
  align-items: flex-start;
  max-width: 1531px;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 60px;
}
.info-and-text__wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  max-width: 1531px;
  gap: 60px;
  justify-content: space-between;
}

.info-and-text__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 600px;
}

.info-and-text__text {
  font-size: 18px;
  line-height: 24px;
  font-family: "HelveticaNeueCyr-Roman";
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-cards {
  width: 100%;
  margin: 150px 0 181px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.article-cards__usf {
  margin-bottom: 150px;
}

.article-cards__wrap {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.article-cards__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  height: 581px;
  border: 1px solid var(--grey-color-20);
  background-color: var(--white-color);
}
.article-cards__usf-news-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--grey-color-20);
}

.article-cards__page-block{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-cards__next-page-icon{
  cursor: pointer;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  align-self: flex-end;
}

.article-cards__prev-page-icon{
  cursor: pointer;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  align-self: flex-end;
}
.article-cards__page-block p{
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.article-cards__list_item, .article-cards__usf-news-list_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.article-cards__list_item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.article-cards__list_item-date {
  font-family: HelveticaNeueCyr-Roman, sans-serif;
  color: var(--grey-color-70);
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 8px;
  display: flex;
}

.article-cards__list_item-image {
  /*max-height: 300px;*/
  display: flex;
  width: 100%;
}

.article-cards__list_item-image img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}

.article-cards__list_item-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--dark-color);
  cursor: pointer;
}
.article-cards__list_item-title{
  max-width: 439px;
  font-size: 22px;
}
 /* MAIN PAGE */
.offer {
  width: 100%;
  margin: 0 0 150px;
}

.offer__content {
  /*position: relative;*/
  width: 100%;
  height: 548px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/front/img/webp/backgroundMainSlideNew.webp');
  background-size: cover;
  background-position: 40% center;
  background-repeat: no-repeat;
  flex-direction: column;
  gap: 34px;
}
.offer__title{
  color: var(--white-color);
  font-size: 70px;
  font-weight: 550;
  letter-spacing: -0.03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  line-height: 100%;

}
.offer__title-block{
  max-width: 1200px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
.offer__text-block {
  position: absolute;
  /*width: 100%;*/
  gap:20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 20px;
  padding-top:20px;
  bottom: 30px;
  /*top: 50%;*/
  left: 50%;
  text-align: center;
  transform: translateX(-50%)
  /*transform: translate(-50%, -50%);*/
}
.offer__text-block p{
  font-family: HelveticaNeueCyr-Roman, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}
.offer__slider .slick-track{
  height: 200px;
}
.offer__slider .slick-dots li.slick-active button:before{
  color: #14BAEB;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDIxIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3QgeD0iMC41IiB3aWR0aD0iMjAiIGhlaWdodD0iMiIgZmlsbD0iIzE0QkFFQiIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.slick-dots li{
  margin: 0 2px !important;
}

.slick-dots li button:before{
  content: '' !important;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDIwIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIiIGZpbGw9IiNEOUQ5RDkiLz48L3N2Zz4=");
  background-size: 20px 2px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.95 !important;
}
.offer__text-wrapper{
  max-width: 800px;
  margin: 0 auto;
}
.offer__text{
  color: var(--white-color);
  text-align: center;
  font-family: HelveticaNeueCyr-Roman, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  max-height: 46px;
}
.offer__slider {
  margin-top: 120px;
  position: relative;
  max-width: 1200px;
}
.offer__call-practice-wrapper{
  display: flex;
  gap: 20px;
  justify-content: center;
}
.main-call-button{
  width: 200px;
}

.offer__main-slider img {
  width: 100%;
  height: 766px;
  object-fit: cover;
}

.offer__thumbnail-slider {
  position: absolute !important;
  bottom: 153px;
  right: 30px;
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  display: flex;
  gap: 10px;
}

.offer__thumbnail-slider .slick-track{
  display: grid;
  transform:none !important;
  gap:20px;
  justify-content: end;
}
.offer__thumbnail-slider .slick-slide {
  /*opacity: 0.4;*/
  position: relative;
  /*background: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.76%, rgba(0, 0, 0, 0.5) 68.43%),*/
  /*linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)) !important;*/
  /*transition: opacity 0.3s;*/
  cursor: pointer;
  width: 100px !important;
}
.offer__thumbnail-slider .slick-slide:not(.slick-current)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.76%, rgba(0, 0, 0, 0.5) 68.43%),
  linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  transition: background 0.3s;
}

.offer__thumbnail-slider .slick-slide img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: opacity 0.3s;
}

.offer__thumbnail-slider .slick-slide.slick-current {
  opacity: 1;
}
.primary-consultation-section{
  width: 100%;
  margin: 0 0 150px;
}
.primary-consultation__block{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.primary-consultation__title-block{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.primary-consultation__title{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.primary-consultation__block h1{
  font-size: 50px;
  font-weight: 550;
  line-height: 50px;
  letter-spacing: -0.03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.primary-consultation__block h2{
  font-family: "HelveticaNeueCyr-Roman";
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.primary-consultation__block input{
  font-family: "HelveticaNeueCyr-Roman";
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

  width: 466px;
  height: 50px;
}
.primary-consultation__block p{
  font-family: HelveticaNeueCyr-Roman, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(35, 35, 35, 0.7);
  margin-top: 10px;
  width: 100%;
}
.primary-consultation__block p a{
  font-family: HelveticaNeueCyr-Medium,sans-serif;
  color: rgba(35, 35, 35, 1);
}
.primary-consultation__block select{
  font-family: HelveticaNeueCyr-Roman, sans-serif;
  cursor: pointer;
  height: 50px;
  width: 466px;
}
.primary-consultation__block select:disabled{
  color: rgba(35, 35, 35, 0.2);
}
.primary-consultation__form{
  display: grid;
  margin-top: 10px;
  /*grid-template-columns: 1fr 1fr;*/
}
.primary-consultation__form-fields{
  grid-gap: 20px;
  display: grid;
  /*grid-auto-flow: column;*/
}
.primary-consultation__get-consultation-button--block p{
  text-align: left;
  color: var(--grey-color-40)
}
.primary-consultation__get-consultation-button--block button{
  font-family: "HelveticaNeueCyr-Medium";
  cursor: pointer;
  color: var(--white-color);
  background-color: #173A7C;
  padding: 20px 73.5px;
  font-size: 16px;
  margin-top: 60px
}
.primary-consultation__get-consultation-button--block a{
  color: #232323;
}
.primary-consultation__form-item-column{
  /*display: flex;*/
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*flex-direction: column;*/
  gap: 20px;
}
select#catalog-buildings-search,
select#register-buildings-search,
select.primary-consultation__form-item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66699 1.33463L5.00033 4.66797L8.33366 1.33463' stroke='%23232323' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
  padding-right: 40px;
}

.primary-consultation__form-item {
  padding: 17px 16px;
  width: 100%;
  box-sizing: border-box;
}
.primary-consultation__feedback-block{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* NEWS PAGE */
.news{
  width: 100%;
  margin: 0 0 150px;
}
.news-list-content{
  margin-top: 20px;
}
.news__title{
  color: var(--white-color);
  font-size: 70px;
  font-weight: 550;
  line-height: 70px;
  letter-spacing: -0.03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.mobile__article-cards__page-block{
  display: none;
}

.card:hover {
  z-index: 1;
}

.article-cards__useful-prev-page-icon{
  cursor: pointer;
}
.article-cards__useful-next-page-icon{
  cursor: pointer;
}


/*.card:hover{*/
/*  transform: scale(1.5)*/
/*}*/
.contacts__title-and-addresses{
  flex-direction: column;
  display: flex;
}
.contacts__addresses-block{
  width: 100%;
  display: flex;
  /*gap: 58px;*/
  gap: 20px;
}
.contacts__cities{
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--white-color-20);
}
.contacts__information-block{
  width: 100%;
  display: flex;
  gap: 58px;
  border-top: 1px solid var(--grey-color-20);
}
.contacts__address-item{
  display: flex;
  align-items: center;
}
.contacts__information-item{

}
.contacts__block{
  display: grid;
  padding: 0;
  margin-top: 20px;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.contacts{
  /*margin-bottom: 20px;*/
  /*padding-left: 30px;*/
  padding: 0 360px 20px;
  color:var(--white-color);
  background-color: var(--dark-blue-color);
  display: flex;
  justify-content: center;
}
.contacts__address-container{
  margin-top: 30px;
  /*padding-left: 20px;*/
  font-size: 14px;
}
.address-title{
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF66;
}
body::selection{
  background: var(--dark-blue-color) ;
  color: var(--white-color);
}

.contacts__address-name{
  display: flex;
  /*margin-top: 50px;*/
  /*margin-bottom:32px;*/
  /*margin: 20px 0;*/
}
.contacts__address-title-name{
  display: flex;
  margin: 20px 0;
}
.contacts__splitted-information{
  /*margin-right: 20px;*/
  border-top: 1px solid var(--grey-color-20);
  display: grid;
  /*grid-auto-flow: column;*/
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.contacts__social-media-logo{
  width: 20px;
  height: 20px;
}
.contacts__social-media a {
  text-decoration: none;
}
.contacts__title{
  padding-top:20px;
  /*border-top: 1px solid var(--grey-color-20);*/
}
.contacts__item{
  display: grid;
  grid-gap: 20px;
}
.contacts__item-block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white-color-10);
  min-width: 285px;
  height: 108px;
  /*margin-bottom: 32px;*/
}
.city{
  white-space: nowrap;
}
.city::after {
  content: '\A'; /* Юникод-символ переноса строки */
  white-space: pre;
}
.cases__main-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cases__splitted-block {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr;
  /*height: 100vh;*/
  padding: 60px;
  gap: 30px;
  transition: transform 1s, opacity 1s;
  background-color: var(--white-color);
  cursor: pointer;
}
.cases__sticky {
  position: sticky;
  top: 0;
}
#case1 {
  position: sticky;
  top: 0;
  z-index: 1;
}
#case2 {
  position: sticky;
  z-index: 2;
}
#case3 {
  position: sticky;
  z-index: 3;
}

.cases__list-information{
  gap: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.cases__document{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /*box-shadow: 6px 6px 6px 6px #173A7C0D;*/
}
.cases__document canvas{
  max-width: 328px;
  height: 440px
}
.cases__document img{
  width: 100%;
  height: auto;
}
.cases__document-mobile {
  display: none;
}
.cases__case-details{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cases__case-title{
  font-family: HelveticaNeueCyr-Medium, sans-serif;
  font-size: 28px;
  font-weight: 550;
  line-height: 36.4px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}
.cases__case-number{
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#232323B2;
}
.cases__case-link{
  font-size: 20px;
  font-weight: 550;
  line-height: 20px;
  letter-spacing: -0.03em;
  text-align: left;
  color:#173A7C;
  text-decoration: underline;
}
.cases__case-description{
  gap: 10px;
  flex-direction: column;
  display: flex;
  /*min-height: 438px;*/
}
.cases__list-information{
  gap: 48px;
}
.cases__case-description p{
  font-family: "HelveticaNeueCyr-Roman";
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.cases__amount-claims{
  font-size: 22px;
  font-weight: 550;
  line-height: 28.6px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}
.cases__amount-claims-num{
  font-family: HelveticaNeueCyr-Medium, sans-serif;
  font-size: 60px;
  font-weight: 550;
  line-height: 60px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#173A7C;
}
.cases__amount-claims-pre {
  font-weight: 550;
  font-size: 32px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;
  color: #173A7C;
}
.cases__amount-claims-str{
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 550;
  font-size: 32px;
  line-height: 35.2px;
  letter-spacing: -0.03em;
  color: #173A7C;
}
.cases__result{
  font-family: HelveticaNeueCyr-Medium, sans-serif;
  font-size: 32px;
  font-weight: 550;
  line-height: 35.2px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}
.cases__amount-claims-num span{
  font-family: HelveticaNeueCyr-Roman, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--dark-color);
}
.cases__go-to-review{
  cursor: pointer;
  padding: 0;
  border: 1px solid #173A7C;
  width: 200px;

}
.cases__go-to-review a{
  text-decoration: none;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  height: 100%
}
.telegram-subscribe-block a,
.cases__show-more a:visited,
.cases__go-to-review a:visited{
  color: inherit;
}
.cases__amount-block{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cases__look-all-cases{
  cursor: pointer;
  display: flex;
  margin-top:30px;
  justify-content: center;
  font-size: 20px;
  font-weight: 550;
  line-height: 20px;
  letter-spacing: -0.03em;
  text-align: left;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.cases__show-more{
  display: flex;
  height: 230px;
  justify-content: center;
  position: absolute;
  bottom: 0;
  color: var(--dark-blue-color);
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.cases__show-more a{
  font-family: HelveticaNeueCyr-Medium, sans-serif;
  font-weight: 550;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.telegram-content {
  width: 100%;
  background-image: url("/front/img/tg-block-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white-color);
  display: flex;
  justify-content: space-between;
}
.telegram-content.tg-contacts{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-image: url("/front/img/services-bg-tg.png");
}
.telegram-content.tg-news{
  background-image: url("/front/img/news-bg-tg.png");
}
.telegram-content.tg-practice{
  background-image: url("/front/img/practice-bg-tg.png");
}
.telegram-content.tg-services{
  position: relative;
  background-image: url("/front/img/services-bg-tg.png");
}
.telegram-content.tg-about-us{
  position: relative;
  background-image: url("/front/img/about-us-bg-tg.png");
}
.telegram-content.tg-services img{
  position: absolute;
  right: 135px;
  top: 24px
}
.telegram-content.tg-about-us img{
  position: absolute;
  right: 37px;
  top: 18px
}

.telegram-content.tg-practice .telegram-subscribe-block p{
  max-width: 535px;
}
.telegram-content-title-wrapper{
  display: flex;
  gap: 20px;
  align-items: center;
}
.telegram-content-title-wrapper h1{
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 130%;
}
.telegram-info.tg-contacts,
.telegram-info.tg-about-us,
.telegram-info.tg-services,
.telegram-info.tg-practice,
.telegram-info.tg-news{
  gap: 22px;
}

.telegram-info p{
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 110.00000000000001%;
}
.telegram-info{
  display: flex;
  flex-direction: column;
  gap: 65px;
  padding: 30px;
}
.telegram-subscribe-block{
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 780px;
}
.telegram-subscribe-block p{
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
}
.telegram-subscribe-block button{
  width: 300px;
  font-size: 14px;
  height: 58px;
  line-height: 130%;
}
.telegram-subscribe-block a{
  color: #14BAEB;
  text-decoration: none;
}
.tg-picture-mobile{
  display: none;
}
.tg-picture-wrapper{
  display: flex;
  align-items: end;
}
.tg-picture-block{
  position: relative;
}
.tg-picture-block p{
  position: absolute;
  text-align: center;
  white-space: nowrap;
  bottom: 18px;
  font-size: 22px;
  left: 50%;
  transform: translate(-50%, -50%)
}
.useful-material__block{
  max-width: 400px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.useful-material__content{
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px;
}
.useful-material__slider{
  padding: 0;
  margin: 0;
}
.useful-material__slider .slick-track{
  display: flex;
  overflow: hidden;
  gap: 20px;
  height: auto;
  align-items: stretch;
  padding: 20px 0;
}

.useful-material__image {
  max-height: 300px;
}
/* ACCORDION WIDGET */
#services__accordion {
  font-family: "HelveticaNeueCyr-Medium";
  display: flex;
  color:#232323B2;
  flex-direction: column;
}

#services__accordion h3 {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr 1fr 0.15fr;
  width: 100%;
  font-size: 22px;
  font-weight: 550;
  line-height: 28.6px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  cursor: pointer;
}
#services__accordion h3 svg {
  transition: transform 0.3s ease-in;
}
.ui-state-active svg{
  transform: rotate(180deg);
}
.ui-accordion-header:hover{
  color: #232323;
  transition: opacity 0.3s ease-in
}
#services__accordion .ui-accordion-header-collapsed:hover{
  opacity: 1;
}
.ui-accordion .ui-accordion-header {
  padding: 20px 20px 20px 20px !important;
  margin: 0 !important;
  border-right: 0;
  border-left: 0;

  border-top: 1px solid #23232333;
}
.ui-accordion .ui-accordion-content{
  padding-top: 0 !important;
}
.ui-accordion .ui-accordion-header.ui-accordion-header-active {
  border-bottom: 0;
  border-top: 1px solid var(--dark-color);
}
.ui-widget-content {
  border-bottom:  1px solid var(--dark-color) !important;
}
.ui-widget-content{
  border-right: 0 !important;
  border-left: 0 !important;
}
#services__accordion h3 span {
  margin-right: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
#services__accordion h3 svg {
  margin-left: auto;
}
#services__accordion .ui-accordion-content{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr 1fr 0.15fr;
  background-color: var(--white-color);
  padding: 20px;
}
#services__accordion .ui-state-active{
  opacity: 1;
  background-color: var(--white-color);
  color: #232323;
}
#services__accordion .ui-accordion-header-collapsed{
  opacity: 0.7;
}



.wrap-conveyor {
  display: flex;
  overflow-x: hidden;
  width: 100%;
  border-top: 1px solid #23232333;
  border-bottom: 1px solid #23232333;
}

.conveyor-subtitle{
  padding: 20px 30px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 70px;
  font-weight: 550;
  line-height: 70px;
  justify-content: center;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#173A7C;
  animation: moveLeft 10s linear infinite
}
@keyframes moveLeft {
  0% {
    transform: translateX(0); /* Начинаем с правой стороны */
  }
  100% {
    transform: translateX(-100%); /* Двигаемся до левой стороны */
  }
}
.telegram-block,
.order-service{
  width: 100%;
  margin: 0 0 150px
}

#breadcrumbs li {
  display: inline-block;
  font-size: 18px;
  padding: 8px;
}
#breadcrumbs{
  display: flex;
  align-items: center;
  padding-top:48px;
}
#breadcrumbs li{
  display: flex;
  align-items: center;
}

#breadcrumbs li svg {
  /*margin-top:5px;*/
  margin-right: 20px;
}
#sitemaps{
  display: none;
}
#breadcrumbs a {
  text-decoration: none;
  color: #9da0a7;
  transition: opacity 0.4s ease;
}

#breadcrumbs a:hover {
  opacity: 0.6
}

.fund-projects{
  width: 100%;
  margin: 150px 0;
}
.fund-projects-title__wrap{
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 60px;
}
.fund-projects__all-projects{
  color: #232323;
  font-size: 20px;
  font-weight: 550;
  line-height: 20px;
  letter-spacing: -0.03em;
  text-align: left;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.fund-projects__main-content{
  display: flex;
  flex-direction: column;
}
.fund-projects__project-item{
  padding: 20px;
  display: grid;
  border-bottom: 1px solid var(--grey-color-20);
  grid-template-columns: repeat(2, 1fr);
  box-sizing: border-box;
  opacity: 0.7;
  transition: border-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  cursor: pointer;
}
.fund-projects__project-item:first-child{
  border-top: 1px solid var(--grey-color-20);
}
.fund-projects__project-item:last-child{
  border-bottom: 0;
}
.fund-projects__company-title{
  font-size: 22px;
  font-weight: 550;
}
.fund-projects__company-title h3{
  line-height: 28.6px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.fund-projects__company-address h3{
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.03em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.fund-projects__company-address{
  font-family: "HelveticaNeueCyr-Roman";
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fund-projects__project-item:hover{
  opacity: 1;
  color: #232323;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  transform: translateY(-2px);
}

.cursor-image-main-page {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
  z-index: 99;
  width: 250px;
  height: 250px;
}
.custom-select{
  cursor: pointer;
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid var(--grey-color-40);
  font-size: 14px;
  line-height: 18px;
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
}
#register-buildings-search {
  color: rgba(0, 0, 0, 1);
}

#register-buildings-search[data-selected="all"] {
  color: rgba(0, 0, 0, 0.5);
}
.mobile-button-container{
  display: none;
}
#order-call-modal{
  border:none;
  padding: 60px;
  overflow: hidden;
}
.primary-consultation__title-dialog{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.primary-consultation-dialog-call{
  display: grid;
  grid-template-columns: 1fr 0fr;
}
.primary-consultation-dialog-call h1{
  font-size: 32px;
  font-weight: 550;
  line-height: 35.2px;
  letter-spacing: -0.03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}
.primary-consultation-dialog-call button{
  cursor: pointer;
}
.ask-question-block{
  display: flex;
  position: fixed;
  right: 60px;
  bottom: 20px;
  min-height: 118px;
  height: 118px;
}
.ask-question-block button{
  min-height: 38px;
  height: 38px;
  width: 200px;
  background-color: #14BAEB;
  color: var(--white-color);
}
.ask-question-block svg{
  align-self: flex-end;
}
.cards__show-more{
  display: none;
}
.header__search-block.is-active{
  flex-direction: column;
}
.breadcrumbs-current-review {
  display: none;
}
.fund-projects .mobile-hidden {
  float: right;
}
.contacts__address-item__a {
  color:var(--white-color);;
  text-decoration: none;
}


.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content{
  padding: 0 !important;
  min-height: 100% !important;
}