@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  border: none;
  outline: none;
}

.container {
  padding: 15px;
}

svg,
img {
  display: block;
}

.wrapper {
  padding: 0 45px;
}

.header {
  position: fixed;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  background: transparent;
  padding: 38px 0;
  border-radius: 10px;
  z-index: 10;
  transition: .3s;
}

.header.scroll {
  top: 20px;
  box-shadow: 0 4px 10px 0 rgba(39, 67, 102, 0.1);
  background: #fff;
  padding: 20px 0;
  border-radius: 10px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-logo {
  max-width: 182px;
}

.header-logo img {
  width: 100%;
}

.header-phone {
  font-weight: 500;
  font-size: 16px;
  color: #333;
  transition: .3s;
}

.header-phone span {
  font-weight: 700;
  color: #335682;
}

.header-link:hover path {
  fill: #335682 !important;
  fill-opacity: 1;
}

.header-burger {
  cursor: pointer;
}

.header-burger:hover path {
  stroke: #3065a7;
}

.banner {
  position: relative;
  height: 659px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding-bottom: 54px;
}

.banner .wrapper {
  height: 100%;
}

.banner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.banner-title {
  position: relative;
  max-width: 1078px;
  font-weight: 600;
  font-size: 66px;
  line-height: 102%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #172e47;
}

.banner-animate {
  display: inline-block;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 760px; /* Фиксированная ширина контейнера */
  height: 60px; /* Высота для текста */

}

.banner-animate_le {
  position: absolute;
  width: 100%;
  white-space: nowrap;
  color: #335682;
  text-align: left;
  opacity: 0;
  transform: translate(100%);
}

.banner-animate_le.active {
  opacity: 1;
  transform: translate(0);
  transition: 1s;
}

.banner-animate_le.prev {
  transform: translate(-100%);
  opacity: 0;
  transition: 1s;
}

.banner_label__el {
  position: relative;
  padding: 11px 38px 11px 23px;
  border-radius: 49px;
  backdrop-filter: blur(50.29999923706055px);
  background: #6d90bc;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

.banner_label__el span {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.banner_label__el:before {
  position: absolute;
  content: "";
  width: 4.66px;
  height: 4.66px;
  border-radius: 100%;
  right: 23px;
  top: 24px;
  background: #fff;
}

.banner_label__el--top {
  position: absolute;
  top: 206px;
  right: 40%;
  backdrop-filter: blur(50.29999923706055px);
  background: #416faa;
}

.banner_label__el--bottom {
  position: absolute;
  bottom: 132px;
  right: 165px;
  backdrop-filter: blur(39.20000076293945px);
  background: #416faa;
}

.banner-btn {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.blue-btn {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  background: #335682;
  border-radius: 6px;
  padding: 22px 40px;
  transition: .3s;
  border: 2px solid #335682;
}

.blue-btn:hover {
  background: #3065a7;
  border: 2px solid #3065a7;
}

.white-btn {
  border-radius: 6px;
  padding: 22px 40px;
  background: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #335682;
  transition: .3s;
  border: 2px solid #fff;
}

.white-btn:hover {
  border: 2px solid #3065a7;
  background: #d6e6f2;
}

.title {
  max-width: 860px;
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #333;
}

.document-block .title {
  max-width: 700px;
}

.title span {
  color: #335682;
}

.subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #333;
  margin-top: 5px;
}

.subtitle span {
  color: #335682;
}

.text {
  font-weight: 400;
  font-size: 13px;
  color: #434343;
}

.header-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 57px;
  margin-bottom: 20px;
}

.header-block .text {
  max-width: 434px;
}

.document-block {
  padding: 92px 0 70px;
}

.document-block-content {
  display: flex;
  gap: 10px;
  width: calc(100% + 120px);
  margin-left: -60px;
  padding: 0 60px;
  overflow: auto;
}

.document-block-content::-webkit-scrollbar {
  width: 0;
}

.document-block-content::-webkit-scrollbar-track {
  background-color: transparent;
}

.document-block-content::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.document-el {
  position: relative;
  min-width: 257px;
  padding: 25px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
  transition: .3s;
}

.document-el--info {
  background: #335682;
  padding: 40px;
}

.document-el--info .document-el__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 106%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 19px;
}

.document-el__subtitle {
  max-width: 462px;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 27px;
}

.document-el__link {
  display: inline-block;
  border-radius: 6px;
  padding: 22px 40px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #333;
  background: #fff;
  border: 2px solid #fff;
  transition: .3s;
}

.document-el__link:hover {
  background: transparent;
  color: #fff;
}

.document-el img {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition: .3s;
}

.document-el .document__hover {
  opacity: 0;
}

.document-el:hover .document__hover {
  opacity: 1;
  z-index: 2;
}

.document-el__title {
  position: relative;
  z-index: 3;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #434343;
  transition: .3s;
}

.document-el:not(.document-el--info) .document-el__title {
  max-width: 163px;
}

.document-el:hover:not(.document-el--info) {
  background: #f2f5f9;
}

.document-el:hover:not(.document-el--info) .document-el__title {
  color: #335682;
}

.document-el--big {
  width: 542px;
}

.document-el:first-child {
  width: 517px;
}

.advantages {
  padding: 80px 0;
  background: #f1f2f3;
  border-radius: 5px;
}

.advantages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 11px;
}

.advantages-el {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% / 3 - 22px / 3);
  min-height: 204px;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
}

.advantages-el__title {
  font-weight: 700;
  font-size: 18px;
  color: #335682;
}

.advantages-el__text {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #000;
}

.advantages-el--silver {
  border: 1px solid rgba(39, 67, 102, 0.11);
  background: transparent;
}

.advantages-el--img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-us {
  padding: 70px 0;
}

.about-us .title {
  max-width: 720px;
}

.about-us-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 60px 0 0;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(51, 86, 130, 0.23);
}

.about-us__el {
  position: relative;
}

.about-us__el:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  bottom: -35px;
  left: 0;
  background: #335682;
  border-radius: 100%;
}

.about-us__el__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #335682;
  margin-bottom: 24px;
}

.about-us__el__text {
  max-width: 453px;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

.banner-block {
  background: #f1f2f3;
  border-radius: 5px;
  overflow: hidden;
}

.banner-block__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  height: 519px;
}

.banner-block__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-block__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-block__inner .wrapper {
  position: relative;
  z-index: 2;
}

.banner-block__title {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 19px;
}

.banner-block__subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 108%;
  color: #fff;
  margin: 19px 0 47px;
}

.banner-block__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #333;
  border-radius: 5px;
  width: 170px;
  height: 56px;
  background: #fff;
  transition: .3s;
  border: 2px solid #fff;
}


.banner-block__link:hover {
  background: transparent;
  color: #fff;
}

.matrix {
  padding: 70px 0;
}

