@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-VF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'TildaSans', sans-serif;
}

* {
  margin: 0px;
  border: 0px;
  padding: 0px;
}

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

a {
  -webkit-tap-highlight-color: transparent;
}

a,
a:visited {
  text-decoration: none;
  transition: all 0.6s ease-in;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

div {
  -webkit-tap-highlight-color: transparent;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  min-width: 320px;
  height: 100%;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input {
  box-sizing: border-box;
  line-height: 100%;
}

input,
button,
textarea {
  cursor: pointer;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  line-height: 100%;
  background-color: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

label {
  display: block;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.title {
  font-size: 42px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }
}

.title--center {
  text-align: center;
  line-height: 1.23;
}


.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 600px;
  border-radius: 30px;
  height: 80px;
  padding: 0 80px;
}

@media (max-width: 768px) {
  .btn {
    font-size: 18px;
    height: 60px;
  }
}

.btn--accent {
    background-color: var(--main-color);
}

.btn--small {
  font-size: 16px;
  height: 60px;
  padding: 0 60px;
}

/*  */

.container {
    margin: 0 auto;
    padding: 0 100px;
    max-width: 1400px
}

@media (max-width: 1100px) {
    .container {
        padding:0 70px
    }
}

@media (max-width: 992px) {
    .container {
        padding:0 40px
    }
}

@media (max-width: 768px) {
    .container {
        padding:0 25px
    }
}

.first {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: 
    linear-gradient(var(--header-color), var(--header-color)),
    url('../images/first/bg.jpg') center; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.first__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 30px;
}

.first__title {
  font-family: 'TildaSans', Arial, sans-serif;
  font-weight: 600;
  font-size: 72px;
  color: #fff;
  margin-bottom: 38px;
  text-align: center;
}

@media (max-width: 768px) {
  .first__title {
    font-size: 30px;
  }
}

.first__description {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
  text-align: center;
  max-width: 700px;
}

@media (max-width: 768px) {
  .first__description {
    font-size: 14px;
  }
}

.first__description a {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

.first__scroll-btn {
  text-align: center;
  cursor: pointer;
  margin-bottom: 40px;
}

.first__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 50px;
}

.first__top-logo a {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.first__top-menu .menu {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.first__top-menu .menu a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.first__top-column:nth-child(2) {
  display: flex;
  align-items: center;
  column-gap: 40px;
}

.first__top-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
}

.first__top-info-tel a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.first__top-info-mail a {
  color: #fff;
  font-size: 18px;
}

/*  */
/*  */

.footer {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: var(--footer-color);
}

.footer__columns {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .footer__columns {
    flex-direction: column;
  }
}

.footer__column {
  width: 25%;
}

@media (max-width: 768px) {
  .footer__column {
    width: initial;
  }
}

.footer__column-title {
  color: #525252;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__copyright {
  color: #525252;
  margin-top: 35px;
  font-size: 12px;
  line-height: 1.55;
}

.footer__column-lists {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.footer__column-lists-item {
  color: rgb(255, 251, 251);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}

.footer__column-lists-item a {
  color: rgb(255, 251, 251);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}

.footer__column-lists-item--accent {
  font-size: 18px;
}

.footer__column-form {}

.footer__column-menu {
  margin-bottom: 30px;
}

.footer__column-menu a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 30px;
}

/*  */
/*  */

.advantages {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .advantages {
    padding: 90px 0;
  }
}

.advantages__title {
  margin-bottom: 90px;
}

@media (max-width: 768px) {
  .advantages__title {
    margin-bottom: 45px;
  }
}

.advantages__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 768px) {
  .advantages__items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages__item-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 23px;
}

.advantages__item-desctiption {
  font-size: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  max-width: 260px;
}

@media (max-width: 768px) {
  .advantages__item-desctiption {
    font-size: 16px;
  }
}

/*  */
/*  */

.consult {
  padding: 120px 0;
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .consult {
    padding: 90px 0;
  }
}

.consult__title {
  margin-bottom: 40px;
}

.consult__description {
  margin: 0 auto;
  margin-bottom: 75px;
  max-width: 560px;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 36px;
}

@media (max-width: 768px) {
  .consult__description {
    margin-bottom: 45px;
  }
}

.consult__form {}

/*  */
/*  */

.sell {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .sell {
    padding: 90px 0;
  }
}

.sell__title {
  margin-bottom: 90px;
}

@media (max-width: 768px) {
  .sell__title {
    margin-bottom: 45px;
  }
}

.sell__items {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .sell__items {
    gap: 30px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.sell__item {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.sell__item-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.sell__item-text {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

@media (max-width: 768px) {
  .sell__item-text {
    font-size: 16px;
  }
}

/*  */
/*  */

.bid {
  padding: 120px 0;
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .bid {
    padding: 90px 0;
  }
}

.bid__title {
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .bid__title {
    margin-bottom: 45px;
    font-size: 26px;
  }
}

.bid__buttons {
  display: flex;
  justify-content: center
}

/*  */
/*  */

.method {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .method {
    padding: 90px 0;
  }
}

.method__title {
  margin-bottom: 80px;
}

.method__table {
  overflow: auto;
}

.method__table-head {
  min-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(68, 68, 68, 0.3);
}

.method__table-head-item {
  font-size: 18px;
  padding: 20px;
  font-weight: 600;
}

.method__table-body {
  min-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method__table-body-item {
  padding: 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
   border-bottom: 1px solid rgba(68, 68, 68, 0.3);
}

.method__table-body-item--strong {
  font-weight: 700;
}

/*  */
/*  */

.steps {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .steps {
    padding: 90px 0;
  }
}

.steps__title {
  margin-bottom: 90px;
}

.steps__cards {
  display: grid;
  column-gap: 40px;
  row-gap: 70px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .steps__cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.steps__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 53px 30px 40px;
  border: 1px solid #e0e0e0;
}

.steps__card-count {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%);
  border: 1px solid #222;
  border-radius: 100%;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  background: #fff;
}

.steps__card-title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .steps__card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.steps__card-icon {
  width: 100px;
}


/*  */
/*  */

.benefit  {
  padding: 120px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)),
            url('../images/benefit/bg.webp') center / cover no-repeat;
}

@media (max-width: 768px) {
  .benefit {
    padding: 90px 0;
  }
}

.benefit__title  {
  font-size: 48px;
  line-height: 1.23;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 25px;
  color: #fff;
}

@media (max-width: 768px) {
  .benefit__title  {
    font-size: 30px;
  }
}

.benefit__description  {
  max-width: 600px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  text-align: center;
  margin-bottom: 70px;
  color: #fff;
}

@media (max-width: 768px) {
  .benefit__description  {
    font-size: 20px;
  }
}

.benefit__buttons  {
  position: relative;
  display: flex;
  justify-content: center;
}

.benefit__buttons .btn {
  position: relative;
}

.benefit__buttons-element {
  position: absolute;
  left: -70px;
  width: 45px;
  height: 100px;
}

@media (max-width: 768px) {
  .benefit__buttons-element {
    left: initial;
    top: -70px;
  }
}

/*  */
/*  */

.doc {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .doc {
    padding: 90px 0;
  }
}

.doc__title {
  margin-bottom: 21px;
}

.doc__description {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  max-width: 950px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 80px;
}

.doc__columns {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .doc__columns {
     grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.doc__column {}

.doc__column li {
  list-style: disc;
  font-size: 20px;
  font-weight: 300;
  line-height: 31px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .doc__column li {
    font-size: 16px;
    line-height: 25px;
  }
}

.doc__column-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .doc__column-title {
    margin-bottom: 25px;
    font-size: 16px;
  }
}

/*  */
/*  */

.which {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .which {
    padding: 90px 0;
  }
}

.which__title {
  margin-bottom: 90px;
}

.which__faq {}

.which__faq-item {
  border-bottom: 1px solid #eee;
}

.which__faq-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  cursor: pointer;
  padding: 27px 50px 27px 0;
}

.which__faq-item-body {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  transition: all 0.1s ease;
  display: none;
}

.which__faq-item.active .which__faq-item-body {
  display: block;
}

.which__faq-item.active svg {
  transform: rotate(45deg);
}

/*  */
/*  */

.debts {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .debts {
    padding: 90px 0;
  }
}

.debts__title {
  margin-bottom: 35px;
}

.debts__description {
  font-weight: 700;
  font-size: 20px;
  line-height: 31px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .debts__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.debts__list li {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  list-style: disc;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .debts__list li {
    font-size: 16px;
  }
}

.debts__list li span {
  text-decoration: underline;
}

/*  */
/*  */

.factors {
  position: relative;
}

.factors__title {
  margin-bottom: 90px;
  max-width: 70%;
}

@media (max-width: 768px) {
  .factors__title {
    margin-bottom: 45px;
  }
}

.factors__items {
  display: grid;
  column-gap: 50px;
  row-gap: 25px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 70%;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .factors__items {
    max-width: initial;
  }
}

.factors__item {}

.factors__item-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.factors__item-text {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

@media (max-width: 768px) {
  .factors__item-text {
    font-size: 16px;
  }
}

.factors__wrapper {
  display: flex;
}

@media (max-width: 768px) {
  .factors__wrapper {
    flex-direction: column;
  }
}

.factors__photo {
  position: absolute;
  left: 70%;
  top: 0;
  bottom: 0;
}

@media (max-width: 768px) {
  .factors__photo {
    position: relative;
    left: initial;
    top: initial;
    bottom: initial;
  }
}

.factors__photo img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*  */
/*  */

.forms {
  padding: 120px 0;
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .forms {
    padding: 90px 0;
  }
}

.forms__title {
  font-size: 36px;
  margin-bottom: 21px;
}

.forms__description {
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 60px;
}

.forms__form {}


/*  */
/*  */

.why-us {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .why-us {
    padding: 90px 0;
  }
}

.why-us__title {
  margin-bottom: 90px;
}

@media (max-width: 768px) {
  .why-us__title {
    margin-bottom: 45px;
  }
}

.why-us__items {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  max-width: 950px;
}

.why-us__item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

@media (max-width: 768px) {
  .why-us__item {
    font-size: 16px;
  }
}

.why-us__item::before {
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.6003 2.15384C8.95332 2.15384 2.75419 8.35298 2.75419 16C2.75419 23.647 8.95332 29.8462 16.6003 29.8462C24.2474 29.8462 30.4465 23.647 30.4465 16C30.4465 14.8867 30.3152 13.8048 30.0676 12.7688C29.9935 12.4589 30.1847 12.1476 30.4946 12.0735C30.8045 11.9994 31.1157 12.1906 31.1898 12.5005C31.4583 13.6239 31.6003 14.7957 31.6003 16C31.6003 24.2842 24.8846 31 16.6003 31C8.31607 31 1.60034 24.2842 1.60034 16C1.60034 7.71573 8.31607 1 16.6003 1C19.3315 1 21.8939 1.73047 24.1007 3.00708C24.3766 3.16663 24.4708 3.51955 24.3113 3.79535C24.1517 4.07116 23.7988 4.1654 23.523 4.00586C21.487 2.8281 19.1233 2.15384 16.6003 2.15384ZM30.4699 4.53436C30.6951 4.75966 30.6951 5.12495 30.4699 5.35025L16.1196 19.7005L8.98086 12.5618C8.75555 12.3364 8.75555 11.9712 8.98086 11.7459C9.20616 11.5206 9.57144 11.5206 9.79674 11.7459L16.1196 18.0688L29.6539 4.53436C29.8792 4.30906 30.2445 4.30906 30.4699 4.53436Z' fill='black' style='fill: rgb(0, 0, 0);'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}

/*  */
/*  */

.faq {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .faq {
    padding: 90px 0;
  }
}

.faq__sub-title {
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 2.5px;
  text-align: center;
}

@media (max-width: 768px) {
  .faq__sub-title {
    font-size: 14px;
  }
}

.faq__title {
  text-align: center;
  margin-bottom: 70px;
  font-size: 36px;
  line-height: 1.23;
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq__title {
    font-size: 28px;
  }
}

.faq__cards {
  margin: 0 auto;
  max-width: 950px;
}

.faq__card {
  border-bottom: 1px solid #eee;
}

.faq__card-head {
   display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  cursor: pointer;
  padding: 27px 50px 27px 0;
}

@media (max-width: 768px) {
  .faq__card-head {
    font-size: 20px;
    padding: 27px;
  }
}

.faq__card-head svg {
  flex-shrink: 0;
}

.faq__card-body {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    transition: all 0.1s ease;
    display: none;
}

@media (max-width: 768px) {
  .faq__card-body {
    padding: 27px;
  }
}

.faq__card-body ul, .faq__card-body ol {
  margin-left: 20px;
}

.faq__card-body li {
  list-style: disc;
}

.faq__card.active .faq__card-body {
  display: block;
}

.faq__card.active svg {
  transform: rotate(45deg);
}

/*  */
/*  */

.contact-us {
  padding: 120px 0;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url('../images/contact-us/bg.webp') center; 
}

@media (max-width: 768px) {
  .contact-us {
    padding: 90px 0;
  }
}

.contact-us__title {
  color: #fff;
  font-size: 48px;
  line-height: 1.23;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-us__title {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.contact-us__description {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 70px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-us__description {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.contact-us__form {
  max-width: 750px;
  margin: 0 auto;
}


/*  */
/*  */

.contact {
  background: #f0f0f0;
  aspect-ratio: 2 / 0.8;
}

@media (max-width: 768px) {
  .contact__columns:nth-child(1) {
    display: none;
  }
}

.contact__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
}

.contact__column {}

.contact__column:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__map {}

.contact__inner {}

.contact__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 15px;
}

.contact__lists {}

.contact__lists-item {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 5px;
}

.contact__lists-item a {
  color: #000;
}

/*  */
/*  */

.hq-form {
  position: relative;
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr auto;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hq-form {
    grid-template-columns: 1fr;
  }
}

.hq-form--free {
  grid-template-columns: 1fr auto;
  max-width: 750px;
}

@media (max-width: 768px) {
  .hq-form--free {
     grid-template-columns: 1fr;
  }
}

.hq-form--3 {
  grid-template-columns: 1fr auto;
  max-width: 750px;
}

@media (max-width: 768px) {
  .hq-form--3 {
    grid-template-columns: 1fr;
  }
}

.hq-form--3+.wpcf7-response-output {
  color: #fff !important;
  line-height: 150% !important;
  margin: initial !important;
  margin-top: 10px !important;
}

.hq-form--footer {
  grid-template-columns: 1fr auto;
}

.hq-form--footer input[type='tel'] {
  height: 44px !important;
  border-radius: initial !important;
}

.hq-form--footer input[type='submit'] {
  height: 44px !important;
  border-radius: initial !important;
  padding: 10px !important;
  font-size: 0px !important;
  width: 44px !important;
  height: 44px !important;
  background-image: url("data:image/svg+xml,%3Csvg role='presentation' class='t447__btnicon' fill='%23ffffff' width='20px' height='20px' viewBox='0 0 25 21.4' xmlns='http://www.w3.org/2000/svg'%3E%3Cdesc%3ESubscribe%3C/desc%3E%3Cpath d='M0 21.4l25-10.7L0 0v8.3l17.9 2.4L0 13.1v8.3z'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.hq-form--footer+.wpcf7-response-output {
  color: #fff !important;
  line-height: 150% !important;
  margin: initial !important;
  margin-top: 10px !important;
}

.hq-field__label {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 5px;
}

.hq-field {
  align-self: end;
}

.hq-field input[type='text'], .hq-field input[type='tel'], .hq-field input[type='email'] {
  padding: 0 20px;
  font-size: 16px;
  height: 60px;
  line-height: 1.33;
  border-radius: 10px;
  width: 100%;
}

.hq-field input[type='submit'] {
  border-radius: 30px;
  color: #ffffff;
  background-color: var(--main-color);
  height: 60px;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  transition: all 0.5s ease-in-out;
  width: 100%;
}

.hq-field input[type='submit']:hover {
  opacity: 0.7;
}

.hq-form--free .hq-field input[type='submit'] {
  background-color: #000;
}

.hq-form--free .hq-field input[type='submit']:hover {
  background-color: #3e3e3e;
}

.hq-form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*  */
/*  */

.burger {
  display: none;
}

@media (max-width: 992px) {
  .first__top-mobile-btn {
    display: block;
  }

  .first__top {
    background: #111111;
    margin: initial;
    padding: 25px 50px;
  }

  .first__top-column:nth-child(2) {
    position: absolute;
    display: none;
  }


  .burger {
    position: relative;
    width: 30px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    flex-shrink: 0;
  }

  .burger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute; /* абсолютное позиционирование */
    left: 0;
  }

  .burger span:nth-child(1) {
    top: 0;
  }

  .burger span:nth-child(2) {
    top: 10px;
  }

  .burger span:nth-child(3) {
    top: 20px;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px; /* центр линии */
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px; /* центр линии */
  }

  .first__top-column--menu.show {
    position: absolute;
    inset: 0;
    background: rgb(46, 46, 46);
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
  }
  
  .first__top-column--menu.show .menu {
    flex-direction: column;
    row-gap: 20px;
  }
}

body._lock {
  overflow: hidden;
}

.hq-n-text {
  padding-bottom: 120px;
}

.hq-n-text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 31px;
}

.hq-n-text p:not(:last-child) {
  margin-bottom: 20px;
}

.hq-n-text h2 {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 10px;
}

.hq-n-text h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 10px;
}

.hq-n-text ul, .hq-n-text ol {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-left: 30px;
  margin-bottom: 20px;
}

.hq-n-text ul li, .hq-n-text ol li {
  list-style: disc;
}

/* Стилизация таблиц внутри .hq-n-text */
.hq-n-text table {
    width: 100%;
    border-collapse: collapse; /* Убирает двойные границы */
    margin: 1em 0;
    font-size: 0.95em;
    text-align: left;
}

/* Стилизация ячеек */
.hq-n-text th,
.hq-n-text td {
    border: 1px solid #ccc; /* Серые границы */
    padding: 0.5em 0.75em;
}

/* Стилизация заголовков таблицы */
.hq-n-text th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Чередование строк */
.hq-n-text tr:nth-child(even) {
    background-color: #fafafa;
}

/* Подсветка строки при наведении */
.hq-n-text tr:hover {
    background-color: #f0f8ff;
}

/* Таблицы, которые слишком широкие */
.hq-n-text table {
    overflow-x: auto;
    display: block;
}

.hq-more-posts {
  margin-bottom: 120px;
}

.hq-more-posts__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hq-more-posts__card {
  border: 1px solid #000;
  border-radius: 25px;
  padding: 15px 20px;
}

.hq-more-posts__card a {
  color: #000;
}

.hq-more-posts__title {
  margin-bottom: 35px;
}


/*  */
/*  */

.btn-tg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px 35px;
  background: #2da7ef;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.btn-tg:hover {
  background: #027cc3;
}

.hq-modal--modal-1 {
  transform: translate(-50%, -50%);
}

.hq-modal__container--modal-1 {
  padding: 20px;
}

.hq-modal-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.hq-modal-body .hq-form {
  grid-template-columns: 1fr;
}

.hq-modal-body input[type='text'], .hq-modal-body input[type='tel'] {
  border: 1px solid #e0e0e0;
}

.hq-field-column-2 br {
  display: none;
}

.hq-field-column-2 .wpcf7-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important;
}

.hq-field-column-2 p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .hq-field-column-2 p {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.hq-field-column-2 input[type='submit'] {
  border-radius: 5px !important;
  height: initial;
  padding: 10px 35px;
}

.hq-modal-body .wpcf7-list-item {
  margin-left: initial;
}