@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

:root {
  --main-bg-color: #ffffff;
  --second-bg-color: #f3f4f7;
  --main-text-color: #1b3777;
  --second-text-color: #171e23;
  --accent-color: #495f92;
  --main-font-family: "Manrope";
  --line-1: 1;
  --line-11: 1.1;
  --line-2: 1.2;
  --line-3: 1.3;
  --line-4: 1.4;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

a {
  background-color: transparent;
  transition: all 0.25s;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  padding: 0;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

body {
  margin: 0;
  font-family: var(--main-font-family), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: var(--line-3);
  color: var(--main-text-color);
  background: #ffffffb2;
  overflow-x: hidden;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--main-text-color);
  transition: all 0.25s;
}

a:hover,
a:focus {
  color: var(--accent-orange-color);
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: inherit;
  cursor: pointer;
  transition: all 0.25s;
}

.section {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.container--top {
  padding-top: 100px;
  padding-bottom: 0;
}

.box {
  display: flex;
  flex-direction: column;
}

.box--row {
  display: flex;
  flex-direction: row;
}
.header {
  padding-top: 20px;
}
.header__container {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__link-logo {
  max-width: 338px;
  width: 100%;
}
.header__labl-search {
  position: relative;
}
.header__labl-search::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  background-image: url(../assets/svg/magnifier.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gradient-tr{
	position:relative;
}
.header__inp-search {
  padding: 8px 8px 8px 54px;
  border: 1px solid #979ea3;
  border-radius: 25px;
  outline: none;
}
.header__inp-search::-webkit-search-cancel-button {
  display: none;
}
.header__inp-search::placeholder {
  line-height: var(--line-4);
  color: #2f3d47;
}
.header__link-tel {
  gap: 6px;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--line-2);
  color: var(--second-text-color);
}
.header__list-socials {
  gap: 10px;
}
.custom-select {
  max-width: 58px;
  width: 100%;
  position: relative;
  user-select: none;
}
.select-items li {
  position: relative;
}
.select-items li:first-child::before,
.custom-select::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../assets/svg/world.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.select-selected {
  width: 100%;
}
.select-selected,
.select-items li {
  padding-left: 30px;
  font-size: 20px;
  color: var(--second-text-color);
  cursor: pointer;
}

.select-items {
  width: 88px;
  margin: 0;
  padding: 0 15px 12px 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  gap: 6px;
  z-index: 2;
  background: var(--main-bg-color);
  border-radius: 0 0 12px 12px;
}

.custom-select.open .select-items {
  display: block;
}
.header__link-geely {
  max-width: 204px;
  width: 100%;
}
.header__list {
  gap: 5px;
  justify-content: space-between;
  align-items: center;
}
.header__list > li {
  padding-bottom: 20px;
}
.header__list > li a {
  padding: 6px 0;
  font-size: 16px;
  line-height: var(--line-4);
  font-weight: 500;
}

.header__list > li:hover > a,
.header__list > li:focus > a {
  color: var(--accent-color);
  text-shadow: 0 0 2px rgba(11, 5, 24, 0.4);
}

.nav-item,
.nav-item > a {
  position: relative;
}
.nav-item > a {
  gap: 4px;
  align-items: center;
}
.nav-item img {
  width: 12px;
  height: 12px;
}
.list--drop {
  width: max-content;
  padding: 0 40px 30px;
  position: absolute;
  top: 100%;
  left: -40px;
  z-index: 2;
  display: none;
  gap: 10px;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.9) 37.74%
  );
  transition: opacity 0.3s ease;
  border-radius: 0 0 25px 25px;
}
.list--drop a {
  font-size: 14px;
}
.hero__box-services2:hover .base__btn-link,
.hero__box-services2:focus .base__btn-link,
.opposition__wrapp-img:hover a,
.opposition__wrapp-img:focus a,
.breadcrumb__list a:hover,
.breadcrumb__list a:focus,
.footer__link-email:hover,
.footer__link-email:focus,
.base__btn-link:hover,
.base__btn-link:focus,
.review__link:hover,
.review__link:focus,
.price__btn-table:hover,
.price__btn-table:focus,
.contacts__link-email:hover,
.contacts__link-email:focus,
.text__link--nound:hover,
.text__link--nound:focus,
.contacts__link-telefone:hover,
.contacts__link-telefone:focus,
.footer__wrapper a:hover,
.footer__wrapper a:focus,
.contacts__box-tel a:hover,
.contacts__box-tel a:focus,
.footer__list-links a:hover,
.footer__list-links a:focus,
.faq__list-call a:hover,
.faq__list-call a:focus,
.managment__box a:hover,
.managment__box a:focus,
.text__block-box a:hover,
.text__block-box a:focus,
.contacts__wrap-phone a:hover,
.contacts__wrap-phone a:focus,
.text__block-link--accent:hover,
.text__block-link--accent:focus,
.corporate__link:hover,
.corporate__link:focus,
.opposition__btn-close:hover,
.opposition__btn-close:focus,
a.text__accent:hover,
a.text__accent:focus,
.corporate__list-info li:hover a,
.corporate__list-info li:focus a,
.link--accent:hover,
.link--accent:focus {
  text-shadow: 0 0 2px rgba(11, 5, 24, 0.4);
  box-shadow: 0px 2px 2px 0px #ffffff1a;
}
.header__list > li a.nav__link--accent {
  padding: 6px 14px;
  gap: 10px;
  align-items: center;
  color: var(--main-bg-color);
  background: var(--main-text-color);
  border-radius: 25px;
}
.hero {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, -0.92) 0%,
    rgba(255, 255, 255, 1.76) 100%
  );
}
.hero__bg-left {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 40%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero__container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  gap: 60px;
}
.hero__box {
  max-width: 590px;
  width: 100%;
}
.hero__title {
  font-weight: 700;
  font-size: 60px;
  line-height: var(--line-11);
}
.hero__descr {
  max-width: 390px;
  width: 100%;
  margin-top: 24px;
  font-size: 20px;
  color: var(--second-text-color);
}
.text--accent {
  font-weight: 700;
  color: var(--main-text-color);
}
.hero__list {
  margin: 40px 0;
  gap: 10px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.hero__list li {
  padding-left: 18px;
  position: relative;
}
.hero__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border: 2px solid var(--main-text-color);
  border-radius: 50%;
}
.base__btn {
  width: 100%;
  padding: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--main-bg-color);
  background: var(--main-text-color);
  border-radius: 25px;
}
.services__link-order:hover,
.services__link-order:focus,
.base__btn:hover,
.base__btn:focus {
  color: var(--main-bg-color);
  background: var(--accent-color);
  box-shadow: 0px 4px 4px 0px #00000040;
}
.services__link-order:active,
.base__btn:active {
  color: var(--main-bg-color);
  background: #979ea3;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
}
.base__btn--accent:hover,
.base__btn--accent:focus {
  font-weight: 700;
  color: var(--main-text-color);
  background: #f3f4f7;
  box-shadow: 0px 4px 4px 0px #ffffff40;
}
.base__btn--accent:active {
  color: #2f3d47;
  background: #e5e5e5;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
}
.hero__btn {
  max-width: 300px;
}
.hero__btn--geely {
  margin-top: 40px;
}
.hero__box-container {
  gap: 10px;
  justify-content: space-between;
}
.hero__box-services {
  max-width: 380px;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
}
.hero__box-services1,
.hero__box-services2 {
  padding: 28px 40px;
  border-radius: 25px;
  color: var(--main-bg-color);
  background: #1b3777b2;
}
.hero__box-services2 {
  position: relative;
  color: var(--second-text-color);
  background: #ffffffb2;
}
.hero__name {
  font-weight: 700;
  font-size: 24px;
  line-height: var(--line-2);
}
.hero__text {
  margin: 6px 0 20px;
  font-size: 16px;
  line-height: var(--line-4);
}
.base__btn--accent {
  padding: 12px;
  line-height: var(--line-4);
  color: var(--main-text-color);
  background: var(--main-bg-color);
}
.hero__btn-services1 {
  max-width: 240px;
}
.text--upper {
  text-transform: uppercase;
}
.base__btn-link {
  font-weight: 500;
  font-size: 16px;
  line-height: var(--line-4);
  text-decoration: underline;
}
.hero__list-advantages {
  gap: 20px;
  justify-content: space-between;
}
.hero__list-advantages li {
  max-width: 270px;
  width: 100%;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  align-items: center;
  text-align: center;
}
.video-block {
  max-width: 700px;
  margin: 0 auto;
}

.video-block video {
  width: 100%;
  height: auto;
}