.matrix-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.matrix-el {
  position: relative;
  width: calc(100% / 3 - 20px / 3);
  padding: 30px;
  border: 1px solid rgba(39, 67, 102, 0.11);
  border-radius: 5px;
  background: #fff;
  min-height: 174px;
  overflow: hidden;
}

.matrix-el__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.matrix-el__title {
  font-weight: 700;
  font-size: 18px;
  color: #434343;
}

.matrix-el__num {
  font-weight: 600;
  font-size: 17px;
  color: #cb9949;
}

.matrix-el__text {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #434343;
}

.matrix-el--img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matrix-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: #335682;
  margin-top: 20px;
  padding: 44px 38px;
}

.matrix-banner__title {
  max-width: 503px;
  font-weight: 700;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.matrix-banner__text {
  max-width: 316px;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #fff;
}

.matrix-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 289px;
  height: 64px;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #172e47;
  transition: 0.3s;
  background: #fff;
}

.matrix-banner__btn:hover {
  background: transparent;
  color: #fff;
}


.slider-vertical {
  position: relative;
  overflow: hidden;
  height: 547px;
  border-radius: 10px;
}

.slider-vertical .slick-list,
.slider-vertical .slick-track {
  height: 100% !important;
}

.slider-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .slider-container {
    background-image: none !important;
    overflow: visible;
  }
}

.slider-vertical .slick-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 70px 45px;
  background-position: center;
  background-size: cover;
}

@media (min-width: 769px) {
  .slider-vertical .slick-slide {
    background-image: none !important;
  }
}


.slider-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slider__num {
  font-weight: 600;
  font-size: 50px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.41);
}

.slider__title {
  max-width: 500px;
  font-weight: 600;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.slider-bottom {
  position: relative;
  padding-top: 24px;
}

.slider-bottom:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #fff, transparent);
  opacity: 0.16;
}

.checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 37px;
  max-width: 787px;
}

.checklist__el {
  display: flex;
  gap: 10px;
  max-width: 375px;
  width: 50%;
}

.checklist__el__num {
  font-weight: 600;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.41);
}

.checklist__el__text {
  max-width: 474px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.checklist__el__text span {
  font-weight: 400;
}

.slick-slide.last-slide {
  justify-content: center;
}

.slider__subtitle {
  max-width: 528px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin: 20px 0 40px;
}

.slider__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 288px;
  height: 64px;
  background: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #172e47;
  border: 2px solid #fff;
  transition: 0.3s;
}

.slider__link:hover {
  background: transparent;
  color: #fff;
}

.work {
  margin: 80px 0;
}

.work-content {
  display: flex;
  gap: 10px;
  width: calc(100% + 120px);
  margin-left: -60px;
  padding: 0 60px;
  overflow: auto;
}

.work-content::-webkit-scrollbar {
  width: 0;
}

.work-content::-webkit-scrollbar-track {
  background-color: transparent;
}

.work-content::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.work-content__el {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border: 1px solid rgba(39, 67, 102, 0.11);
  border-radius: 5px;
  width: 433px;
  height: 190px;
  flex-shrink: 0;
  padding: 36px 92px 36px 30px;
  overflow: hidden;
  transition: .3s;
}

.work-content__el:hover {
  background: #f2f5f9;
}

.work-content__title {
  max-width: 277px;
  font-weight: 700;
  font-size: 18px;
  color: #434343;
  transition: .3s;
}

.work-content__el:hover .work-content__title {
  color: #335682;
}

.work-content__text {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #434343;
}

.work-content__num {
  position: absolute;
  left: calc(100% - 90px);
  top: -30px;
  font-weight: 700;
  font-size: 204px;
  text-transform: uppercase;
  color: rgba(104, 139, 184, 0.33);
}

.form {
  display: flex;
  background: #f1f2f3;
  border-radius: 10px;
  margin: 80px 0;
}

.form-content {
  width: 45%;
  flex-shrink: 0;
}

.form-text {
  display: flex;
  flex-direction: column;
  gap: 83px;
  flex-grow: 1;
  padding: 63px 0 77px 129px;
}

.form-description {
  max-width: 473px;
  font-weight: 400;
  font-size: 15px;
  color: #172e47;
  margin-top: 20px;
}

.link-phone {
  font-weight: 400;
  font-size: 30px;
  color: #434343;
  transition: .3s;
}

.form-data__inner {
  display: flex;
  align-items: center;
  gap: 17px;
}

.link-phone span {
  font-weight: 600;
  color: #335682;
}

.link-phone:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.email-company {
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #434343;
  transition: .3s;
  margin: 6px 0 0 10px;
}

.email-company:hover {
  text-decoration: none;
}

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

.social__link path {
  fill: #7f94af;
  transition: .3s;
}

.social__link:hover path {
  fill: #335682;
}

.form-content {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #335682;
  padding: 70px 0;
}

.form-tel {
  max-width: 380px;
}

.from-group {
  display: flex;
  flex-direction: column;
  max-width: 380px;
  margin-bottom: 10px;
}

.from-group label {
  font-weight: 400;
  font-size: 13px;
  color: #e9eef8;
  margin-bottom: 4px;
}

.from-group label span {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

.from-group input {
  width: 100%;
  border: 1px solid rgba(233, 238, 248, 0.3);
  border-radius: 5px;
  padding: 12px 20px 14px;
  color: #e9eef8;
  font-weight: 400;
  font-size: 13px;
  background: transparent;
  transition: .3s;
}

.from-group input:hover {
  border: 1px solid rgba(233, 238, 248, 0.6);
}

.from-group input:focus {
  border: 1px solid #e9eef8;
}

.from-group input::placeholder {
  color: rgba(233, 238, 248, 0.5);
}

.phone-input {
  position: relative;
  display: flex;
  align-items: center;
}

.error-input {
  display: none;
  font-weight: 400;
  font-size: 11px;
  color: #ff6c6e;
  margin-top: 5px;
}


.country-select {
  position: absolute;
  width: 62px;
  right: 3px;
  border-radius: 3px;
}

#dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 62px;
  height: 36px;
  background: rgba(233, 238, 248, 0.3);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #e9eef8;
}

#dropdown-toggle:hover {
  background: rgba(233, 238, 248, 0.4);
}

#dropdown-toggle.active {
  background: #6a83a5;
  border-radius: 3px 3px 0 0;
}

#dropdown-toggle.active svg {
  transform: rotate(180deg);
}

#country-list {
  width: 100%;
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #6a83a5;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
}

#country-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0 12px;
  cursor: pointer;
  background: #6a83a5;
  transition: .3s;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #e9eef8;
}

#country-list li:hover {
  background: #7e95b3;
}

.form-personal {
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  margin-top: 20px;
}

.form-personal a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
  transition: .3s;
}

.form-personal a:hover {
  text-decoration: none;
}

.form-tel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 171px;
  height: 64px;
  transition: .3s;
  border: 2px solid #fff;
  margin-top: 33px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #172e47;
}

.form-tel__btn:hover {
  background: transparent;
  color: white;
}

.questions {
  border: 1px solid #e7eaee;
  border-radius: 10px;
  background: #f1f2f3;
  padding: 70px 0;
}

.questions .title {
  max-width: 670px;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

.questions__el {
  border-radius: 10px;
  background: #fff;
  transition: .3s;
  padding: 23px 25px 23px;
}

.questions__el:hover {
  box-shadow: 0 1px 12px 0 rgba(51, 86, 130, 0.19);
}

.questions-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.questions__title {
  font-weight: 700;
  font-size: 16px;
  color: #434343;
  margin-top: 5px;
}

.questions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  border-radius: 5px;
  background: #e9eef8;
  transition: .3s;
  cursor: pointer;
  flex-shrink: 0;
}

.questions-btn.active {
  background: #335682;
}

.questions-btn__open {
  display: none;
}

.questions-btn.active .questions-btn__open {
  display: block;
}

.questions-btn.active .questions-btn__close {
  display: none;
}

.questions-body {
  display: none;
  margin-top: 11px;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

.footer {
  border-radius: 10px;
  background: #0c1623;
  margin-top: 80px;
  padding: 47px 70px 35px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  max-width: 208px;
}

.footer-logo img {
  width: 100%;
}

.footer-phone__link {
  font-weight: 400;
  font-size: 26px;
  color: #fff;
  transition: .3s;
}

.footer-phone__link span {
  font-weight: 600;
}

.footer-phone__link:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.work-time {
  display: flex;
  justify-content: space-between;
}

.footer-text {
  font-weight: 400;
  font-size: 14px;
  color: #74767d;
}

.footer-email__link {
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
  transition: .3s;
}

.footer-email__link:hover {
  text-decoration: none;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 201px;
  height: 64px;
  background: #2a2c3d;
  transition: .3s;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
}

.footer-btn:hover {
  background: #274366;
}

.nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 76px 0 62px;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 256px;
}

.nav__title {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  transition: .3s;
}

.nav__title:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav__el {
  max-width: 256px;
  font-weight: 400;
  font-size: 14px;
  color: #74767d;
  transition: .3s;
}

.nav__el:hover {
  color: #fff;
}

.copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy__copyright-legal {
  font-weight: 400;
  font-size: 13px;
  color: #74767d;
  transition: .3s;
}

.copy__copyright-legal:hover {
  color: #fff;
}

.developer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.developer svg:hover path {
  fill: white;
}

.footer-text svg:hover path {
  fill: #fff;
}

.menu {
  position: fixed;
  z-index: 11;
  top: -130%;
  left: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.09);
  background: #f9f9f9;
  padding: 41px 67px 40px 67px;
  transition: .3s;
}

.menu.active {
  top: 0;
}

.menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location {
  display: flex;
  align-items: center;
  gap: 67px;
}

.location-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

.location-address span {
  font-weight: 400;
  font-size: 13px;
  line-height: 146%;
  color: #74767d;
}

.support {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support__mail {
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #74767d;
}

.support__mail:hover {
  text-decoration: none;
}

.support__text {
  font-weight: 400;
  font-size: 13px;
  color: #74767d;
}

.personal-data {
  max-width: 264px;
  font-weight: 400;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #74767d;
}

.personal-data:hover {
  text-decoration: none;
}

.menu .nav {
  padding: 52px 0 70px;
}

.menu .nav__title {
  color: #274366;
}

.menu .nav__el {
  color: #74767d;
}

.menu .nav__title:hover {
  color: rgba(39, 67, 102, 0.5);
}

.menu .nav__el:hover {
  color: #335682;
}

.menu .header-burger:hover path {
  fill: #3065a7;
}

.document-slider {
  position: relative;
  display: inline-block;
  width: 320px;
  height: 24px;
  overflow: hidden;
  top: 3px;
}

.document-slider__el {
  position: absolute;
  width: 100%;
  white-space: nowrap;
  color: #335682;
  text-align: left;
  opacity: 0;
  transform: translate(100%);
}

.document-slider__el.active {
  opacity: 1;
  transform: translate(0);
  transition: 1s;
}

.document-slider__el.prev {
  transform: translate(-100%);
  opacity: 0;
  transition: 1s;
}

.mobile-link {
  display: none;
}

.menu .nav__title {
  font-weight: 600;
  margin-bottom: 0;
}
.nav__list__head {
  margin-bottom: 10px;
}

.nav__list__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav__list__arrow {
  display: none;
}

@media (max-width: 1350px) {
  .matrix .wrapper {
    padding: 0;
  }

  .matrix-banner {
    flex-direction: column;
    padding: 40px 20px 20px;
  }

  .matrix-banner__title {
    text-align: center;
  }

  .banner-title {
    max-width: 580px;
    font-size: 50px;
  }
}

@media (max-width: 1200px) {
  .header-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .document-block {
    padding: 55px 0 80px;
  }

  .title {
    max-width: initial !important;
    width: 100%;
  }

  .header-block .text {
    max-width: initial;
    width: 100%;
  }
  .document-block .wrapper {
    padding: 0;
  }

  .document-el--info {
    max-width: 345px;
    padding: 30px 30px 25px;
  }

  .document-el__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    padding: 0;
  }

  .advantages .wrapper {
    padding: 0 20px;
  }

  .about-us .wrapper,
  .work .wrapper {
    padding: 0;
  }

  .about-us {
    padding: 80px 0;
  }

  .about-us-content {
    position: relative;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
    padding: 0 0 0 25px;
    border-bottom: none;
  }

  .about-us-content:before {
    position: absolute;
    content: "";
    left: 0;
    top: 15px;
    width: 1px;
    height: calc(100% - 15px);
    background: rgba(51, 86, 130, 0.23);
  }

  .about-us__el:after {
    bottom: 0;
    top: 15px;
    left: -29px;
  }

  .advantages-el {
    width: calc(100% / 2 - 11px / 2);
  }

  .matrix {
    padding: 80px 0;
  }

  .matrix-list {
    flex-wrap: nowrap;
    overflow: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 0 15px;
  }

  .matrix-list::-webkit-scrollbar {
    width: 0;
  }

  .matrix-list::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .matrix-list::-webkit-scrollbar-thumb {
    background-color: transparent;
  }

  .matrix-el {
    width: 324px;
    flex-shrink: 0;
  }

  .matrix-banner {
    margin-top: 20px;
  }

  .slider-vertical {
    width: 100vw;
    height: 587px;
    border-radius: 0;
  }

  .form {
    flex-direction: column;
  }

  .form-text {
    padding: 80px 20px 61px 20px;
    gap: 30px;
  }

  .form-description {
    max-width: initial;
  }

  .form-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-content {
    width: 100%;
    padding: 50px 30px;
  }

  .footer {
    padding: 45px 44px;
  }

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

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer-btn {
    margin-top: 20px;
  }

  .copy {
    flex-direction: column;
    gap: 20px;
  }

  .menu-bottom {
    flex-direction: column;
    gap: 19px;
  }

}