.hero__wrap-img {
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  background: var(--main-text-color);
  border-radius: 50%;
}
.hero__wrap-img img {
  width: 32px;
  height: 32px;
}
.title {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 48px;
  line-height: var(--line-11);
}
.services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.services__list li {
  min-height: 288px;
  position: relative;
  border-radius: 25px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news__list-info li,
.corporate__list-info li {
  position: relative;
}
.news__list li:hover,
.news__list li:focus,
.corporate__list-info li:hover,
.corporate__list-info li:focus,
.services__list li:hover,
.services__list li:focus {
  border-radius: 25px;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.news__list li:active,
.corporate__list-info li:active,
.services__list li:active {
  border-radius: 25px;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
}
.services__list li:hover .services__link-arrow,
.services__list li:active .services__link-arrow,
.services__list li:focus .services__link-arrow {
  rotate: 45deg;
}
.services__item--accent {
  grid-column: span 2;
}
.services__box {
  padding: 0 20px 20px 24px;
  margin-top: auto;
  justify-content: space-between;
  align-items: end;
  gap: 6px;
}
.services__box > a {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f4f7b2;
  border-radius: 50%;
}
.services__box > a img {
  width: 26px;
  height: 26px;
}
.services__name {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--main-bg-color);
}
.services__link,
.hero__link-service {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.services__btn-link {
  max-width: 300px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}
.about__container {
  gap: 40px;
}
.about__wrapper {
  gap: 40px;
}
.about__box-video {
  max-width: 590px;
  width: 100%;
  padding: 178px 0 194px;
  position: relative;
  align-items: center;
  justify-content: center;
  background-image: url(../assets/img/bg-about.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
}
.about__btn-video {
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  background: #f3f4f7b2;
  border-radius: 50%;
}
.about__btn-video img {
  width: 40px;
  height: 40px;
}
.about__text-video {
  max-width: 386px;
  width: 100%;
  padding: 20px 40px;
  position: absolute;
  left: 78%;
  top: 20px;
  font-weight: 700;
  font-size: 32px;
  line-height: var(--line-2);
  color: var(--main-bg-color);
  background: #1b3777b2;
  border-radius: 25px;
}
.about__box-info {
  max-width: 570px;
  width: 100%;
  margin-top: auto;
  gap: 10px;
}
.about__text-info {
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.about__btn-link {
  max-width: 260px;
  margin-top: 30px;
  text-align: center;
}
.about__list {
  gap: 10px;
  justify-content: space-between;
}
.about__list li {
  max-width: 270px;
  width: 100%;
  text-align: center;
  line-height: var(--line-4);
}
.about__info {
  font-weight: 700;
  font-size: 60px;
  line-height: var(--line-11);
}
.about__info-name {
  margin: 6px 0 2px;
  font-weight: 700;
  font-size: 16px;
}
.about__info-descr {
  color: var(--second-text-color);
}
.advantages {
  background: var(--second-bg-color);
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advantages__list li {
  padding: 24px;
  color: var(--main-bg-color);
  background: var(--main-text-color);
  border-radius: 25px;
}
.advantages__list li img {
  width: 40px;
  height: 40px;
}
.advantages__name {
  margin: 20px 0 10px;
  font-weight: 700;
  font-size: 20px;
}
.advantages__descr {
  font-size: 16px;
  line-height: var(--line-4);
}
.gallery__box {
  gap: 30px;
}
.swiper-gallery {
  max-width: 100%;
  width: 100%;
}
.gallery__box-navigation {
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.gallery__box-pag {
  width: 100%;
  gap: 12px;
  align-items: center;
  color: #979ea3;
}
.swiper-gallery .swiper-slide img{
border-radius: 25px;
}
.swiper-gallery-pagination,
.swiper-info-pagination {
  max-width: max-content;
  width: 100%;
  font-size: 20px;
}
.swiper-pagination-current {
  color: var(--main-text-color);
}
.swiper__btn {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--second-bg-color);
  border-radius: 50%;
  cursor: pointer;
}
.swiper__btn img {
  width: 26px;
  height: 26px;
}
.swiper__btn--prev {
  rotate: 180deg;
}
.swiper-button-disabled {
  opacity: 0.6;
}
.gallery__box-btn {
  gap: 20px;
}
.partners__box {
  gap: 40px;
  align-items: center;
}
.swiper-partners .swiper-slide {
  height: 102px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--second-bg-color);
}
.swiper-partners .swiper-slide img {
  height: 100%;
  object-fit: contain;
}
.news__box {
  justify-content: space-between;
}
.news__link {
  height: max-content;
  padding-top: 14px;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: var(--second-text-color);
}
.news__link img {
  width: 26px;
  height: 26px;
}
.news__list {
  gap: 20px;
}
.news__list li {
  width: calc(100% / 3 - 13px);
  position: relative;
  background: var(--second-bg-color);
  border-radius: 25px;
}
.news__list li:hover .news__link-item,
.news__list li:focus .news__link-item {
  color: var(--accent-color);
  text-shadow: 0 0 2px rgba(11, 5, 24, 0.4);
}
.news__list li img {
  border-radius: 25px 25px 0 0;
}
.news__box-list {
	height:100%;
  padding: 20px 24px;
  line-height: var(--line-4);
}
.news__date {
  font-weight: 700;
}
.news__name {
  min-height: 44px;
  margin: 10px 0;
  font-size: 16px;
  color: var(--second-text-color);
}
.news__link-item {
	margin-top:auto;
  text-decoration: underline;
  color: var(--second-text-color);
}
.news__link-page {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
  .vacancies__salary {
    min-width: max-content;
  }
.question {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.question__container {
  gap: 10px;
  justify-content: space-between;
}
.question__box {
  max-width: 538px;
  width: 100%;
}
.question__title {
  margin-bottom: 40px;
}
.question__descr {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--second-text-color);
}
.question__list {
  gap: 40px;
}
.question__list li {
  gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.question__wrap {
  min-width: 40px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 50%;
}
.question__wrap img {
  width: 24px;
  height: 24px;
}
.question__form {
  max-width: 560px;
  width: 100%;
  padding: 40px 60px;
  color: var(--main-bg-color);
  background: #1b3777b2;
  border-radius: 24px;
}
.question__form-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.question__form-title:not(:first-child) {
  margin-top: 32px;
}
input:focus,
textarea:focus {
  outline: none;
}
.question__form input,
.question__form-descr,
.question__form textarea {
  width: 100%;
  padding: 10px 20px;
  font-weight: 500;
  line-height: var(--line-4);
  color: var(--main-bg-color);
  background: none;
  border: 1px solid var(--main-bg-color);
  border-radius: 25px;
}
.question__form input::placeholder,
.question__form textarea::placeholder {
  color: #e5e5e5;
}
.question__form textarea {
  margin-top: 12px;
}
.question__form-list {
  margin: 20px 0 32px;
  gap: 10px;
  justify-content: space-between;
}
.question__form-terms {
  margin-top: 10px;
  font-weight: 300;
  line-height: var(--line-4);
}
.form__btn-type {
  padding: 8px 12px;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  line-height: var(--line-4);
  color: var(--main-bg-color);
  border: 1px solid var(--main-bg-color);
  border-radius: 25px;
}
.form__btn-type svg path {
  fill: var(--main-text-color);
}
.form__btn-type:hover,
.form__btn-type:focus,
.btn--active {
  color: var(--main-text-color);
  background: #f3f4f7;
  box-shadow: 0px 4px 4px 0px #ffffff40;
}
.form__btn-type:active {
  color: #2f3d47;
  background: #e5e5e5;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
}
.base__btn--inh:hover div,
.base__btn--inh:focus div {
  background: var(--main-bg-color);
}
.base__btn--inh:hover svg path,
.base__btn--inh:focus svg path {
  fill: var(--main-text-color);
}
.form__btn-type:hover .question__box-btn,
.form__btn-type:focus .question__box-btn,
.btn--active .question__box-btn {
  background: var(--main-text-color);
}
.form__btn-type:active .question__box-btn {
  background: #2f3d47;
}
.form__btn-type:hover svg path,
.form__btn-type:focus svg path,
.btn--active svg path {
  fill: var(--main-bg-color);
}
.form__btn-type svg {
  width: 16px;
  height: 16px;
}
.form__btn-type:nth-child(2) svg {
  width: 12px;
  height: 10px;
}
.form__btn-type:nth-child(3) svg {
  width: 14px;
  height: 14px;
}

.question__box-btn {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  background: var(--main-bg-color);
  border-radius: 50%;
}
.contacts {
  min-height: 520px;
  position: relative;
}
.contacts .section {
  position: relative;
}
.contacts__link-schem {
  position: absolute;
  bottom: -58px;
  right: 30px;
  font-weight: 700;
  font-size: 20px;
  color: var(--main-text-color);
	  z-index: 2;
  pointer-events: all;
}
.contacts__link-schem--accent {
  bottom: 38px;
}
.contacts__map {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.contacts .section {
  pointer-events: none;
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
}
.contacts__container {
  max-width: 456px;
  width: 100%;
  margin-right: auto;
  padding: 40px 60px;
  position: static;
  z-index: 2;
  background: #ffffffe5;
  border-radius: 25px;
}
.contacts__list {
  gap: 12px;
	pointer-events:all;
}
.contacts__list li {
  gap: 6px;
  color: var(--second-text-color);
}
.contacts__name {
  font-weight: 700;
  font-size: 20px;
}
.contacts__descr {
  font-size: 16px;
  line-height: var(--line-4);
}
.contacts__list-socials {
  gap: 10px;
}
.contacts__list-socials a,
.contacts__link-tel img {
  width: 24px;
  height: 24px;
}
.footer {
  padding-top: 100px;
  padding-bottom: 80px;
  gap: 60px;
}
.footer__box {
  gap: 20px;
  justify-content: space-between;
}
.footer__list-links {
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--second-text-color);
}
.footer__list-links li a {
  font-weight: 400;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.footer__logo {
  max-width: 482px;
  width: 100%;
}
.footer__wrap {
  gap: 40px;
}
.footer__list-info {
  gap: 16px;
}
.footer__list-info li {
  display: flex;
  justify-content: end;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.footer__list-info li a {
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.footer__list-info li img {
  width: 24px;
  height: 24px;
}
.footer__link-email,
.footer__item {
  gap: 6px;
  align-items: center;
}
.footer__list-info li .footer__link-email img {
  width: 20px;
  height: 12px;
}
.footer__list-patrtners {
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.footer__list-patrtners li {
  gap: 6px;
  align-items: center;
  font-size: 12px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.footer__list-patrtners li img {
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.footer__list-patrtners li:nth-child(1) span {
  min-width: 70px;
  max-width: 70px;
}
.footer__list-patrtners li:nth-child(2) span {
  min-width: 125px;
  max-width: 125px;
}
.footer__list-patrtners li:nth-child(3) span {
  min-width: 58px;
  max-width: 58px;
}
.footer__list-patrtners li:nth-child(6) span {
  min-width: 128px;
  max-width: 128px;
}
.footer__list-patrtners li:nth-child(3) img {
  width: 112px;
}
.footer__list-patrtners li:nth-child(5) img {
  width: 104px;
}
.footer__list-patrtners li:nth-child(7) img {
  width: 130px;
}
.footer__list-patrtners li:nth-child(8) img {
  width: 124px;
}
.footer__wrapper {
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.footer__wrapper a {
  color: var(--second-text-color);
}
.footer__list-rules {
  gap: 6px;
}
.footer__list-conf {
  max-width: 298px;
  width: 100%;
  text-align: center;
  gap: 6px;
}
.main {
  position: relative;
}
.breadcrumb {
  padding-top: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.breadcrumb__list {
  flex-wrap: wrap;
  gap: 4px;
  font-weight: 500;
  line-height: var(--line-4);
  color: #979ea3;
}
.breadcrumb__list a {
  color: #979ea3;
}
.breadcrumb__list span {
  color: var(--second-text-color);
}
.text__block {
  max-width: 800px;
  margin: 0 auto;
}
.text__block-container {
  gap: 24px;
}
.text__block-box {
  gap: 10px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.text__block-box a {
  text-decoration: underline;
  color: var(--second-text-color);
}
.services__list--main {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.services__list--main > li {
  width: 386px;
  padding: 40px;
  background: var(--second-bg-color);
  border-radius: 25px;
}
.services__name-title {
  margin-bottom: 24px;
  padding-left: 60px;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--line-2);
}
.services__item::before,
.services__name-title::before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url(../assets/svg/rul.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.services__descr {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: var(--line-4);
  text-align: center;
}
.services__list-info {
  gap: 6px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.services__list-info > li {
  justify-content: space-between;
  align-items: center;
}
.services__item-descr {
  font-weight: 700;
  text-align: right;
}

.services__item .services__item-title {
  max-width: calc(100% - 24px);
  width: 100%;
}
.services__item {
  position: relative;
}
.services__item::before {
  width: 24px;
  height: 24px;
  left: 92%;
  background-image: url(../assets/svg/transaction.svg);
}
.services__box-price {
  margin: 24px 0;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--second-text-color);
}
.services__box-order {
  margin-top: auto;
  gap: 10px;
  align-items: center;
}
.services__link-order {
  min-width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-text-color);
  border-radius: 50%;
}
.stages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
.stages__list li {
  gap: 12px;
}
.stages__number {
  min-width: 64px;
  height: 64px;
  font-weight: 700;
  font-size: 32px;
  line-height: var(--line-2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-bg-color);
  background: var(--main-text-color);
  border-radius: 50%;
}
.stages__box {
  gap: 6px;
  font-weight: 700;
  font-size: 20px;
}
.stages__descr {
  font-weight: 400;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.reviews__box {
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.reviews__box-link {
  gap: 10px;
}
.reviews__link-img {
  max-width: 134px;
}
.reviews__box-info {
  gap: 16px;
  align-items: center;
}
.reviews__box-info img {
  max-width: 124px;
  height: 24px;
}
.reviews__number {
  font-weight: 700;
  font-size: 20px;
  color: var(--second-text-color);
}
.reviews__text {
  font-size: 16px;
  line-height: var(--line-4);
  color: #979ea3;
}
.reviews__btn {
  max-width: 200px;
}
.swiper-review {
  width: 100%;
  margin-top: 24px;
}
.swiper-review .swiper-slide {
  padding: 24px;
  background: var(--second-bg-color);
  border-radius: 25px;
}
.reviews__wrapper {
  gap: 20px;
  align-items: center;
}
.reviews__wrapper > img {
  width: 80px;
  height: 80px;
  border: 4px solid var(--main-text-color);
  border-radius: 50%;
}
.reviews__wrap {
  gap: 10px;
  font-weight: 300;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.review__name {
  font-weight: 700;
  font-size: 20px;
  line-height: var(--line-3);
}
.reviews__wrap > img {
  max-width: 84px;
}
.review__text {
  min-height: 120px;
  margin: 30px 0;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.review__link {
  font-weight: 500;
  font-size: 16px;
  line-height: var(--line-4);
  text-decoration: underline;
}
.faq__title {
  text-align: center;
}
.faq__box {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}
.accordeon__det {
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.accordeon__summ {
  padding: 15px 24px;
  font-weight: 500;
  background: var(--second-bg-color);
  border-radius: 25px;
  position: relative;
  list-style: none;
  cursor: pointer;
}

.accordeon__summ::before {
  width: 16px;
  height: 16px;
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0, -50%);
  background-image: url(../assets/png/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.accordeon__det[open] .accordeon__summ::before {
  rotate: 180deg;
  transform: translate(0, 50%);
}
.accordeon__answer {
  padding: 10px 24px 14px;
}
.text__block-text {
  font-weight: 700;
  font-size: 16px;
  line-height: var(--line-4);
}
.text__block-list {
  gap: 6px;
  font-size: 16px;
  line-height: var(--line-4);
}
.accordeon__list li,
.text__block-list li {
  padding-left: 20px;
  position: relative;
}

.accordeon__list li::before,
.text__block-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 10px;
  left: 8px;

  background: var(--second-text-color);
  border-radius: 50%;
}
.sales__container {
  max-width: 1200px;
  padding: 36px 40px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
}
.sales__box-img {
  max-width: 38%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(0, -50%);
}
.sales__box {
  max-width: 46%;
  width: 100%;
  margin-left: auto;
  color: var(--second-text-color);
}
.sales__text {
  gap: 4px;
  align-items: center;
  font-weight: 700;
  font-size: 32px;
  line-height: var(--line-2);
}
.sales__text--accent {
  font-weight: 700;
  color: var(--main-text-color);
}
.sales__text--big {
  margin-left: 6px;
  font-size: 48px;
  line-height: var(--line-11);
  color: var(--main-text-color);
}

.sales__descr {
  margin: 10px 0 32px;
  font-size: 20px;
}
.sales__text-act {
  font-size: 20px;
}
.sales__btn {
  max-width: 240px;
  margin-top: 16px;
  padding: 12px;
}
.price__box-descr {
  padding: 16px 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: var(--line-4);
  background: var(--second-bg-color);
  border-radius: 25px;
}
.price__descr-img {
  min-width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: var(--main-text-color);
  border-radius: 50%;
}
.price__descr-img > img {
  width: 24px;
  height: 24px;
}
.sales__title {
  font-weight: 700;
  font-size: 32px;
  line-height: var(--line-2);
  color: var(--main-text-color);
}
.sales__container--accent {
  padding: 40px;
}
.sales__box-svg {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  background: var(--main-bg-color);
  border-radius: 50%;
}
.sales__link-btn {
  max-width: 240px;
  margin-right: auto;
  gap: 10px;
  justify-content: center;
}
.catalog__box-text {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px 0;
  gap: 10px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.catalog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog__list li {
  background: var(--second-bg-color);
  border-radius: 25px;
}
.catalog__list li > img {
  border-radius: 25px;
}
.catalog__box-info {
height: 100%;
  padding: 20px 24px 24px;
}
.catalog__name {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.catalog__link-btn {
  display: flex;
  justify-content: center;
}
.catalog__list--pag {
  margin-top: 20px;
  justify-content: center;
}
.swiper-info {
  width: 100%;
}
.catalog__list--pag > li {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: var(--line-4);
  text-align: center;
  color: #979ea3;
}
.catalog__list--pag > li a {
  color: #979ea3;
}
.catalog__list--pag > li a.catalog__link--active {
  color: var(--main-text-color);
}
.catalog__btn-prev {
  rotate: 180deg;
}
.catalog__btn--dis path {
  fill: #e5e5e5;
}
.section--big {
  max-width: 1350px;
  margin-right: 0;
  padding-right: 0;
}

.price__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: 500;
  line-height: var(--line-4);
  border-radius: 25px;
  overflow: hidden;
  background: var(--second-bg-color);
}
.price__table--size {
  width: max-content;
  min-width: 1200px;
}
.price__table--accent {
  table-layout: auto;
}
.price__table--accent tr th:first-child {
  width: 68%;
}

.price__table--accent tr:not(:first-child) td:first-child {
  text-align: left;
}
.price__table th,
.price__table td {
  text-align: center;
  padding: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
.price__table th {
  height: 52px;
  padding: 6px 20px;
  font-weight: 700;
  text-align: center;
  color: var(--main-bg-color);
  background: var(--main-text-color);
}
.price__table th:first-child {
  border-radius: 25px 0 0;
}

.price__table tbody td:first-child {
  font-weight: 700;
  border-right: 4px solid #e5e5e5;
}
.price__table--tariffs tbody td:first-child {
	text-align:left;
  font-weight: 500;
}
.price__table--tariffs tbody .td--center,
.price__table--tariffs tbody td.td--center {
	text-align:center;
}
.price__table--tariffs tbody .td--bold,
.price__table--tariffs tbody td.td--bold {
font-weight: 700;
}
.price__table--accent tbody tr td:first-child {
  font-weight: 400;
}
.price__table--accent tbody tr td.td--accent {
  font-weight: 700;
}
thead tr th {
  border: 1px solid var(--main-bg-color);
}
thead tr th:first-child {
  border-right: 4px solid var(--main-bg-color);
}
.price__table td {
  max-width: 186px;
  width: 186px;
  height: 68px;
  color: var(--second-text-color);
}
.price__table--accent th,
.price__table--accent td {
  text-align: center;
  padding: 16px 10px 16px 24px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
.price__table--accent tbody td:first-child {
  border-right: 1px solid #e5e5e5;
}
.price__table--accent thead tr th:first-child {
  border-right: 1px solid var(--main-bg-color);
}
.hidden-row {
  display: none;
}
.price__btn-table {
  margin: 10px auto 60px;
  font-size: 16px;
  line-height: var(--line-4);
  text-align: center;
  text-decoration: underline;
  color: #2f3d47;
}
.table-container {
  position: relative;
}
.gradient-overlay {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 136px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 83.08%);
  transition: opacity 0.3s ease;
}

.table-container:not(.collapsed) .gradient-overlay {
  opacity: 0;
}

.table-container.collapsed .gradient-overlay {
  opacity: 1;
}
.contacts__box-links {
  gap: 4px;
}
.contacts__link-email,
.contacts__link-telefone {
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.sales--min {
  max-width: 800px;
  width: 100%;
}
.sales__box--min {
  max-width: 56%;
  width: 100%;
}
.sales__container--min {
  padding: 48px 40px;
}
.sales__box-img--min {
  max-width: 305px;
  left: 10px;
  top: 46%;
}
.price__text-info {
  margin: 4px 0 10px;
  font-weight: 700;
  font-size: 20px;
}
.sales__wrapper {
  gap: 20px;
  align-items: center;
}
.sales__wrap {
  max-width: 380px;
  width: 100%;
  padding: 28px 40px;
  color: var(--main-bg-color);
  background: var(--main-text-color);
  border-radius: 25px;
}
.sales__wrap .sales__title {
  color: var(--main-bg-color);
}
.sales__wrap .price__descr {
  margin: 20px 0 40px;
}
.sales__link-btn--accent {
  max-width: 200px;
  border: 1px solid var(--main-bg-color);
}
.price__box-descr--min {
  margin: 60px 0 10px;
}
.price__text-descr--min {
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.rent__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rent__list > li {
  background: var(--second-bg-color);
  border-radius: 25px;
}
.rent__list > li > img {
  border-radius: 25px 25px 0 0;
}
.rent__box {
	height:100%;
  padding: 20px 24px 24px;
  gap: 20px;
}
.rent__name {
  font-weight: 700;
  font-size: 20px;
}
.rent__list-info {
  gap: 8px;
}
.rent__list-info > li {
  justify-content: space-between;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}

.rent__text--accent {
  font-weight: 700;
}
.contacts__wrap-phone {
  gap: 2px;
}
.contacts__wrap-phone a {
  color: var(--second-text-color);
}
.tech {
  gap: 40px;
  align-items: center;
}
.tech__img {
  max-width: 46%;
  border-radius: 25px;
}
.tech__box {
  gap: 40px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.tech__btn {
  max-width: 320px;
}
.tarifs__descr {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.faq__list {
  padding: 0 24px;
  list-style-type: decimal;
  font-weight: 700;
  font-size: 16px;
  line-height: var(--line-4);
}
.faq__list li p {
  font-weight: 400;
}
.faq__list li p .faq__text--accent {
  font-weight: 700;
}
.faq__list li p a {
  text-decoration: underline;
}
.contacts__box-tel {
  gap: 2px;
}
.contacts__box-tel a {
  color: var(--second-text-color);
}
.call__container {
  padding: 40px 60px;
  gap: 40px;
  background: var(--second-bg-color);
  border-radius: 25px;
}
.call__box-adress {
  max-width: 360px;
  width: 100%;
}
.accordeon__summ span {
  max-width: calc(100% - 30px);
  width: 100%;
  display: block;
}
.call__box-contacts {
  width: 100%;
}
.faq__box-call {
  gap: 16px;
}
.faq__box-call .accordeon__summ {
  font-size: 20px;
  background: var(--main-bg-color);
}
.call__text-title {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--line-2);
}
.faq__list-call {
  gap: 8px;
  font-size: 16px;
  line-height: var(--line-4);
}
.faq__list-call a {
  color: var(--second-text-color);
}
.call__text-name {
  margin-bottom: 4px;
  font-weight: 700;
}
.base__btn--inh {
  background: inherit;
  border: 1px solid var(--main-text-color);
}
.call__link-btn {
  max-width: 240px;
  padding: 12px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--main-text-color);
}
.call__link-btn > div {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  background: var(--main-text-color);
  border-radius: 50%;
}
.call__list {
  gap: 16px;
}
.contacts__container-call--hidd {
  display: none;
}
.institution__img {
  margin-bottom: 24px;
  border-radius: 25px;
}
.about__box-info--accent {
  margin-bottom: 75px;
}
.slide-text,
.review__box-navigation {
  display: none;
}
.history {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#sliderText {
  max-width: 848px;
  width: 100%;
	min-height:200px;
  margin: 0 auto 40px;
  padding: 32px 24px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
  background: var(--second-bg-color);
  border-radius: 25px;
}
.swiper__box-history {
  gap: 40px;
  align-items: center;
}
.swiper-history .swiper-wrapper {
  align-items: center;
}
.swiper-history .swiper-slide {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: var(--line-2);
  color: var(--second-text-color);
}
.swiper-history .swiper-slide.swiper-slide-active {
  font-size: 48px;
  line-height: var(--line-11);
  color: var(--accent-color);
}
.main--accent {
  background: var(--second-bg-color);
}
.managment__list {
  gap: 40px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.managment__list > li {
  width: calc(100% / 3 - 14px);
  border-radius: 25px;
}
.managment__list > li img {
  border-radius: 25px 25px 0 0;
}
.managment__box {
  padding: 20px 24px 24px;
  background: var(--main-bg-color);
  border-radius: 0 0 25px 25px;
}
.managment__name {
  font-weight: 700;
  font-size: 20px;
}
.managment__role {
  margin: 4px 0 16px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.managment__box a {
  padding-left: 22px;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
.managment__box a::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url(../assets/svg/telephone.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.opposition .title {
  text-align: center;
}
.opposition__item .opposotion__list-topics,
.opposition__btn {
  display: none;
}

.opposition__list {
  gap: 20px;
}
.opposition__list > li {
  padding: 20px 24px;
  position: relative;
  background: var(--second-bg-color);
  border-radius: 25px;
}
.opposition__name,
.vacancies__salary {
  font-weight: 700;
  font-size: 24px;
  line-height: var(--line-2);
}
.opposotion__list-topics {
  margin-top: 10px;
  padding: 10px 24px;
  gap: 8px;
  line-height: var(--line-4);
  color: var(--second-text-color);
  background: var(--main-bg-color);
  border-radius: 0 25px 25px;
}
.opposotion__list-topics li {
  gap: 4px;
}
.opposition__link-title {
  padding-left: 34px;
  display: block;
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
  color: var(--second-text-color);
}
.opposition__wrapp-img {
  position: relative;
}
.opposition__wrapp-img::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: var(--second-bg-color);
  border-radius: 50%;
  pointer-events: none;
}
.opposition__wrapp-img::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translate(0, -50%);
  background-image: url(../assets/svg/swap-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.opposition__text-size {
  padding-left: 34px;
}
.opposition__btn {
  max-width: 280px;
  margin: 20px 0 10px;
}
.opposition__btn-close {
  margin-top: 10px;
  text-align: left;
  font-size: 16px;
  line-height: var(--line-4);
  text-decoration: underline;
  color: #2f3d47;
}
.corporate__list,
.corporate__list-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.corporate__list {
  margin-bottom: 40px;
}
.corporate__btn,
.links__list a,
.corporate__list-auctions button {
  width: 100%;
  padding: 12px;
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
  background: var(--second-bg-color);
  border-radius: 25px;
}
.links__list a {
  text-align: center;
}
button.corporate__btn--accent,
a.corporate__btn--accent,
.corporate__btn:hover,
.corporate__btn:focus,
.corporate__list-auctions button:hover,
.corporate__list-auctions button:focus,
.links__list a:hover,
.links__list a:focus {
  font-weight: 700;
  color: var(--main-bg-color);
  background: var(--main-text-color);
}
.corporate__list-info li img {
	height:256px;
  border-radius: 25px 25px 0 0;
}
.corporate__box {
  height: 100%;
  padding: 20px 24px 24px;
  gap: 10px;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
  background: var(--second-bg-color);
  border-radius: 0 0 25px 25px;
}
.corporate__link {
  margin-top: auto;
  display: block;
  font-size: 14px;
  text-decoration: underline;
  color: var(--second-text-color);
}

.swiper-info .swiper-slide {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
}
.swiper-info .swiper-slide::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-image: url(../assets/svg/search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background: rgba(5, 27, 32, 0.7);
  z-index: 999;
}
.img-preview {
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  padding: 10px;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#preview-img {
  max-height: 500px;
  display: block;
  object-fit: contain;
}

.preview-close {
  padding: 6px;
  position: absolute;
  top: -30px;
  right: 20px;
  cursor: pointer;
  background: var(--main-bg-color);
  border-radius: 50%;
}
.title--accent {
  margin-bottom: 40px;
  font-size: 32px;
  line-height: var(--line-2);
}
.text__bloc-list--num {
  gap: 10px;
  font-size: 16px;
  line-height: var(--line-4);
}
.gallery__box-accent {
  margin: 40px 0;
}
.text__block-box .text__link--nound {
  text-decoration: none;
}
.information__img {
  max-width: 200px;
  height: 200px;
  margin: 0 auto 40px;
}
.text__block-list--numeric {
  padding-left: 20px;
  gap: 10px;
  list-style-type: decimal;
}
.opposotion__list-topics--cont {
  margin: 0;
  padding: 0;
}
.links__list {
  grid-template-columns: repeat(4, 1fr);
}
.information__img-bsg {
  max-width: 100%;
  height: 116px;
}
.information__img-prof {
  max-width: 200px;
  height: 200px;
}
a.text__block-link--accent {
  font-weight: 500;
  color: var(--main-text-color);
}
.corporate__list-auctions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.auctions__text {
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--second-text-color);
}
[data-text-auctions],.opposition__wrapp-img--psevd:before,.opposition__wrapp-img--psevd:after {
  display: none;
}

[data-text-auctions="1"] {
  display: flex;
}
.opposition__list-vacancies {
  margin-top: 40px;
}
.vacancies__box {
  justify-content: space-between;
}
.vacansies__text-item {
  padding-left: 18px;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: var(--line-4);
}
.vacansies__text-item::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: 0;
  background: var(--main-text-color);
  border-radius: 50%;
}
.opposotion__list-topics--vacancies {
  gap: 4px;
}
.opposotion__list-topics--vacancies ul {
  padding-left: 10px;
}
.text__block-box a.text__accent,
.text__accent {
  color: var(--main-text-color);
}
.title--mar {
  margin-bottom: 40px;
}
.stock__name {
  font-weight: 700;
  font-size: 16px;
  line-height: var(--line-4);
  color: var(--main-text-color);
}
.information__img--year {
  max-width: 400px;
  height: auto;
}
.price__table--appeals tbody tr td {
  padding: 6px 10px 6px 24px;
  text-align: left;
}
.price__table.price__table--appeals tbody td:first-child {
  font-weight: 500;
  border-right: 1px solid #e5e5e5;
}
.price__table--appeals thead tr th:first-child {
  border-right: 1px solid var(--main-bg-color);
}
.price__table--appeals tr th:first-child {
  width: 56%;
}
.text__block--min {
  padding: 0 24px;
}
.opposition__list.opposition__list-appeals > li {
  font-weight: 400;
  background: var(--main-bg-color);
  border-radius: none;
}
.opposition__list.opposition__list-appeals > li .vacansies__text-item {
  font-weight: 400;
}
.opposition__list-appeals .opposotion__list-topics--vacancies {
  background: var(--second-bg-color);
  border-radius: 0 25px 25px 25px;
}
.opposition__list-appeals .opposotion__list-topics--vacancies .text__block-list {
  gap: 0;
}
.not__found {
  text-align: center;
}
.not__found-title {
  font-weight: 700;
  font-size: 100px;
  line-height: var(--line-11);
}
.not__found-descr {
  margin: 40px 0 10px;
  font-weight: 700;
  font-size: 20px;
}
.not__found-text {
  font-weight: 500;
  font-size: 16px;
  line-height: var(--line-4);
}
.not__found-link {
  max-width: 300px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}
.header__wrapper-links {
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.header__nav {
  gap: 10px;
}
#burger,
.top__bar-list li.desc--hidd,
.top__bar-list a.desc--hidd,
.desc--hidd,
.advantages__item--mob,
.footer--mob,
.mob--sea {
  display: none;
}
.header__list-menu {
  width: 90%;
}
.opposition__list.opposition__list-appeals > li {
  padding-top: 0;
  padding-bottom: 0;
}
.list-services--drop {
  max-width: 305px;
  padding: 0;
  position: static;
}
.list-services--drop__accent {
  max-width: 1098px;
  top: 100%;
  left: 0;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 40px 30px;
}
.list-services--drop__accent .nav-item {
  gap: 14px;
  display: flex;
  flex-direction: column;
}
.list-services--drop__accent .nav-item > a {
  font-weight: 700;
}
.header__list .list-services--drop__accent > li a {
  padding: 0;
}
.header__list .list-services--drop li a {
  font-weight: 400;
  color: var(--second-text-color);
}
.header__list > .nav-item--menu a.nav__link--accent:hover,
.header__list > li a.nav__link--accent.open {
  background: var(--accent-color);
}
.header__list > .nav-item--menu a.nav__link--accent:hover img,
.header__list > li a.nav__link--accent.open img {
  rotate: 45deg;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.dialog {
  max-width: 560px;
  width: 100%;
  padding: 80px 60px 60px;
  background: var(--second-bg-color);
  border-radius: 25px;
  border: none;
  outline: none;
}
.dialog__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-bg-color);
  border-radius: 50%;
}
.dialog__close img {
  width: 26px;
  height: 26px;
}
.order__form-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: var(--main-text-color);
}
.order__form-descr {
  margin: 16px 0 40px;
  font-size: 16px;
  line-height: var(--line-4);
  text-align: center;
  color: var(--second-text-color);
}
.order__form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
  line-height: var(--line-4);
}
.order__form input,
.order__form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-weight: 500;
  line-height: var(--line-4);
  border: 1px solid #2f3d47;
  border-radius: 0 25px 25px 25px;
  background: inherit;
  color: var(--second-text-color);
}
.order__form textarea {
  min-height: 96px;
}

.order__form input::placeholder .order__form textarea::placeholder {
  color: #979ea3;
}
.order__form-text {
  margin-bottom: 12px;
}
.order__btn-type {
  color: var(--main-text-color);
  border: 1px solid var(--main-text-color);
  background: var(--second-bg-color);
}
.order__box-btn {
  background: var(--main-text-color);
}
.order__btn-type:hover,
.order__btn-type:focus,
.btn__order--active {
  color: var(--main-bg-color);
  background: var(--accent-color);
  box-shadow: 0px 4px 4px 0px #00000040;
}
.order__btn-type:active {
  background: #979ea3;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
}
.order__btn-type:hover .order__box-btn,
.order__btn-type:focus .order__box-btn,
.btn__order--active .order__box-btn {
  background: var(--second-bg-color);
}
.order__btn-type:hover svg path,
.order__btn-type:focus svg path,
.order__btn-type:active .order__box-btn svg path {
  fill: var(--main-text-color);
}
.order__btn-type svg path {
  fill: var(--main-bg-color);
}
.order__btn-type.btn__order--active svg path {
  fill: var(--main-text-color);
}
.order__form-terms {
  margin-top: 10px;
  font-weight: 300;
  line-height: var(--line-4);
  color: #2f3d47;
}
.order__form-list {
  margin: 20px 0 40px;
}
.dialog__descr--success {
  margin-bottom: 0;
}
.footer__list-info li a.header__link-tel {
  font-size: 24px;
}
@media (min-width: 1441px) {
  .section--big {
    margin-right: auto;
    padding-left: 80px;
  }
}
@media (min-width: 1350px) {
  .hero {
    background-position: center calc(-10px - 0.5 * (100vw - 1350px));
  }
}
.services__box-order a:first-child {
width:100%;}
@media (min-width: 1280px) {
	.rent__list >li img{
		max-height:250px;
height: 100%;
	}
  .nav-item > a::before {
    transition: transform 0.3s ease;
  }
  li:hover > a svg path,
  .catalog__link-all:hover svg path,
  .header__link-trash:hover svg path {
    stroke: var(--second-accent-color);
  }
  .nav-item:hover > a svg {
    transform: rotate(180deg);
  }

  .nav-item:hover .list--drop,
  .nav-item:focus .list--drop,
  .list--drop:hover .list--drop,
  .list--drop:focus .list--drop {
    display: flex !important;
    opacity: 1;
  }
	.question__list {
    gap: 20px;
flex-direction: column;
}
}

/* @media (max-width: 1790px) { */
  .table-container {
    overflow-x: auto;
  }
/* } */
@media (max-width: 1280px) {
  .section,
  .sales {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container--top {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .footer__list-info li a.header__link-tel {
    font-size: 20px;
  }
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 12px;
  }
  .header__inp-search {
    padding: 8px 8px 8px 42px;
  }
  .header__labl-search::before {
    width: 16px;
    height: 16px;
    left: 16px;
  }
  .header__inp-search,
  .header__inp-search::placeholder {
    font-size: 12px;
  }
  .header__link-logo {
    max-width: 242px;
  }
  .header__link-geely {
    max-width: 164px;
  }
  .header__list > li a.nav__link--accent {
    padding: 12px 14px;
  }
  .header__link-tel {
    font-size: 20px;
  }
  .select-selected,
  .select-items li {
    font-size: 16px;
  }
  .header__list-menu {
    display: none;
  }
  .header {
    position: relative;
  }
  .header__wrapper-links {
    position: absolute;
    bottom: 18px;
    right: 20px;
    gap: 32px;
  }
  .wrap {
    display: flex;
  }
  #burger {
    width: 40px;
    height: 40px;
    padding: 13px 12px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: var(--main-text-color);
    border-radius: 50%;
  }
  .agreement__list-info {
    gap: 30px;
  }
  .burger span {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--main-bg-color);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .hedaer__box {
    position: relative;
  }
  #nav-menu.open {
    display: flex;
    flex-direction: column;
    gap: 30px;
    left: 0;
  }
  .nav-menu {
    width: 300px;
    padding: 10px 40px 30px 20px;
    position: absolute;
    top: 100%;
    left: -320px;
    display: flex;
    transition: left 0.3s ease;
    z-index: 999;
    overflow: hidden;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.9) 26.69%
    );
    border-radius: 0 0 25px 25px;
  }
  .header__list {
    align-items: baseline;
    font-size: 16px;
    gap: 10px;
  }
  .header__list > li a {
    padding: 0;
  }
  .list--drop {
    margin: 10px 0;
    padding: 0 0 0 16px;
    position: static;
    opacity: 1;
    gap: 10px;
    font-size: 16px;
  }

  .list--drop .list--drop {
    margin-top: 10px;
    background: none;
  }
  .header__list > li {
    padding-bottom: 0;
  }
  .header__nav {
    align-items: center;
  }
  .header__link-drop.open img {
    margin-top: 4px;
    rotate: 180deg;
  }
  .hero__container {
    padding-top: 176px;
    padding-bottom: 34px;
    gap: 40px;
  }
  .hero__box-container {
    flex-direction: column;
    gap: 40px;
  }
  .hero__box {
    max-width: 100%;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__descr {
    margin-top: 16px;
  }
  .hero__list {
    margin: 20px 0 24px;
  }
  .hero__box-services {
    max-width: 100%;
    flex-direction: row;
    gap: 20px;
  }

  .hero__box-services1,
  .hero__box-services2 {
    width: calc(50% - 10px);
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
  }
  .hero__btn-services1,
  .base__btn-link {
    margin-top: auto;
  }
  .hero__text {
    margin: 6px 0 16px;
  }
  .hero__list-advantages li {
    max-width: 270px;
    gap: 8px;
    font-size: 16px;
  }
  .title {
    margin-bottom: 40px;
    font-size: 32px;
  }
  .services__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .services__list li {
    min-height: 230px;
  }
  .services__box {
    padding: 0 20px 20px;
    gap: 2px;
  }
  .services__name {
    min-height: 44px;
    font-size: 16px;
  }
  .services__btn-link {
    margin: 20px auto 0;
  }
  .about__box-video {
    padding: 165px 0;
  }
  .about__btn-video {
    width: 62px;
    height: 62px;
  }
  .about__btn-video img {
    width: 30px;
    height: 30px;
  }
  .about__wrapper {
    gap: 20px;
  }
  .about__text-video {
    max-width: 396px;
    padding: 16px 24px;
    left: 82%;
    top: 16px;
    font-size: 20px;
  }
  .about__box-info {
    gap: 6px;
  }
  .about__text-info {
    font-size: 14px;
  }
  .about__btn-link {
    margin-top: 14px;
  }
  .about__container {
    gap: 32px;
  }
  .about__list,
  .gallery__box {
    gap: 20px;
  }
  .about__info {
    font-size: 48px;
  }
  .about__info-name {
    margin: 4px 0 2px;
  }
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__list li {
    padding: 20px;
  }
  .advantages__name {
    margin: 16px 0 6px;
    font-size: 16px;
  }
  .advantages__descr,
  .contacts__descr,
  .footer__list-info li a,
  .question__list li,
  .footer__list-info li,
  .text__block-box,
  .text__block-list,
  .sales__text-act,
  .reviews__text,
  .review__link,
  .services__descr,
  .services__list-info,
  .stages__descr,
  .accordeon__det,
  .contacts__link-email,
  .contacts__link-telefone,
  .price__text-descr--min,
  .rent__list-info > li,
  .faq__list,
  .faq__box-call .accordeon__summ,
  .faq__list-call,
  .managment__role,
  .opposition__link-title,
  .corporate__btn,
  .links__list a,
  .corporate__list-auctions button,
  .text__block-text,
  .auctions__text,
  .vacansies__text-item,
  .not__found-text {
    font-size: 14px;
  }
  .partners__box {
    gap: 16px;
  }
  .vacansies__text-item {
    padding-left: 15px;
  }
  .contacts__name,
  .reviews__number,
  .swiper-gallery-pagination,
  .swiper-info-pagination {
    font-size: 16px;
  }
  .gallery__text,
  .news__date,
  .news__link-item,
  .opposition__text-size,
  .stock__name,
  .corporate__link {
    font-size: 12px;
  }
  .news__link {
    padding-top: 4px;
    gap: 6px;
    font-size: 16px;
  }
  .news__box-list,
  .managment__box,
  .catalog__box-info,
  .rent__box,
  .corporate__box {
    padding: 16px 20px 20px;
  }
  .news__name {
    min-height: 40px;
    margin: 8px 0;
    font-size: 14px;
  }
  .question__container {
    max-width: 600px;
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }
  .question__title {
    margin-bottom: 24px;
  }
  .question__box {
    max-width: 510px;
    margin: 0 auto;
  }
  .question__descr {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .contacts__container {
    max-width: 350px;
    padding: 24px 40px;
  }
  .contacts__list {
    gap: 10px;
  }
  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 40px;
  }
  .footer__list-links {
    gap: 8px;
    font-size: 16px;
  }
  .footer__logo {
    max-width: 290px;
  }
  .footer__list-info {
    gap: 10px;
  }
  .footer__list-patrtners {
    gap: 20px 30px;
    flex-wrap: wrap;
  }
  .sales__container {
    padding: 22px 28px;
  }
  .sales__box-img {
    left: -8px;
  }
  .sales__text {
    font-size: 24px;
  }
  .sales__text--big {
    margin-left: 0;
    font-size: 32px;
  }
  .sales__descr {
    margin: 10px 0 20px;
    font-size: 14px;
  }
  .section--big {
    padding-right: 0;
  }
  .price__btn-table {
    margin: 10px auto 40px;
    font-size: 14px;
  }
  .price__descr-img {
    min-width: 32px;
    height: 32px;
  }
  .price__descr-img > img {
    width: 20px;
    height: 20px;
  }
  .price__box-descr {
    padding: 12px 20px;
    font-size: 14px;
  }
  .sales__title,
  .services__name-title {
    font-size: 20px;
  }
  .sales__container {
    min-height: 236px;
    display: flex;
    align-items: center;
  }
  .catalog__list,
  .rent__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .catalog__list li {
    width: 354px;
  }

  .catalog__name {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .catalog__list--pag > li {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .reviews__box-link,
  .reviews__wrap,
  .text__block-box,
  .contacts__wrap-tel {
    gap: 8px;
  }
  .review__list {
    margin-top: 20px;
  }
  .review__text {
    margin: 20px 0;
    font-size: 14px;
  }
  .text__block-list {
    gap: 2px;
  }
  .text__block-container,
  .tech {
    gap: 20px;
  }
  .services__list--main > li {
    width: 354px;
    padding: 28px;
  }
  .services__box-price {
    margin: 20px 0;
    font-size: 16px;
  }
  .stages__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .stages__list li {
    gap: 10px;
  }
  .accordeon__summ {
    padding: 15px 20px;
  }
  .accordeon__answer {
    padding: 10px 20px;
  }
  .sales--min {
    max-width: 100%;
    padding: 0;
  }
  .sales__wrapper {
    flex-direction: column;
  }
  .sales__wrap {
    max-width: 100%;
  }
  .rent__box {
    gap: 16px;
  }
  .contacts__wrap-phone {
    flex-direction: column;
  }
  .contacts__link-schem {
    bottom: -48px;
    right: 20px;
    font-size: 16px;
    line-height: var(--line-4);
  }
  .contacts__link-schem--accent {
    bottom: 28px;
  }
  .tech__box {
    gap: 24px;
    font-size: 14px;
  }
  .tarifs__descr {
    font-size: 16px;
    text-align: center;
  }
  .call__container {
    padding: 20px 28px;
    gap: 20px;
  }
  .call__text-title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .faq__box-call {
    gap: 12px;
  }
  .managment__list > li {
    width: 354px;
  }
  .opposition__list > li {
    padding: 16px 20px;
  }
  .opposition__name,
  .vacancies__salary {
    font-size: 20px;
  }
  .opposotion__list-topics {
    margin-top: 8px;
  }
  .opposition__btn {
    max-width: 280px;
    margin: 18px 0 10px;
  }
  .opposition__btn-close {
    margin-top: 8px;
    font-size: 14px;
  }
  .corporate__box {
    gap: 8px;
    font-size: 14px;
  }
  .links__list a {
    height: 100%;
    align-items: center;
  }
  .corporate__list {
    margin-bottom: 24px;
  }
  .text__bloc-list--num {
    gap: 8px;
    font-size: 14px;
  }
  .information__img {
    max-width: 160px;
    height: 160px;
    margin: 0 auto 24px;
  }
  .information__img-bsg {
    max-width: 100%;
    height: 106px;
  }
  .opposition__list-vacancies {
    margin-top: 24px;
  }
  .information__img--year {
    max-width: 364px;
    height: 364px;
  }
  .opposition__list.opposition__list-appeals > li {
    padding-top: 0;
    padding-bottom: 0;
  }
  .not__found-title {
    font-size: 80px;
  }
  .not__found-descr {
    margin: 32px 0 8px;
    font-size: 16px;
  }
  .not__found-link {
    margin: 32px auto 0;
  }
  .list-services--drop__accent {
    margin: 0;
    padding: 10px 20px 24px;
    position: absolute;
    max-width: 640px;
    top: 62px;
    left: -20px;
    gap: 20px;
  }
  .list-services--drop {
    max-width: 186px;
    margin: 0;
    padding: 0;
    position: static;
    gap: 6px;
  }
  .list-services--drop__accent .nav-item {
    gap: 0;
  }
  .list-services--drop__accent .nav-item > a,
  .header__list .list-services--drop__accent > li a {
    font-size: 14px;
  }
  .review__box-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .review__box-btn {
    gap: 20px;
  }
  .price__text-info {
    font-size: 16px;
  }
  .swiper-history .swiper-slide {
    font-size: 24px;
  }
  .swiper-history .swiper-slide.swiper-slide-active {
    font-size: 32px;
  }
  #sliderText {
    margin: 0 auto 24px;
    padding: 28px 20px;
    font-size: 14px;
  }
  .dialog__descr--success {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .section,
  .sales {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container--top {
    padding-top: 48px;
    padding-bottom: 0;
  }
  .not__found-title {
    font-size: 60px;
  }
  .not__found-descr {
    margin: 20px 0 6px;
    font-size: 14px;
  }
  .not__found-link {
    margin: 32px auto 0;
  }
  .not__found-text {
    font-size: 12px;
  }
  .not__found-link {
    margin: 20px auto 0;
  }
  .base__btn {
    padding: 14px;
    font-size: 14px;
  }
  .mob--hid {
    display: none;
  }
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }
  .header__container {
    gap: 22px;
  }
  #burger {
    width: 32px;
    height: 32px;
    padding: 10px 9px;
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .header__nav {
    gap: 20px;
  }
  .header__list > li a.nav__link--accent {
    padding: 8px 12px;
  }
/*   .gradient-overlay--geely {
    width: 1200px !important;
  } */
  .nav-menu {
    width: 242px;
    padding: 10px 42px 24px 10px;
    top: 100%;
  }

  .list--drop {
    margin: 8px 0;
    padding: 0 0 0 10px;
    gap: 8px;
    font-size: 14px;
  }
  .mob--sea {
    display: flex;
  }
  #nav-menu.open .nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .header__list-socials {
    margin-top: 8px;
  }

  .select-items li:first-child::before,
  .custom-select::before {
    width: 16px;
    height: 16px;
    padding-left: 22px;
  }
  .header__list > li a,
  .select-selected,
  .select-items li,
  .header__list,
  .base__btn-link,
  .about__info-name,
  .news__link,
  .contacts__name,
  .reviews__number,
  .swiper-gallery-pagination,
  .swiper-info-pagination,
  .footer__list-links,
  .footer__list-links li a {
    font-size: 14px;
  }
  .custom-select {
    flex-direction: column;
    gap: 8px;
  }
  .select-items {
    position: static;
  }
  .header__wrapper-links {
    bottom: 15px;
    right: 10px;
    gap: 20px;
  }
  .header__link-tel {
    font-size: 16px;
  }
  .header__link-tel img,
  .services__box > a img,
  .swiper__btn img {
    width: 16px;
    height: 16px;
  }
  .header__link-eye img {
    width: 24px;
    height: 24px;
  }
  .hero__container {
    padding-top: 118px;
    padding-bottom: 22px;
    gap: 20px;
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__descr {
    margin-top: 8px;
    font-size: 16px;
  }
  .hero__list {
    margin: 10px 0 16px;
    gap: 6px;
    font-size: 14px;
  }
  .hero__box-services {
    flex-direction: column;
    gap: 10px;
  }
  .hero__box-services1,
  .hero__box-services2 {
    width: 100%;
    padding: 16px 20px;
  }
  .hero__name {
    font-size: 20px;
  }
  .hero__text {
    margin: 4px 0 10px;
    font-size: 14px;
  }
  .hero__btn-services1 {
    padding: 10px;
  }
  .hero__box-container {
    gap: 96px;
  }
  .hero__list-advantages {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero__list-advantages li {
    max-width: 140px;
    gap: 6px;
    font-size: 14px;
  }
  .hero__wrap-img {
    width: 40px;
    height: 40px;
  }
  .hero__wrap-img img {
    width: 26px;
    height: 26px;
  }
  .title {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .services__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .services__box {
    padding: 0 10px 12px;
    gap: 2px;
  }
  .services__box > a,
  .about__btn-video img,
  .swiper__btn {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
  .services__name {
    min-height: auto;
    font-size: 14px;
    hyphens: auto;
    overflow-wrap: break-word;
  }
  .services__list li {
    min-height: 144px;
  }
  .about__wrapper {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
  .about__box-video {
    max-width: 100%;
    padding: 116px 0;
  }
  .about__text-video {
    max-width: 200px;
    padding: 10px 24px;
    left: auto;
    right: 0;
    top: -20px;
    font-size: 16px;
    line-height: var(--line-4);
  }
  .about__btn-video {
    width: 48px;
    height: 48px;
  }
  .about__text-info,
  .about__info-descr {
    font-size: 12px;
  }
  .about__box-info,
  .contacts__list li {
    gap: 4px;
  }
  .about__btn-link {
    max-width: 300px;
    margin-top: 10px;
  }
  .about__container {
    gap: 20px;
  }
  .about__list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .about__list li {
    max-width: 140px;
  }
  .about__info {
    font-size: 32px;
  }
  .advantages__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .advantages__list li img,
  .question__wrap {
    min-width: 32px;
    width: 32px;
    height: 32px;
  }
  .advantages__list li {
    padding: 14px;
  }
  .advantages__name {
    margin: 8px 0 6px;
    font-size: 14px;
  }
  .advantages__descr,
  .contacts__descr,
  .footer__list-info li a,
  .question__list li,
  .footer__list-info li,
  .text__block-box,
  .text__block-list,
  .sales__text-act,
  .reviews__text,
  .review__link,
  .services__descr,
  .services__list-info,
  .stages__descr,
  .accordeon__det,
  .contacts__link-email,
  .contacts__link-telefone,
  .price__text-descr--min,
  .rent__list-info > li,
  .faq__list,
  .faq__box-call .accordeon__summ,
  .faq__list-call,
  .managment__role,
  .opposition__link-title,
  .corporate__btn,
  .links__list a,
  .corporate__list-auctions button,
  .text__block-text,
  .auctions__text,
  .vacansies__text-item,
  .not__found-text,
  .question__form-descr,
  .question__form input,
  .question__form textarea,
  .question__form input::placeholder,
  .question__form textarea::placeholder,
  .review__date,
  .price__text-info,
  .price__descr,
  .contacts__wrap-phone {
    font-size: 12px;
  }
  .price__text-info {
    margin: 8px 0 2px;
  }
  .partners__box {
    display: grid;
    grid-template-areas:
      "b b"
      "a c";
    gap: 10px;
  }
  .swiper-partners-button-prev {
    margin-left: auto;
    grid-area: a;
  }
  .swiper-partners-button-next {
    grid-area: c;
  }
  .swiper-partners {
    width: 100%;
    grid-area: b;
  }
  .news__link img,
  .question__wrap img {
    width: 20px;
    height: 20px;
  }
  .news__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .news__list li {
    width: 300px;
  }
  .news__box-list,
  .managment__box,
  .catalog__box-info,
  .rent__box,
  .corporate__box {
    padding: 8px 10px 14px;
  }
  .news__name {
    min-height: auto;
  }
  .question__box {
    padding: 0 25px;
  }
  .question__descr {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .question__list {
    flex-direction: column;
    gap: 6px;
  }
  .question__list li,
  .contacts__list {
    gap: 8px;
  }
  .question__container {
    gap: 96px;
  }
  .question__form {
    padding: 28px 20px;
  }
  .question__form-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .question__form-title:not(:first-child) {
    margin-top: 20px;
  }
  .question__form-list {
    margin: 10px 0 20px;
    gap: 8px;
    flex-direction: column;
  }
  .form__btn-type {
    width: 100%;
    justify-content: center;
  }
  .question__form-terms {
    margin-top: 8px;
    font-size: 12px;
  }
  .contacts__container {
    max-width: 184px;
    padding: 16px 20px;
  }
  .question__title {
    margin-bottom: 10px;
  }
  .contacts__link-schem {
    bottom: -30px;
    right: 10px;
    font-size: 14px;
  }
  .contacts__link-schem--accent {
    bottom: 18px;
  }
  .contacts {
    min-height: 406px;
  }
  .about__list,
  .gallery__box,
  .gallery__box-btn {
    gap: 10px;
  }
  .gallery__box-pag {
    gap: 8px;
  }
  .footer {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 24px;
  }
  .footer__box {
    padding: 0 30px;
    flex-direction: column-reverse;
  }
  .footer__wrap {
    gap: 20px;
    order: 3;
  }
  .footer__box .footer__list-links:nth-child(1) {
    order: 2;
  }

  .footer__list-info,
  .footer__list-links {
    gap: 6px;
  }
  .footer__list-info li {
    justify-content: start;
  }
  .footer__list-patrtners {
    gap: 10px;
  }
  .footer__list-patrtners li {
    font-size: 10px;
    gap: 4px;
  }
  .footer__list-info li a.header__link-tel {
    font-size: 16px;
  }
  .footer__list-patrtners li img {
    height: 40px;
    width: 40px;
  }
  .footer__list-patrtners li:nth-child(3) img {
    width: 85px;
  }
  .footer__list-patrtners li:nth-child(5) img {
    width: 80px;
  }
  .footer__list-patrtners li:nth-child(7) img {
    width: 100px;
  }
  .footer__list-patrtners li:nth-child(8) img {
    width: 96px;
  }
  .footer__wrapper {
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
    justify-content: center;
  }
  .footer__list-rules,
  .footer__list-conf {
    gap: 2px;
  }
  .list-services--drop__accent {
    width: 268px;
    padding: 10px 10px 24px 10px;
    flex-direction: column;
    top: 38px;
    left: -12px;
  }
  .list-services--drop {
    max-width: 100%;
    width: 100%;
  }
  .list-services--drop__accent .nav-item > a {
    width: max-content;
    position: relative;
    display: inline-block;
  }
  .list-services--drop__accent .nav-item > a::after {
    width: 8px;
    height: 8px;
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translate(0, -50%);
    background-image: url(../assets/png/arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .list-services--drop__accent .nav-item > a.open::after {
    rotate: 180deg;
    transform: translate(0, 50%);
  }
  .reviews__box-link,
  .text__block-box,
  .contacts__wrap-tel {
    gap: 6px;
  }
  .services__list--main {
    gap: 12px;
  }
  .services__list--main > li {
    width: 300px;
    padding: 24px;
  }
  .services__name-title::before,
  .services__link-order {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .services__link-order svg {
    width: 20px;
    height: 20px;
  }
  .services__item::before {
    width: 16px;
    height: 16px;
  }
  .sales__title,
  .services__name-title {
    font-size: 16px;
  }
  .services__name-title {
    margin-bottom: 20px;
    padding-left: 48px;
  }
  .services__list-info {
    gap: 2px;
  }
  .services__box-price {
    margin: 16px 0;
    font-size: 14px;
  }
  .services__btn-order {
    padding: 10px;
  }
  .stages__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .stages__number {
    min-width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .stages__box {
    gap: 4px;
    font-size: 16px;
  }
  .reviews__box {
    flex-wrap: wrap;
  }
  .reviews__link-img {
    max-width: 114px;
  }
  .reviews__box-info {
    gap: 10px;
  }
  .reviews__box-info img {
    max-width: 84px;
    height: auto;
  }
  .reviews__text {
    margin-left: 25px;
  }
  .swiper-review .swiper-slide {
    padding: 14px;
  }
  .reviews__wrapper {
    gap: 14px;
  }
  .reviews__wrapper > img {
    width: 62px;
    height: 62px;
  }
  .reviews__wrap {
    gap: 4px;
  }
  .review__name {
    font-size: 16px;
  }
  .reviews__wrap > img {
    max-width: 64px;
  }
  .review__text {
    min-height: auto;
    margin: 14px 0;
    font-size: 12px;
  }
  .review__box-navigation {
    margin-top: 10px;
  }
  .review__box-btn {
    gap: 10px;
  }
  .accordeon__summ {
    padding: 10px 14px;
  }
  .accordeon__summ::before {
    width: 12px;
    height: 12px;
    right: 14px;
  }
  .faq__box {
    gap: 12px;
  }
  .accordeon__answer {
    padding: 6px 14px;
  }
  .accordeon__summ span {
    font-size: 14px;
  }
  .accordeon__list li,
  .text__block-list li {
    padding-left: 16px;
  }
  .accordeon__list li::before,
  .text__block-list li::before {
    width: 3px;
    height: 3px;
    top: 7px;
    left: 7px;
  }
  .sales__container {
    padding: 16px 20px;
  }
  .sales__box {
    max-width: 46%;
    width: 100%;
    margin-left: auto;
    color: var(--second-text-color);
  }
  .sales__box-img {
    max-width: 48%;
  }
  .sales__text {
    font-size: 20px;
  }
  .sales__text--big {
    font-size: 24px;
  }
  .sales__descr {
    margin: 6px 0 14px;
    font-size: 12px;
  }
  .sales__btn {
    max-width: 268px;
    margin-top: 6px;
    padding: 10px;
  }
  .price__table td,
  .price__table tr {
    max-width: 140px;
    width: 140px;
    font-size: 12px;
  }
  .section--big {
    padding-right: 0;
  }
  .price__btn-table {
    margin: 10px auto 20px;
    font-size: 12px;
  }
  .price__box-descr {
    padding: 10px;
    gap: 10px;
    font-size: 12px;
  }
  .price__descr-img {
    min-width: 24px;
    height: 24px;
  }
  .price__descr-img > img {
    width: 14px;
    height: 14px;
  }
  .catalog__box-text {
    margin: 0 auto 10px 0;
    gap: 6px;
    font-size: 12px;
  }
  .catalog__name {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .catalog__list--pag {
    margin-top: 10px;
  }
  .catalog__list--pag > li {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .catalog__btn-arrow svg {
    width: 10px;
    height: 10px;
  }
  .contacts__box-links {
    flex-direction: column;
  }
  .sales__wrapper,
  .rent__box {
    gap: 12px;
  }

  .sales__wrap {
    padding: 14px 16px;
  }
  .sales__title {
    font-size: 20px;
  }
  .sales__wrap .price__descr {
    margin: 6px 0 14px;
  }
  .sales__link-btn--accent {
    max-width: 174px;
  }
  .rent__name {
    font-size: 16px;
  }
  .rent__list-info {
    gap: 6px;
  }
  .hero__btn--geely {
    margin-top: 16px;
  }
  .tech__box {
    gap: 16px;
    font-size: 12px;
  }
  .tech {
    flex-direction: column;
  }
  .faq__list {
    padding: 0 14px;
  }
  .call__container {
    padding: 14px;
    gap: 24px;
    flex-direction: column;
  }
  .call__link-btn {
    max-width: 200px;
    padding: 8px;
  }
  .about__box-info--accent {
    margin-bottom: 0;
  }
  .swiper-history .swiper-slide {
    font-size: 20px;
  }
  .swiper-history .swiper-slide.swiper-slide-active {
    font-size: 24px;
  }
  #sliderText {
	  min-height:300px;
    margin: 0 auto 20px;
    padding: 20px 16px;
    font-size: 12px;
  }
  .swiper__box-history {
    gap: 22px;
  }
  .breadcrumb {
    padding-top: 5px;
  }
  .managment__list {
    gap: 12px;
  }
  .managment__name,
  .opposition__name,
  .vacancies__salary {
    font-size: 16px;
  }
  .managment__role {
    margin: 4px 0 10px;
  }
  .managment__box a {
    padding-left: 20px;
    font-size: 14px;
  }
  .breadcrumb__list,
  .opposotion__list-topics li {
    gap: 2px;
    font-size: 12px;
  }
  .opposition__list > li,
  .opposition__btn,
  .corporate__btn {
    padding: 10px;
  }
  .opposotion__list-topics {
    margin-top: 4px;
    padding: 10px;
    gap: 4px;
  }
  .opposition__wrapp-img::before {
    width: 20px;
    height: 20px;
  }
  .opposition__wrapp-img::after {
    left: 2px;
  }
  .opposition__link-title,
  .opposition__text-size {
    padding-left: 24px;
  }
  .opposition__btn {
    margin: 10px 0;
  }
  .corporate__list,
  .corporate__list-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .corporate__list-info {
    gap: 12px;
  }
  .corporate__list-info li,
  .corporate__list li {
    width: 300px;
  }
  .swiper-info .swiper-slide::after {
    width: 16px;
    height: 16px;
    bottom: 10px;
    right: 10px;
  }
  .gallery__box-accent {
    margin: 20px 0;
  }
  .item__text--accent {
    display: flex;
    flex-direction: column;
    font-size: 12px;
  }
  .text__bloc-list--num {
    gap: 6px;
    font-size: 12px;
  }
  .information__img {
    max-width: 120px;
    height: 120px;
    margin: 0 auto 20px;
  }
  .information__img-bsg {
    max-width: 300px;
    height: 44px;
  }
  .sales--min .sales__box-img {
    max-width: 40%;
  }
  .information {
    padding-top: 68px;
  }
  .opposition__list-vacancies {
    margin-top: 12px;
    gap: 12px;
  }
  .opposition__btn-close {
    margin-top: 4px;
    font-size: 12px;
  }
  .opposition__item {
    gap: 4px;
  }
  .vacansies__text-item::before {
    width: 5px;
    height: 5px;
    top: 6px;
  }

  .corporate__btn-text {
    font-size: 12px;
  }
  .information__img--year {
    max-width: 300px;
    height: 300px;
  }
  .dialog {
    max-width: 300px;
    padding: 40px 20px;
  }
  .dialog__close {
    width: 24px;
    height: 24px;
    top: 10px;
    right: 10px;
  }
  .dialog__close img {
    width: 16px;
    height: 16px;
  }
  .order__form-title {
    font-size: 24px;
  }
  .order__form-descr {
    margin: 10px 0 20px;
    font-size: 14px;
  }
  .order__form label {
    gap: 2px;
    font-size: 12px;
  }
  .order__form input,
  .order__form textarea {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .order__form textarea {
    min-height: 80px;
  }

  .order__form-text {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .order__form-terms {
    margin-top: 8px;
    font-size: 12px;
  }
  .dialog__descr--success {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .sales__box {
    max-width: 268px;
    margin: auto auto 0;
    position: relative;
    z-index: 1;
  }
  .sales__box-img {
    max-width: 268px;
    top: -14px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
  }
  .sales__container {
    min-height: 350px;
  }
  .sales--min {
    padding-left: 0;
    padding-right: 0;
  }
  .sales--min .sales__container {
    min-height: 390px;
  }
  .sales__link-btn {
    max-width: 268px;
  }
  .sales__link-btn--accent {
    max-width: 174px;
    padding: 8px;
  }
  .price__box-descr--min {
    margin: 20px 0 8px;
  }
  .sales--min .sales__box-img {
    max-width: 268px;
  }
  .hero1 {
    background-image: url(../assets/img/bg-1-320.jpg) !important;
  }
  .hero2 {
    background-image: url(../assets/img/bg-2-320.jpg) !important;
  }
  .hero3 {
    background-image: url(../assets/img/bg-3-320.jpg) !important;
  }
  .hero4 {
    background-image: url(../assets/img/bg-4-320.jpg) !important;
  }
  .hero5 {
    background-image: url(../assets/img/bg-5-320.jpg) !important;
  }
}
body {
  position: relative;
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: #ffffffb2;
}
.header__wrapper-box {
  gap: 20px;
}
@media (max-width: 1280px) {
  .header__wrapper-box {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .header__wrapper-box {
    gap: 10px;
  }
  .header__link-geely {
    max-width: 109px;
  }
	.gradient-overlay--geely1{
		width:1680px !important;
	}
}
.nav__item--first {
  width: 100%;
}
.nav__item--first > a {
  font-weight: 700 !important;
}
.list-services--drop__accent {
  flex-wrap: wrap;
}