@media (max-width: 768px) {
  .header-left {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }

  .header-right {
    display: none;
  }

  .header.scroll {
    top: 0;
    padding: 26px 0;
  }

  .banner {
    height: 559px;
    padding-bottom: 20px;
  }

  .wrapper {
    padding: 0 20px;
  }

  .banner_label {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 30px;
  }

  .banner_label__el--top {
    align-self: flex-start;
    margin-left: 30px;
  }

  .banner_label__el {
    position: relative;
    top: inherit;
    left: initial;
    right: inherit;
    bottom: inherit;
  }

  .banner-btn {
    flex-direction: column;
    margin-top: 30px;
  }

  .banner-btn a {
    text-align: center;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-animate {
    height: 33px;
  }

  .document-slider {
    height: 25px;
  }

  .title {
    font-size: 34px;
    letter-spacing: -0.03em;
  }

  .document-block-content {
    display: flex;
    gap: 10px;
    width: 100vw;
    margin-left: -15px;
    padding: 0 15px;
    overflow: auto;
  }

  .advantages-el {
    width: 100%;
    min-height: 144px;
    gap: 20px;
  }

  .about-us__el__title {
    font-size: 34px;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
  }

  .banner-block__img {
    border-radius: 5px;
    overflow: hidden;
    position: static;
    height: 232px;
    margin-bottom: 30px;
  }

  .banner-block__inner {
    height: initial;
    padding: 15px 15px 36px;
  }

  .banner-block__inner .wrapper {
    padding: 0;
  }

  .banner-block__title {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: #172e47;
  }

  .banner-block__title span {
    color: #335682;
  }

  .banner-block__subtitle {
    font-size: 15px;
    line-height: 108%;
    color: #434343;
    margin: 15px 0 30px;
  }

  .banner-block__link {
    background: #335682;
    color: #fff;
    border-radius: 5px;
    width: 100%;
  }

  .matrix-banner__btn {
    width: 100%;
  }

  .slider-block .wrapper {
    padding: 0;
  }

  .slider-vertical {
    display: flex;
    flex-direction: row;
    overflow: auto;
    padding: 0 15px 0 15px;
    margin-left: -15px;
    gap: 8px;
  }

  .slider-vertical::-webkit-scrollbar {
    width: 0;
  }

  .slider-vertical::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .slider-vertical::-webkit-scrollbar-thumb {
    background-color: transparent;
  }

  .slider-vertical .slick-slide {
    width: 345px;
    border-radius: 10px;
    padding: 50px 30px;
    flex-shrink: 0;
    justify-content: flex-start;
    gap: 86px;
  }

  .slider-vertical .slick-slide.last-slide {
    display: flex;
    padding-top: 91px;
  }

  .slider__num {
    font-size: 35px;
    line-height: 110%;
    letter-spacing: -0.03em;
  }

  .slider__title {
    font-size: 25px;
    line-height: 110%;
    letter-spacing: -0.03em;
  }

  .checklist {
    gap: 30px;
  }

  .checklist__el {
    width: 100%;
  }

  .checklist__el__text {
    font-size: 14px;
  }

  .slider-bottom:before {
    width: 100%;
  }

  .last-slide .content-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .slider__subtitle {
    font-size: 14px;
    flex-grow: 1;
  }

  .work-content {
    width: 100%;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }

  .work-content__el {
    width: 100%;
    padding: 36px 90px 23px 20px;
  }

  .link-phone {
    font-size: 24px;
  }

  .no-mobile {
    display: none;
  }

  .form-tel__btn {
    width: 100%;
    background: #fff;
  }

  .questions__title {
    font-size: 14px;
  }

  .footer-top,
  .copy {
    align-items: flex-start;
  }

  .footer-btn {
    width: 100%;
  }

  .footer .nav {
    padding: 40px 0 60px;
  }

  .header {
    width: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
    padding: 35px 0;
  }

  .header .wrapper {
    padding: 0 35px;
  }

  .header-logo {
    max-width: 131px;
  }

  .menu {
    display: flex;
    flex-direction: column;
    padding: 34px 35px;
    height: 100vh;
  }

  .menu-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
    overflow: auto;
  }

  .nav__title {
    margin-bottom: 10px;
  }

  .nav__list-body {
    display: none;
  }

  .personal-data {
    display: none;
  }

  .location {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 19px;
  }

  .mobile-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
  }
  .mobile-link .header-phone {
    margin-right: 10px;
    font-size: 23px;
  }

  .header-link path {
    fill: #a7b2c0;
    fill-opacity: 1;
  }

  .menu-header {
    padding-bottom: 30px;
  }

  .menu .nav {
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    padding: 22px 0 60px;
  }

  .nav__list__head {
    display: flex;
    align-items: center;
  }

  .nav__list__arrow {
    display: block;
    padding: 8px 7px 7px;
  }

  .banner_label__el:before {
    top: 23px;
  }

  .slider-bottom:before {
    background: linear-gradient(to right, #fff, rgb(255 255 255 / 20%));
  }
}

.menu {
  top: -160%;
}


/*second pages*/

.fake-header {
  height: 117px;
}

.header--second-page:before {
  position: absolute;
  content: "";
  left: -15px;
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid #ececec;
}

.header--second-page.scroll:before {
  content: none;
}

.bread-crumbs {
  margin: 20px 0 30px;
}


.bread-crumbs-list__item {
  position: relative;
  display: inline;
}

.bread-crumbs-list__item:not(:first-child) {
  margin-left: -2px;
}

.bread-crumbs-list__item a {
  font-weight: 400;
  font-size: 14px;
  color: #434343;
  transition: .3s;
}

.bread-crumbs-list__item:not(:first-child):before {
  position: absolute;
  content: "/";
  left: 4px;
  top: 1px;
  color: #555;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.bread-crumbs-list__item:not(:first-child) {
  padding-left: 15px;
}

.bread-crumbs-list__item.no-active a {
  color: #335682;
  font-weight: 500;
  cursor: default;
}

.bread-crumbs-list__item a:hover {
  color: #335682;
}

.title--cnt {
  position: relative;
  width: fit-content;
}

.cnt-el {
  position: absolute;
  left: 100%;
  bottom: 90%;
  display: flex;
  align-items: center;
  border-radius: 3px;
  padding: 2px 6.5px;
  background: #e9eef8;
  font-weight: 700;
  font-size: 14px;
  line-height: initial;
  text-transform: uppercase;
  color: #335682;
}

.document-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.document-detailed__el {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(50% - 5px);
  height: 306px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background: #fff;
  padding: 40px;
  transition: .3s;
  overflow: hidden;
}

.document-detailed__el:hover {
  background: #e9eef8;
  border-color: #e9eef8;
}

.document-detailed__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition: .3s;
  color: #434343;
  margin-bottom: 20px;
}

.document-detailed__title span {
  color: #335682;
}

.document-detailed__title:hover {
  color: #335682;
}

.document-detailed__text {
  font-weight: 400;
  font-size: 14px;
  color: #434343;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.document-detailed__btn {
  position: absolute;
  bottom: -40px;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  max-height: 0;
  opacity: 0;
  transition: .3s;
}

.document-detailed__el:hover .document-detailed__btn {
  display: flex;
  height: auto;
  opacity: 1;
  max-height: inherit;
  position: relative;
  bottom: 0;
}

.document-detailed__order {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 154px;
  height: 56px;
  background: #335682;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  transition: .3s;
}

.document-detailed__order:hover {
  background: #3065a7;
}

.document-detailed__more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 170px;
  height: 56px;
  background: #fff;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #335682;
  transition: .3s;
}

.document-detailed__more:hover {
  border: 2px solid #3065a7;
  color: #3065a7;
}

.document-detailed__el--empty:hover {
  background: inherit;
}

@media (max-width: 1360px) {
  .document-detailed__el {
    width: 100%;
    height: auto;
  }

  .document-detailed__btn {
    position: static;
    display: flex;
    flex-direction: column;
    max-height: inherit;
    opacity: 1;
  }

  .document-detailed__btn > a {
    width: 100%;
  }

  .document-detailed__more {
    border: 2px solid #3065a7;
  }

  .second-page .container .wrapper {
    padding: 0;
  }

  .document-detailed__title {
    word-wrap: break-word;
  }

  .document-detailed__el--empty {
    display: none;
  }

  .document-detailed-list {
    margin-top: 30px;
  }
}

@media (max-height: 768px) {
  .fake-header {
    height: 99px;
  }
}

/*services page*/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.services-el {
  position: relative;
  width: calc(50% - 5px);
  height: 414px;
  padding: 40px;
  border-radius: 5px;
  overflow: hidden;
  transition: .3s;
}

.services-el:not(.services-el--empty):before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.57) 61.3%, rgba(0, 0, 0, 0.57) 100%);
  transition: .3s;
  z-index: 2;
}

.services-el:hover:before {
  opacity: 0.5;
}


.services-el--empty {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}

.services-el .services-el-bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.services-el__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: .3s;
}

.services-el__subtitle {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

.services-el__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 6px;
  transition: .3s;
}

.services-el__title:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.services-el__text {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 20px;
}

.services-el__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  transform: translateY(20px); /* Сдвиг вниз */
  transition: opacity 0.3s ease, transform 0.3s ease
}

.services-el:hover .services-el__btn {
  height: auto;
  opacity: 1;
  max-height: inherit;
  transform: translateY(0); /* Возвращаем на место */
  margin-top: 30px;
}

.services-el:hover .services-el__inner {
  transform: translateY(-10px);
}

.services-el__order {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 154px;
  height: 56px;
  background: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #335682;
  transition: .3s;
}

.services-el__order:hover {
  background: #3065a7;
  color: #fff;
}

.services-el__more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 170px;
  height: 56px;
  background: transparent;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  transition: .3s;
}

.services-el__more:hover {
  background: #fff;
  color: #3065a7;
}

.services-el--empty:hover {
  background: inherit;
}

@media (max-width: 1360px) {
  .services-el {
    width: 100%;
    height: 414px;
  }

  .services-el__btn {
    flex-direction: column;
  }

  .services-el__btn > a {
    width: 100%;
  }

  .services-el--empty {
    display: none;
  }

  .services-list {
    margin-top: 30px;
  }

}

@media (max-width: 768px) {
  .services-el__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.03em;
  }

  .services-el__btn {
    flex-direction: row;
    max-height: inherit;
    transform: translateY(0);
    margin-top: 30px;
    opacity: 1;
  }

  .services-el:hover .services-el__inner {
    transform: inherit;
  }
}

/*catalog page*/


.catalog-inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
}

._sidebar {
  width: 273px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}

._sidebar ul {
  padding: 0;
  margin: 0;
}

._sidebar li {
  list-style-type: none;
}

._sidebar-menu-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
}

._sidebar-menu-level > a {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s;
}

._sidebar-menu__item ._sidebar-menu-level {
  position: relative;
}

._sidebar-menu__item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

._sidebar-menu__item ._sidebar-menu-level.active:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 8px;
  border: 1px solid #3065a7;
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  background: #3065a7;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

._sidebar-menu__submenu {
  display: none;
}

._sidebar-menu__submenu ._sidebar-menu__item ._sidebar-menu-level.active:before {
  content: none;
}

._sidebar-menu-level.active > a {
  font-weight: 700;
}

._sidebar-menu-level--active > a {
  color: #3065a7;
}

._sidebar-menu__submenu a {
  font-weight: 400;
}

._dropdown-btn {
  position: relative;
  display: flex;
  transition: 0.3s;
  cursor: pointer;
}

._sidebar-menu-level.active ._dropdown-btn {
  transform: rotate(180deg);
  top: 2px;
}

._sidebar-menu__submenu ._sidebar-menu-level {
  padding: 6px 20px;
}

._sidebar-menu__submenu ._sidebar-menu__item {
  border: none;
}

._sidebar-menu__submenu ._sidebar-menu__submenu ._sidebar-menu-level {
  padding: 5px 37px 5px 40px;
}

._sidebar-menu-level > a:hover {
  color: #3065a7;
}

._sidebar-menu-level > a:hover + ._dropdown-btn path {
  fill: #3065a7;
}

._dropdown-btn:hover path {
  fill: #3065a7;
}

._sidebar-menu__submenu ._sidebar-menu-level.active > a {
  font-weight: 600;
  color: #335682;
}

._sidebar-menu__submenu ._sidebar-menu__submenu ._sidebar-menu-level > a {
  font-size: 13px;
}

._sidebar-menu__submenu ._sidebar-menu__submenu {
  padding: 8px 0 1px;
}

._sidebar-menu__item.active {
  padding-bottom: 14px;
}

._sidebar-menu__item.active ._sidebar-menu__item {
  padding-bottom: 0;
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  flex-grow: 1;
}

.catalog-el {
  position: relative;
  width: calc(25% - 15px / 4);
  height: 277px;
  box-shadow: 1px 3px 16px 0 rgba(51, 86, 130, 0.1);
  border-radius: 5px;
}

.catalog-el__img {
  position: relative;
  display: flex;
  justify-content: center;
  height: 160px;
  width: calc(100% - 40px);
  text-align: center;
  z-index: 2;
  margin: 0 auto;
}

.catalog-el__img:hover {

}

.catalog-el__img img {
  position: relative;
  width: 180px;
  height: 160px;
  display: block;
  object-fit: contain;
  transition: .3s;
}

.catalog-el__img:hover img {
  transform: scale(1.2);
}

.catalog-el__detailed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  padding: 20px 40px;
  backdrop-filter: blur(9.399999618530273px);
  background: rgba(205, 205, 205, 0.43);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  transition: .3s;
  opacity: 0;
  cursor: pointer;
}

.catalog-el__img:hover .catalog-el__detailed {
  opacity: 1;
}

.catalog-el__detailed:hover {
  background: rgba(51, 86, 130, 0.52);
  opacity: 1;
}

.catalog-el-inner {
  position: relative;
  z-index: 2;
  padding: 15px 15px 30px;
}

.catalog-el__title {
  font-weight: 700;
  font-size: 15px;
  color: #333;
  margin-bottom: 2px;
  transition: .3s;
}

.catalog-el__title:hover {
  color: #335682;
}

.catalog-el__text {
  font-weight: 600;
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

.catalog-el__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 12px;
  color: #43a075;
}

.catalog-el__hover {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: calc(100% + 50px);
  box-shadow: 1px 3px 16px 0 rgba(51, 86, 130, 0.18);
  opacity: 0;
  z-index: -1;
  border-radius: 5px;
  background: #fff;
  top: -16px;
  left: 0;
  padding: 0 18px 19px;
}

.catalog-el:hover .catalog-el__hover {
  height: calc(100% + 90px);
  opacity: 1;
  z-index: 1;
  transition: .3s;
}

.catalog-el:hover {
  z-index: 5;
}

.catalog-el__order {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background: #335682;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  transition: .3s;
  border: 2px solid #335682;
  border-radius: 5px;
}

.catalog-el__order:hover {
  background: #fff;
  color: #335682;
}

@media (max-width: 1300px ) {
  ._sidebar {
    display: none;
  }
}

@media (max-width: 1024px ) {
  .catalog-el {
    position: relative;
    width: calc(100% / 3 - 10px / 3);
    height: 358px;
    padding-top: 16px;
  }

  .catalog-el__hover {
    position: static;
    opacity: 1;
    height: auto;
    box-shadow: none;
    background: none;
    padding: 0 18px;
  }

  .catalog-el-inner {
    padding: 15px 18px 20px;
  }

  .catalog-el:hover .catalog-el__hover {
    height: auto;
  }
}

@media (max-width: 768px ) {
  .catalog-el {
    width: calc(50% - 5px);
  }
}

@media (max-width: 450px ) {
  .catalog-el {
    width: 100%;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.53);
  transition: .3s;
  opacity: 0;
  z-index: -1;
}

.popup.active {
  opacity: 13;
  z-index: 13;
}

.el-detailed {
  position: absolute;
  max-width: 923px;
  width: calc(100% - 30px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.popup-content.el-detailed{
  max-width: 923px;
}

.el-detailed-content {
  width: 100%;
  max-height: 90vh;
  border-radius: 5px;
  background: #fff;
  padding: 40px;
  overflow: auto;
}

.el-detailed-content::-webkit-scrollbar {
  width: 3px;
}

.el-detailed-content::-webkit-scrollbar-track {
  background: white;
}

.el-detailed-content::-webkit-scrollbar-thumb {
  background: gray;

}


.el-detailed__subtitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 20px;
}

.el-detailed__link-catalog {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 12px;
  color: #666;
  transition: .3s;
}

.el-detailed__link-catalog:hover {
  color: #335682;
}

.el-detailed__link-catalog:hover path {
  fill: #335682;
}

.popup-cross {
  position: absolute;
  top: 0;
  left: calc(100% + 15px);
  cursor: pointer;
}

.features__title {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 17px;
}

.features-list__el {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
}

.features__name {
  width: 50%;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #74767d;
  padding-right: 47px;
}

.features__data {
  width: 50%;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: #172e47;
  text-align: left;
}

.el-detailed .catalog-el__order {
  width: 218px;
  margin: 30px auto 0;
}

.card-slider {
  position: relative;
}

.card-slider-main {
  border: 1px solid #ededed;
  border-radius: 5px;
  height: 420px;
}

.card-slider-main .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.card-slider-main .slick-list,
.card-slider-main .slick-track {
  height: 100%;
}

.card-slider-arrows {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  top: 198px;
}

.card-slider-prev {
  margin-left: 20px;
  cursor: pointer;
}

.card-slider-next {
  margin-right: 20px;
  cursor: pointer;
}

.card-slider-prev path,
.card-slider-next path {
  fill: #666;
}

.card-slider-prev:hover path,
.card-slider-next:hover path {
  fill: #335682;
}

.card-slider-main-nav {
  margin-top: 10px;
}

.card-slider-main-nav .slick-list {
  padding: 0;
}

.card-slider-main-nav__item {
  width: 111px !important;
  height: 111px !important;
  flex-shrink: 0;
  border: 1px solid #ededed;
  border-radius: 5px;
  margin-right: 10px;
  transition: .3s;
}

.card-slider-main-nav .slick-track {
  width: 100% !important;
}

.card-slider-main-nav .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-slider-main-nav__item.slick-current {
  border: 2px solid #335682;
}

.card-slider-main-nav__item:not(.slick-current):hover {
  border: 1px solid #d4d4d4;
  cursor: pointer;
}

.no-scroll.slick-track {
  transform: none !important;
}

.el-detailed-slider {
  margin-bottom: 34px;
}

@media (max-width: 768px) {
  .el-detailed-content {
    padding: 40px 15px;
  }

  .el-detailed__subtitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 25px;
  }

  .el-detailed-content .title {
    padding: 0 25px;
  }

  .el-detailed-content .card-slider-arrows {
    display: none;
  }

  .card-slider-main {
    height: 265px;
  }

  .el-detailed-content .slick-track {
    display: flex;
  }

  .features-list__el {
    flex-direction: column;
    align-items: flex-start;
  }

  .features__name,
  .features__data {
    width: 100%;
  }

  .popup-cross {
    right: 0;
    top: -32px;
    left: initial;
  }

  .el-detailed .catalog-el__order {
    width: 100%;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.53);
}

.popup-content {
  position: fixed;
  max-width: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: #fff;
  padding: 40px;
}

.popup__cross {
  position: absolute;
  left: calc(100% + 15px);
  top: 0;
}

.popup__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.popup__subtitle {
  max-width: 340px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #434343;
  margin: 0 auto 30px;
}

.submit-btn {
  border-radius: 6px;
  width: 100%;
  height: 64px;
  background: #335682;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
  transition: .3s;
}

.submit-btn:hover {
  background: #3065a7;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-group label {
  font-weight: 400;
  font-size: 13px;
  color: #000;
}

.form-group label span {
  font-weight: 400;
  font-size: 12px;
  color: #335682;
  margin-left: 3px;
}

.custom-input {
  max-height: 42px;
  background: #f6f6f6;
  border-radius: 5px;
  font-weight: 400;
  font-size: 13px;
  color: #000;
  padding: 12px 22px 14px 22px;
  border: 1px solid transparent;
  transition: .3s;
}

.custom-input::placeholder {
  color: #a9a9a9;
}

.custom-input:hover {
  border: 1px solid rgba(51, 51, 51, 0.3);
}

.custom-input:focus {
  background: #fff;
  border: 1px solid #438be3;
}

.custom-input.error {
  border: 1px solid #f00;
}

.error-mes {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #f00;
  margin-top: 6px;
}

input[type="checkbox"] {
  display: none;
}

.form-group--checkbox {
  display: block;
  margin-top: 20px;
}

.checkbox-label {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  padding: 0 10px 0 35px;
  cursor: pointer;
}

.checkbox-label:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #335682;
  border-radius: 3px;
  transition: .3s;
  cursor: pointer;
}

.checkbox-label:before:hover {
  border: 1px solid #335682;
}

.checkbox-label:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  left: 0;
  top: 0;
  background: #335682 url("../img/check.svg") no-repeat center;
  border-radius: 3px;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.checkbox-label:after:hover {
  background: #335682 url("../img/check.svg") no-repeat center;
}

.custom-checkbox:checked + label:after {
  opacity: 1;
}

.checkbox-label a {
  font-weight: 500;
  color: #335682;
}

.custom-input--textarea {
  height: 111px;
  max-height: initial;
}

@media (max-width: 768px) {
  .popup-content {
    width: calc(100% - 30px);
  }
}

.banner .bread-crumbs {
  padding-top: 30px;
}

.banner .bread-crumbs-list__item a {
  color: #fff;
}

.banner .bread-crumbs-list__item:not(:first-child):before {
  color: #fff;
}

.banner .bread-crumbs-list__item:not(.no-active) a:hover {
  color: #335682;
}

.second-page .banner {
  height: 656px;
  padding-bottom: 62px;
  margin-bottom: 100px;
}

.second-page .banner-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
}

.second-page .banner-title {
  max-width: 765px;
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.second-page .banner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 10px;
  left: 0;
  top: 0;
}

.second-page .banner > .wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.banner-q {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.meta {
  margin: 80px 0;
}

.meta-content {
  display: flex;
  justify-content: space-between;
  gap: 97px;
}

.meta__title {
  max-width: 305px;
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #74767d;
}

.meta__title span {
  color: #335682;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 80px;
}

.meta-el {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: calc(50% - 40px);
}

.meta-el__title {
  display: flex;
  color: #335682;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.meta-el__num {
  font-weight: 600;
  font-size: 105px;
  line-height: 110%;
  color: #335682;
}

.meta-el__description {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #335682;
}

.meta-el__plus {
  font-weight: 400;
  font-size: 56px;
  line-height: 110%;
  color: #335682;
}

.meta-el__data {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
}

.meta-el__text {
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

.meta-grid--card {
  gap: 10px;
}

.meta-el--card {
  position: relative;
  border: 1px solid rgba(39, 67, 102, 0.11);
  border-radius: 5px;
  overflow: hidden;
  width: calc(100% / 3 - 20px / 3);
  padding: 30px;
}

.meta-el__title {
  font-weight: 700;
  font-size: 18px;
  color: #434343;
}

.meta-el__text {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #434343;
  margin-top: 20px;
}

.meta-el--card-bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-vertical--second.slider-vertical .slick-slide {
  padding: 80px 45px;
}

.slider-vertical--second {
  background: #f1f2f3;
  height: auto;
}

.second-slider-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.second-slider__num {
  font-weight: 600;
  font-size: 50px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #335682;
}

.second-slider-content {
  max-width: 918px;
}

.second-slider__subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #74767d;
  margin-bottom: 18px;
}

.second-slider__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #335682;
  margin-bottom: 41px;
}

.second-slider-text {
  display: flex;
  gap: 35px;
}

.second-slider-text__el {
  width: calc(50% - 35px / 2);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #434343;
}

.second-slider-text__el p:not(:last-child) {
  margin-bottom: 20px;
}

.slider-matrix-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-matrix-inner .matrix-banner__title {
  font-size: 18px;
  line-height: 106%;
}

@media (min-width: 769px) {
  .slider-vertical--second .last-slide {
    display: none;
  }
}

.feedback-block {
  position: relative;
  border-radius: 10px;
  background: #f1f2f3;
  margin-top: 80px;
}

.feedback-block-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback-block__subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #74767d;
  margin-bottom: 20px;
}

.feedback-block__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 38px;
}

.feedback-block__title span {
  color: #335682;
}

.feedback-block__link {
  display: flex;
  width: fit-content;
}

.feedback-block__link__mob {
  display: none;
}

.feedback-block-text {
  max-width: 604px;
  padding: 100px 10px 114px 70px;
}

.feedback-block__img {
  position: relative;
  width: 641px;
  align-self: stretch;
  background: #335682;
  border-radius: 10px;
}

.feedback-block__img img {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}

.meta-el--card .meta-el__title {
  text-transform: none;
}

.feedback-block__img--mobile {
  display: none;
}

@media (max-width: 1360px) {
  .second-page .banner {
    padding: 30px 24px 70px;
  }

  .banner .bread-crumbs {
    margin: 0;
    padding: 0;
  }

  .meta-content {
    flex-direction: column;
    gap: 33px;
  }

  .meta__title {
    max-width: 100%;
  }

  .feedback-block-text {
    padding-left: 40px;
  }

  .feedback-block-text {
    max-width: 480px;
  }

  .feedback-block__img img {
    max-width: 120%
  }

  .feedback-block__link__desc {
    display: none;
  }

  .feedback-block__link__mob {
    display: block;
  }
}

@media (max-width: 1024px) {
  .second-page .banner-content {
    flex-direction: column;
    gap: 62px;
  }

  .second-page .banner-title {
    font-size: 34px;
    line-height: 110%;
    word-break: break-all;
  }

  .meta-grid {
    gap: 24px;
  }

  .meta-grid--card {
    gap: 10px;
  }

  .meta-el {
    width: 100%;
  }

  .meta-el__text {
    margin: 0;
  }

  .meta-el .meta-el--card {
    gap: 20px;
  }

  .meta-el--img {
    min-height: 188px;
  }

  .slider-vertical--second.slider-vertical .slick-slide {
    padding: 50px 30px;
  }

  .second-slider-inner {
    flex-direction: column;
  }

  .second-slider__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 110%;
    letter-spacing: -0.03em;
  }


  .feedback-block-text {
    padding: 67px 40px 104px 40px;
  }


  .second-slider-text {
    flex-direction: column;
    gap: 35px;
  }

  .second-slider-text__el {
    width: 100%;
  }

}

@media (max-width: 1024px) {
  .feedback-block__title {
    font-size: 34px;
    line-height: 110%;
  }

  .feedback-block__img img {
    max-width: 452px;
  }
}

@media (max-width: 766px) {
  .m-none {
    display: none;
  }

  .slider-vertical.slider-vertical--second .slick-slide {
    height: auto;
  }

  .slider-vertical--second {
    background: transparent;
  }

  .slider-vertical--second .slick-slide {
    background: #f1f2f3;
  }

  .slider-vertical--second .slick-slide.last-slide {
    background: #335682;
    padding: 20px;
  }

  .slider-vertical--second .slick-slide.last-slide .content-slide {
    align-items: center;
    justify-content: center;
  }

  .slider-vertical--second .slick-slide.last-slide .slider__subtitle {
    flex-grow: initial;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: -0.01em;
    text-align: center;
  }

  .slider-vertical--second .slick-slide.last-slide .slider__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 122%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
  }

  .feedback-block__title {
    font-size: 34px;
    line-height: 110%;
  }

  .feedback-block-content {
    flex-direction: column;
    gap: 43px;
  }

  .feedback-block-text {
    padding: 80px 20px 0;
  }

  .feedback-block__img {
    display: none;
    width: 100%;
    position: static;
    background: transparent;
  }

  .feedback-block__img--mobile {
    display: block;
  }

  .feedback-block__img img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }

  .feedback-block__link {
    width: 100%;
    justify-content: center;
  }
}

.contacts-inner {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  border: 1px solid rgba(39, 67, 102, 0.11);
  border-radius: 5px;
  margin: 40px 0 70px;
}

.contacts-col {
  max-width: 310px;
}

.contacts-el:not(:last-child) {
  margin-bottom: 40px;
}

.contacts-el__name {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 30px;
}

.contacts-el__title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 6px;
}

.contacts-el__text {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #434343;
}

.contact-link-phone {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #333;
  transition: .3s;
}

.contact-link-phone:hover {
  color: #335682;
}

.contact-link-email {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #335682;
  transition: .3s;
}

.contact-link-email:hover {
  text-decoration: none;
}

.contact-social {
  display: flex;
  gap: 10px;
}

.contact-social__el {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 157px;
  height: 54px;
  border-radius: 5px;
  background: #f1f2f3;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #434343;
  transition: .3s;
}

.contact-social__el:hover {
  background: #e9eef8;
}

.questions__title__contact {
  width: 265px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #74767d;
  flex-shrink: 0;
  padding: 30px 0;
}

.questions__title__description {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #434343;
}

.questions__title__description:hover {
  color: #335682;
}

@media (min-width: 1439px) {
  .questions--contacts .questions__title {
    display: flex;
    gap: 133px;
  }
}

.questions--contacts {
  padding: 0;
  margin: 70px 0;
  background: transparent;
  border: none;
}

.questions--contacts .questions-list {
  padding: 0;
}

.questions-document {
  display: flex;
  align-items: center;
  gap: 20px;
}

.questions-document-img {
  display: flex;
  flex-shrink: 0;
}

.questions-document-text a {
  font-weight: 600;
  font-size: 16px;
  color: #434343;
  transition: .3s;
}

.questions-document-text a:hover {
  color: #335682;
}

.questions-document-info {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
}

.questions-document-info__size {
  border-radius: 5px;
  padding: 4px 7px;
  background: #ececec;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #434343;
}

.questions-document-info__type {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #434343;
}

.questions--contacts .questions__el {
  border-radius: 0;
}

.questions--contacts .questions__el:not(:last-child){
  border-bottom: 1px solid #ececec;
}

.questions--contacts .questions__el:hover {
  box-shadow: none;
}

.questions-document-el:not(:last-child){
  border-bottom: 1px solid #ececec;
}

.map-block-content {
  border-radius: 5px;
  width: 100%;
  height: 459px;
  margin-top: 40px;
  overflow: hidden;
}

.map-block-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-img-mob {
  display: none;
}

.feedback-block--contact {
  overflow: hidden;
  margin-top: 20px;
}

.feedback-block__img-contact {
  position: relative;
  width: 60%;
  border-radius: 10px;
  background: #335682;
  height: auto;
  align-self: stretch;
}

.feedback-block--contact .feedback-block-text {
  padding: 60px 10px 60px 114px;
}

.feedback-block__text {
  font-weight: 400;
  font-size: 15px;
  color: #172e47;
  margin-bottom: 30px;
}

.feedback-block--contact .feedback-block__title {
  margin-bottom: 20px;
}

.feedback-block__img-contact img {
  position: absolute;
  right: 0;
  top: 80px;
}

@media (max-width: 1875px) {
  .feedback-block__img-contact img {
    position: absolute;
    right: initial;
    top: 80px;
    left: -113px;
  }
}

@media (max-width: 1750px) {
  .feedback-block__img-contact {
    width: 634px;
  }

}

@media (max-width: 1300px) {
  .feedback-block__img-contact {
    width: 524px;
  }

  .feedback-block--contact .feedback-block-text {
    max-width: 393px;
    padding: 50px 10px 50px 40px;
  }

  .feedback-block--contact .feedback-block__title {
    font-weight: 600;
    font-size: 34px;
    line-height: 110%;
  }
  .feedback-block__img-contact img {
    left: -66px;
  }

  .second-page .questions-list {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .contact-img-desc {
    display: none;
  }

  .contact-img-mob {
    display: block;
  }

  .feedback-block__img-contact img {
    top: 112px;
  }

  .feedback-block__img-contact {
    width: 268px;
  }

  .contacts-inner {
    flex-direction: column;
    gap: 40px;
  }

  .questions--contacts .questions__title {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .questions--contacts .questions-header {
    align-items: center;
  }

}

@media (max-width: 768px) {
  .feedback-block__img-contact img {
    top: 40px;
    left: 0;
  }

  .feedback-block__img-contact {
    width: 100%;
    height: 296px;
  }

  .feedback-block--contact .feedback-block-text {
    width: 100%;
    max-width: initial;
    padding: 80px 20px 17px;
  }

  .contact-social {
    flex-direction: column;
  }

  .fake-header{
    height: 99px;
  }
}

.questions .questions {
  background: transparent;
  border: none;
  margin-top: 30px;
  padding: 0;
}

.questions-list .questions-list {
  padding: 0;
}

.questions .questions .questions__el {
  padding-bottom: 29px;
}

.questions .questions .questions__el:first-child {
  border-top: 1px solid #ececec;
}

.questions--contacts .questions__el {
  padding-left: 0;
  padding-right: 0;
}

.questions--contacts .questions .questions-body {
  padding-left: 0;
}

.questions--contacts > .questions-list > .questions__el:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 1399px) {
  .questions--contacts .questions-body {
    padding-left: 0;
    margin-top: 30px;
  }
}

.about-us--page .header--second-page:before{
  content: none;
}

.about-us--page .container{
  padding-top: 0;
}

.footer-top__el{
  min-width: 256px;
}

.questions-document-el{
  display: flex;
  gap: 133px;
}

.questions-document-el .questions-list{
  flex-grow: 1;
}

.questions--contacts .questions__el{
  padding: 30px 25px;
}

.questions--contacts  .questions__title{
  margin-top: 0;
}

@media (max-width: 1024px) {
  .questions-document-el{
   flex-direction: column;
    gap: 0;
  }

  .questions--contacts .questions__el {
    padding: 30px 0;
  }

  .questions__title__contact{
    padding: 20px 0 0;
  }
}