/* =========================
   Fonts
========================= */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   CSS Variables
========================= */
:root {
  --padding: 24px;
  --font-main: "Manrope", sans-serif;
  --container: 1600px;
  --container-wide: 1650px;

  /* Desktop */
  --h2-size: 46px;
  --h3-size: 28.47px;
  --p-size: 17.6px;

  /* Mobile */
  --h2-size-m: 20px;
  --h3-size-m: 13px;
  --p-size-m: 10px;
  --padding: 15px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  :root {
    --h2-size: 36px;
    --h3-size: 24px;
    --p-size: 16px;
    --container: 1024px;
    --container-wide: 1100px;
  }

  .tender-process-container {
    max-width: 1024px;
  }
}

@media (max-width: 768px) {
  :root {
    --h2-size: 26px;
    --h3-size: 20px;
    --p-size: 16px;

    
    --container-wide: 100%;
  }
  
  .container {
    width: 100%;
    max-width: 330px;
  }
  
}
/* =========================
   Modern Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* =========================
   Typography
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  color: #1e1e1e;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 400;
  line-height: 1;
}

p,
li {
  margin: 0;
  font-size: var(--p-size);
  font-weight: 400;
  line-height: 100%;
  color: #1e1e1e;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  h2 {
    font-size: 20px !important;
  }

  h3 {
    font-size: 14px !important;
  }

  p,
  a{
    font-size: 12px !important;
  }
}

.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
  margin-left: auto;
  margin-right: auto;
}

.container-wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--padding);
  margin-left: auto;
  margin-right: auto;
}

.title-top {
  text-align: center;
  margin: 50px 0 50px 0;
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
}

.btn-animation {
  transition: transform 0.3s ease;
}

.btn-animation:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .title-top {
    font-size: 16px;
    margin: 25px 0 25px 0;
  }
  
  .container {
    width: 100%;
    max-width: 330px;
  }
}
/* =========================
   Header
========================= */

.site-header {
  padding-block: 30px;
}

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

.logo {
  flex-shrink: 1;
}

.logo img {
  width: 100%;
  max-width: 310px;
  height: auto;
}

.header-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
    width: 100%;
  max-width: 1310px;
}

.header-contacts {
  display: flex;
  justify-content: space-between;
  font-size: var(--p-size);
  color: #1e1e1e;
  flex-wrap: wrap;
}

.header-contacts::after {
  content: "";
  width: 100%;
  border-bottom: 0.56px solid #DCDCDC;
  margin-top: 16px;
}

.header-address span {
  display: inline;
  font-size: 19px;
}

.header-address {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-address .icon {
  width: 28px;
  height: 28px;
  background: url("../img/headMap.svg") no-repeat center / contain;
  flex-shrink: 0;
  margin-left: -5px;
}

.address-text {
  display: inline;
}

.address-text span {
  display: inline;
}

.header-phone {
  font-weight: 400;
  font-size: 19px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../img/headPhone.svg") no-repeat center / contain;
  flex-shrink: 0;
}

.main-nav{
      width: 100%;
  max-width: 685px;
}

.menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 685px;
}

.menu a {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.header-right .menu a:hover,
.header-right .menu a.active,
.header-right .menu a[aria-current="page"] {
  color: #D32F2F;
}

/* родитель для позиционирования подменю */
.menu li {
  position: relative;
}

/* подменю */
.menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: #fff;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 260px;
  
   border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1000;
}

.sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.footer-inner .menu .sub-menu{
    display: none;
}

/* ссылки подменю */
.menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
}

/* появление при наведении */
.menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-button {
  color: #f5f7f9;
  border-radius: 10px;
  border-color: #d32f2f;
  background: #d32f2f;
  width: 260px;
  padding: 15px 23px;
  font-size: 19px;
  cursor: pointer;
  border:none;
  max-width: 210px;
  margin-top: 5px;
}

.main-nav-button .header-button {
  font-size: 15px;
}

.mobile-menu-wrapper,
.burger {
  display: none;
}

.main-nav-button{
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.breadcrumbs{
  font-size:16px !important;
  margin:20px 0;
  color:#777;
}

.breadcrumbs a{
  color:#777;
  text-decoration:none;
}

.breadcrumbs a:hover{
  color:#D32F2F;
}

@media (max-width: 768px) {
    
    .breadcrumbs{
  font-size:12px !important;
  margin:20px 0;
  color:#777;
}
    
    .privacy-link{
        font-size: 9px  !important;
    }
  .site-header {
    padding-block: 17px;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header-right {
    order: 1;
  }

  .header-address span {
    display: block;
    font-size: 10px;
  }

  .header-contacts {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 10px;
    gap: 0px;
  }

  .address-text {
    display: flex;
    flex-direction: column;
  }

  .address-text span {
    display: block;
  }

  .header-address .icon {
    width: 13px;
    height: 15px;
    margin-left: 0;
  }

  .header-phone {
    font-size: 10px !important;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 2px;
    width: 110px;
    margin-left: 0;
  }

  .header-phone::before {
    content: "";
    width: 12px;
    height: 12px;
    background: url("../img/headPhone.svg") no-repeat center / contain;
    flex-shrink: 0;
  }

  .header-top {
    order: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo img {
    max-width: 65%;
  }

  .burger {
    display: block;
    width: 36px;
    height: 10px;
    background: url("../img/burger.svg") center / contain no-repeat;
    border: none;
  }

  .logo,
  .burger {
    display: inline-flex;
    align-items: center;
  }

  .header-inner {
    position: relative;
  }

  .logo {
    max-width: 70%;
  }

  /* =========================
   Мобильное меню
========================= */

  .mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d32f2f;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 16px 16px;
    gap: 24px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;
  }

  .mobile-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-close {
    position: absolute;
    top: 25px;
    right: 17px;
    background: url("../img/closeMenu.svg") no-repeat center / contain;
    border: none;
    width: 40px;
    height: 40px;
  }

  .header-button_mobile {
    background: #fff;
    color: #d32f2f;
    padding: 16px;
    font-size: 18px;
    border-radius: 10px;
    width: 268px;
    margin: 54px auto 0;
    border: none;
    cursor: pointer;
  }

  .main-nav_mobile .menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .main-nav_mobile .menu a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
  }

  .burger {
    display: block;
  }

  .main-nav,
  .header-button {
    display: none;
  }
}

/* =========================
    Заказать звонок
========================= */

/* Модальное окно */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.is-active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: #f5f7f9;
  border-radius: 20px;
  max-width: 895px;
  width: calc(100% - 32px);
  padding: 40px;
  z-index: 1;
  max-height: 90vh;
}

.form-callback {
  background: #f5f7f9;
  border-radius: 20px;
  padding: 60px 70px;
  max-width: 895px;
  margin: 0 auto;
}

.form-callback {
  max-height: 80vh;
  overflow-y: auto;
  padding: 10px 95px;
  margin: 0 auto;
}

.form-desc {
  font-size: 16px;
  margin-bottom: 32px;
  color: #1e1e1e;
}

.form-callback h3 {
  font-weight: 700;
  font-size: 31.94px;
  letter-spacing: 0%;
  text-align: center;

  color: #1e1e1e;
}
.form-callback p {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0%;
}

.form-desc {
  font-size: 12px;
  margin-bottom: 20px;
}

.form-callback input,
.form-callback textarea {
  height: 55px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 20px;
}

.form-field {
  position: relative;
  margin-bottom: 24px;
}

.form-field input,
.form-field textarea,
.form-field tel {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #000000;
  outline: none;
  box-sizing: border-box;
  background: #f5f7f9;
}

.floating-label {
  position: absolute;
  top: 9px;
  left: 52px;
  background: #f5f7f9;
  font-size: 20px;
  color: #000;
  pointer-events: none;
  z-index: 1;
}

.floating-label.required::after {
  content: "*";
  color: #d32f2f;
  margin-left: 2px;
}
.form-field textarea {
  min-height: 75px;
  resize: vertical;
}

.wpcf7-submit {
  width: 330px;
  height: 63px;
  background: #d32f2f !important;
  border-radius: 9px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 22px 42px;
  margin-top: 24px;
}

.form-policy {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0px -40px;
  cursor: pointer;
  position: relative;
}

.form-policy input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.form-policy .wpcf7-list-item {
  position: relative;
  padding-left: 30px;
  line-height: 1.4;
}

.form-policy .wpcf7-list-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -19px;
  width: 23px;
  height: 23px;
  border: 2px solid #000000;
  border-radius: 5px;
  background: #f5f7f9;
  pointer-events: none;
}

.form-policy .wpcf7-list-item:has(input:checked)::before {
  background: #000;
}

.form-policy .wpcf7-list-item:has(input:checked)::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 4px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  pointer-events: none;
}

.form-policy-text {
  max-width: 785px;
}

.form-note {
  font-size: 14px;
  color: #1e1e1e;
  margin-top: 8px;
}

.star::before {
  content: "*";
  color: #d32f2f;
  margin-right: 4px;
  font-weight: bold;
  margin-right: 10px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin-top: 16px;
  font-size: 14px;
}

.form-bottom {
  display: flex;
  align-items: center;
  gap: 118px;
  font-weight: 700;
  font-size: 17px;
}

@media (max-width: 768px) {
  .form-callback {
    max-width: 315px;
    padding: 24px 20px;
    border-radius: 11.82px;
  }

  .form-callback h3 {
    font-size: 18px;
  }

  .form-desc {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .form-callback input,
  .form-callback textarea {
    height: 42px;
    font-size: 12px;
  }

  .form-callback textarea {
    height: 80px;
  }

  .form-desc {
    width: 250px;
    font-weight: 400;
    font-size: 9px !important;
    margin-bottom: 0;
  }

  .wpcf7-submit {
    width: 140px;
    height: 48px;
    font-size: 14px;
    padding: 14px;
  }

  .floating-label {
    top: 5px;
    left: 20px;
    font-size: 10px;
  }

  .form-callback p {
    font-weight: 400;
    font-size: 9px !important;
  }

  .form-policy .wpcf7-list-item::before {
    content: "";

    left: 23px;
    top: -12px;
    width: 14px;
    height: 14px;
    border: 1px solid #000000;
    border-radius: 3px;
  }

  .form-policy-text {
    max-width: 300px;
  }

  .form-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 9px;
  }
  .modal {
    position: fixed;
  }
  .modal-content {
    border-radius: 12px;
    padding: 20px;
  }
}
/* =========================
    HERO
========================= */
.text-center {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 580px;
}

.hero-title {
  padding-top: 150px;
  font-weight: 700;
  font-size: 65.86px;
  line-height: 100%;
  color: #1e1e1e;
  max-width: 1150px;
}

.hero-text {
  margin-top: 80px;
  font-weight: 400;
  font-size: 31.64px;
  line-height: 100%;
  color: #1e1e1e;
  max-width: 1025px;
}

.hero-btn {
  opacity: 1;

  background: #fff;
  text-decoration: none;

  font-size: 20px;
  font-weight: 500;
  color: #1e1e1e;

  transition: all 0.3s ease;
}

.hero-btn__text {
  display: inline-block;
}

.hero-btn__icon img {
  width: 24px;
  height: auto;
}

.hero-btn {
  width: 426.74px;
  height: 87.79px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 70px;
  border-radius: 73.05px;
  background-color: #f5f7f9;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;

  opacity: 1;
}

.hero-btn__text {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-left: 40px;
}

.hero-btn__icon-link img {
  width: 74px;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-btn__icon-link:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .text-center {
    background-size: 160px;
  }

  .hero-title {
    max-width: 225px;
    font-size: 20px;
    padding-top: 80px;
    text-align-last: left;
  }
  .hero-text {
    font-size: 10px;
    margin-top: 12px;
    max-width: 260px;
  }

  .hero-btn {
    width: 185px;
    height: 40px;
    margin-top: 32px;
  }

  .hero-btn__icon-link img {
    width: 32px;
  }

  .hero-btn__text {
    font-size: 10px;
    margin-left: 15px;
  }
}
/* =========================
    SEVRICES
========================= */

.services {
  position: relative;
  width: 100%;
  min-height: 136px;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 136px;
  background-color: #fff;
  border-top-left-radius: 111px;
  border-top-right-radius: 111px;
  z-index: 1;
}

.service-image-wrapper {
  display: flex;
  align-items: start;
}

.service-image-wrapper img {
  border-radius: 23px;
  margin: 45px 22px;
  margin-right: 0;
  transition: transform 0.3s ease;
}

.service-icon-link {
  width: 100%;
  max-width: 111px;
}

.service-image {
  width: 100%;
  max-width: 575px;
}

.service-image-wrapper > div {
  min-width: 0;
}

.service-image-wrapper {
  gap: 22px;
}

.service-image-wrapper img:hover {
  transform: scale(1.1);
}

.services-title-top {
  padding-top: 55px;
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.services .container {
  position: relative;
  z-index: 2;
}

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

.service-item {
  width: 100%;
  max-width: 750px;
  border-radius: 17px;
  background-color: #f5f7f9;
}

.service-title,
.service-text {
  padding-bottom: 14px;
  margin-left: 22px;
  font-size: 31px;
  font-weight: 400;
}

.service-text {
  padding-bottom: 40px;
  max-width: 570px;
  font-size: 19px;
  color: #1e1e1e;
}

@media (max-width: 768px) {
  .services {
    min-height: 76px;
  }

  .services-bg {
    height: 76px;
    border-top-left-radius: 38px;
    border-top-right-radius: 38px;
  }
  
  .service-image-wrapper {
    gap: 5px;
    justify-content: space-between;
}

  .service-image-wrapper img {
    max-width: 235px;
    border-radius: 12px;
    margin: 12px 9px;
    margin-right: 0;
    height: 92px;
  }

  .service-image-wrapper a img {
    max-width: 62px;
    height: auto;
    margin-left: 10px;
  }
  
  .service-image-big{
      max-width: 235px !important;
  }

  .service-image {
    width: auto;
  }

  .service-image-link {
    margin-right: 10px;
  }

  .services-title-top {
    padding-top: 55px;
    font-size: 20px;
  }

  .services .container {
    position: relative;
    z-index: 2;
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    padding: 25px 0;
  }

  .service-item {
    border-radius: 9px;
  }

  .service-title,
  .service-text {
    padding-bottom: 5px;
    margin-left: 9px;
    font-size: 13px;
    font-weight: 400;
  }

  .service-text {
    padding-bottom: 12px;
    max-width: 570px;
    font-size: 10px;
  }
}

/* =========================
    ADVANTAGES
========================= */

.advantages-title {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 50px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.advantage-item {
  text-align: center;
}

.advantage-icon {
  max-width: 110px;
  margin: 30px auto;
}

.advantage-title {
  font-size: 31px;
  font-weight: 400;
  margin-bottom: 46px;
  height: 64px;
}

.advantage-text {
  font-size: 20px;
}

@media (max-width: 768px) {
  .advantages-title {
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .advantage-item {
    text-align: center;
    display: flex;
    align-items: center;
  }

  .advantage-icon {
    max-width: 43px;
    margin: 0 12px 0 0;
  }

  .advantage-title {
    font-size: 13px;
    margin: 0 5px 10px 0;
    height: auto;
    text-align: left;
  }

  .advantage-text {
    font-size: 10px;
    text-align: left;
    max-width: 255px;
  }
}

/* =========================
    REVIEW  
========================= */
.swiper-wrapper {
  margin-top: 55px;
}
.reviews {
  padding: 55px 0 0 0;
}

.review-card {
  background: #f5f7f9;
  border-radius: 20px;
  padding: 32px;
  min-height: 375px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.review-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-top,
.review-text {
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
}

@media (max-width: 768px) {
  .reviews h2{
    margin-top: 25px;
    margin-bottom: 25px;
    }
  .review-top {
    font-size: 12px;
  }
  .review-text {
    font-size: 12px;
  }

  .review-photo {
    width: 64px;
    height: 64px;
  }

  .review-card {
    background: #f5f7f9;
    border-radius: 10px;
    padding: 25px;
    min-height: 180px;
  }
  .reviews {
    padding: 0 0;
  }
}

/* =========================
    REQUEST 
========================= */

.form-application input,
.form-application textarea {
  height: 63px;
  padding: 14px 16px;
  border-radius: 5px;
  font-size: 20px;
  background: #ffffff;
}

.form-application .floating-label {
  background: #ffffff;
}

.form-application-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.form-image {
  flex: 1;
}

.form-image img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 120px;
}

.form-application .form-content {
  flex: 1;
  margin-right: 20px;
}

.form-application .form-row {
  display: flex;
  gap: 20px;
}

.form-application .form-row .form-field {
  flex: 1;
}

.form-application .form-field {
  margin-bottom: 20px;
}

.form-application .floating-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 22px;
}

.form-application .form-bottom {
  margin-top: 20px;
}

.form-application .form-note {
  font-size: 19px;
  margin-top: 10px;
  width: 220px;
}
@media (max-width: 768px) {
  .form-application input,
  .form-application textarea {
    height: 37px;
    padding: 14px 16px;
    border-radius: 5px;
    font-size: 10px;
    background: #ffffff;
  }

  .form-application .floating-label {
    background: #ffffff;
  }

  .form-application-wrapper {
    display: block;
    margin-top: 25px;
    gap: 0;
  }

  .form-image img {
    display: none;
  }

  .form-application .form-content {
    flex: 1;
  }

  .form-application .form-row {
    display: block;
  }

  .form-application .form-row .form-field {
    flex: 1;
  }

  .form-application .form-field {
    margin-bottom: 20px;
  }

  .form-application .floating-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 10px;
  }

  .form-application .form-bottom {
    margin-top: 20px;
  }

  .form-application .form-note {
    font-size: 10px;
    margin-top: 10px;
  }
  .form-application .form-content {
  margin-right: 0;
}
}

/* =========================
    FOOTER
========================= */

.footer-inner{
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.site-footer {
  background-color: #d32f2f;
  margin-top: 50px;
  padding-bottom: 50px;
}

.footer-nav {
  padding-top: 70px;
  font-weight: 400;
  font-size: 24.39px;
  line-height: 100%;
  color: #fff;
}

.footer-nav a {
  color: #fff;
}

.footer-nav ul {
  max-width: 840px;
  margin: 0 auto;
}

.footer-socials {
  max-width: 290px;
  display: flex;
  gap: 62px;
  margin: 55px auto 25px auto;
}

.footer-contacts,
.footer-contacts p {
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
  color: #fff;
  text-align: center;
}
.footer-mail {
  display: block;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .footer-socials {
    padding-top: 30px;
    max-width: 205px;
    display: flex;
    gap: 62px;
    margin: 25px auto;
  }

  .footer-socials a img {
    width: 30px;
    height: 30px;
  }

  .footer-contacts,
  .footer-contacts p,
  .footer-phone {
    font-size: 10px;
  }
}

/* =========================
    ABOUT-HERO
========================= */

.about-hero {
  position: relative;
  overflow: visible;
}

.about-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: rgba(245, 247, 249, 0.6);
  border-radius: 17px;
}

.about-hero-content {
  margin-left: 22px;
  max-width: 1075px;
}

.about-hero-content h2 {
  font-weight: 700;
  font-size: 31.64px;
  line-height: 100%;
  margin-bottom: 50px;
  text-align: left;
}

.about-hero-content p {
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
  padding-bottom: 33px;
}

.about-hero-image {
  margin-top: 42px;
  z-index: -1;
}
.about-hero-image-mobile {
  display: none;
}

.about-mission-values-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 22px;
}

.mission {
  background-color: #d32f2f;
  border-radius: 16px;
  padding: 0 22px 30px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.values {
  background-color: #f5f7f9;
  border-radius: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 22px 30px 22px;
}

.mission-title,
.values-title {
  font-size: 31px;
  font-weight: 700;
  margin: 0;
  margin-top: 138px;
  margin-bottom: 22px;
  text-align: left;
}

.values-title {
  margin-top: 118px;
}

.mission-title {
  color: #fff;
}

.mission-text {
  max-width: 550px;
  font-size: 19px;
  color: #fff;
}

.values-list {
  padding: 0;
  margin: 0;
  list-style: disc;
  margin-left: 23px;
}

.values-list li {
  font-size: 19px;
}

@media (max-width: 768px) {
  .about-hero-content {
    margin-left: 22px;
    max-width: 1075px;
    padding-top: 12px;
  }

  .about-hero-content h2 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .about-hero-content p {
    font-size: 10px;
    padding-bottom: 12px;
  }
  .about-hero-image {
    display: none;
  }
  .about-hero-image-mobile {
    display: block;
    position: absolute;
    right: 23px;
    top: 73px;
    z-index: -1;
  }

  .about-mission-values-inner {
    gap: 6px;

    margin-top: 6px;
  }

  .mission,
  .values {
    border-radius: 9px;
    padding: 0px 12px 9px 22px;
  }

  .mission-title,
  .values-title {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    margin-top: 12px;
    margin-bottom: 5px;
  }

  .mission-text {
    font-size: 10px;
  }

  .values-list {
    margin-left: 9px;
  }

  .values-list li {
    font-size: 10px;
  }
}

/* =========================
    EXPERTS
========================= */

.experts {
  padding: 60px 0;
}

.experts-title {
  text-align: center;
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 50px;
}

.experts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  justify-content: center;
}

.expert-item {
  background-color: #f5f7f9;
  border-radius: 16px;
  text-align: le;
  padding: 20px;
  width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expert-image {
  border-radius: 22px;
  object-fit: cover;
}

.expert-name {
  font-weight: 700;
  font-size: 31.64px;
  margin: 33px 0 14px 22px;
}

.expert-position {
  font-weight: 400;
  font-size: 19.55px;
  margin: 0 0 10px 22px;
}

.licenses {
  margin-bottom: 55px;
}

.licenses-slider {
  width: 100%;
}

.licenses-slider .swiper-wrapper {
  display: flex;
}

.licenses-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
  box-sizing: border-box;
}

.licenses-slider .swiper-slide img {
  height: 550px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.map {
  position: relative;
  max-width: 1520px;
  height: 530px;

  background-image: url("/wp-content/themes/cerera/assets/img/about-map.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-color: rgba(245, 247, 249, 0.2);
  margin: 0;
  overflow: hidden;
}

.map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 247, 249, 0.2);
  pointer-events: none;
}

.map-text p {
  max-width: 550px;
}

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

  .expert-item {
    padding: 12px;
  }

  .expert-image {
    border-radius: 12px;
    object-fit: cover;
  }

  .expert-name {
    font-size: 12px;
    margin: 12px 0 5px 9px;
  }

  .expert-position {
    font-size: 10px;
    margin: 0 0 5px 9px;
  }
  .licenses-slider .swiper-slide img {
    margin: 0 auto;
    height: 300px;
  }

  .licenses-slider .swiper-slide {
    height: auto;
  }

  .map {
    max-width: 328px;
    height: 163px;

    background-size: contain;
    background-position-x: 90px;
    background-position-y: 48px;
    align-items: flex-start;
  }

  .map-text p {
    max-width: 300px;
  }
}

/* =========================
    BLOG
========================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.blog-card-inner {
  display: flex;
  padding: 44px 23px;
  background-color: #f5f7f9;
  border-radius: 16px;
}

.blog-card-image {
  border-radius: 22px;
  max-width: 575px;
  margin-right: 21px;
}
.blog-card-image img {
  border-radius: 21px;
}
.blog-card-content {
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  max-width: 750px;
  font-weight: 400;
  font-size: 31.64px;
  line-height: 100%;
  text-align: left;
  margin-bottom: 8px;
}

.blog-card-excerpt {
  max-width: 750px;
}

.blog-card-excerpt p {
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.blog-card-tag {
  font-weight: 400;
  font-size: 19.55px;
  padding: 10px;
  border-radius: 11px;
  background-color: #d32f2f;
  color: #fff;
  margin-right: 5px;
}

.blog-card-link-wrapper {
  margin-left: 25px;
}

.blog-card-link-wrapper .service-icon-link img {
  transition: transform 0.3s ease;
}

.blog-card-link-wrapper .service-icon-link:hover img {
  transform: scale(1.1);
}

.news-attachments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.news-attachments-title {
  font-weight: 400;
  font-size: 19.55px;
}

.news-attachment-link {
  text-decoration: none;
}

.news-attachments--desktop {
  display: flex;
}

.news-attachments--mobile {
  display: none;
}

@media (max-width: 768px) {
  .blog-card-inner {
    display: block;
    grid-template-areas:
      "image link"
      "content content";
    grid-template-columns: auto auto;
    padding: 10px;
    align-items: start;
  }

  .blog-card-excerpt {
    margin-bottom: 5px;
  }

  .blog-card-image {
    grid-area: image;
    border-radius: 8px;
    margin-right: 0;
  }

  .blog-card-image img {
    max-width: 310px;
    border-radius: 12px;
  }
  
.blog-card-link-wrapper{
    display: none;
}
  

  
  .blog-card-link-wrapper {
    grid-area: link;
    justify-self: end;
  }

  .service-icon-link img {
    width: 62px;
  }
  .blog-card-content {
    grid-area: content;
    width: 100%;
    margin-top: 12px;
    max-width: 300px;
  }

  .blog-card-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .blog-card-excerpt p {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 100%;
  }

  .blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }

  .blog-card-tag {
    font-size: 10px;
    padding: 6px;
    border-radius: 6px;
  }
  


  .news-attachments-title {
    font-weight: 400;
    font-size: 11px;
  }
  .blog-card-link-wrapper {
    margin-left: 12px;
    width: 62px;
  }
  .news-attachments--desktop {
    display: none;
  }

  .news-attachments--mobile {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 20px;
  }
}
/* =========================
    CONTACTS
========================= */

.contacts-grid {
  display: flex;
  align-items: center;
}

.contacts-info {
  margin-left: 22px;
}

.contacts-label {
  position: relative;
  font-weight: 400;
  font-size: 31.64px;
  padding-left: 31px;
  color: #1e1e1e;
  margin-bottom: 14px;
}

.contacts-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 70%;
  transform: translateY(-50%);

  width: 18px;
  height: 18px;

  background-image: url("../img/beforeInfo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.contacts-value {
  font-weight: 400;
  font-size: 19.55px;
  padding-left: 31px;
  color: #1e1e1e;
  margin-bottom: 22px;
}

.contacts-map-inner {
  width: 100%;
  width: 900px;
  margin: 0 auto;
}

.contacts-map-inner iframe {
  width: 100% !important;
  max-width: 100%;
  aspect-ratio: 9 / 4;
  border-radius: 30px;
  display: block;
  border: 0;
}
.contacts-map-inner > a {
  display: none;
}

@media (max-width: 768px) {
  .contacts-grid {
    display: block;
  }
  .contacts-map-inner {
    width: 328px;
    border-radius: 10px;
    margin-bottom: 24px;
  }

  .contacts-info {
    margin-left: 0px;
  }

  .contacts-label {
    font-size: 12px;
    padding-left: 18px;
    margin-bottom: 5px;
  }

  .contacts-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: -145%;
    transform: translateY(-50%);

    width: 9px;
    height: 3px;
  }

  .contacts-value {
    font-size: 10px;
    padding-left: 18px;
    color: #1e1e1e;
    margin-bottom: 22px;
  }
}

/* =========================
    PAGE-TENDER
========================= */

.tender-hero {
  position: relative;
  height: 850px;
  overflow: hidden;
}

.tender-hero__bg {
  height: 100%;
  inset: 0;
  background-image: url("../img/tender-hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: calc(50% + 200px) center;
}

.tender-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 1500px;
  height: 100%;

  background: linear-gradient(
    90deg,
    #222222 19.97%,
    rgba(34, 34, 34, 0.912952) 37.83%,
    rgba(34, 34, 34, 0.844768) 46.55%,
    rgba(34, 34, 34, 0.719859) 61.25%,
    rgba(34, 34, 34, 0) 95.81%
  );

  z-index: 2;
  pointer-events: none;
}

.tender-hero .container {
  position: relative;
  height: 100%;
  z-index: 3;
}

.tender-hero__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tender-hero__title {
  font-weight: 700;
  font-size: 61.48px;
  line-height: 139%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 50px;
}

.tender-hero__text {
  max-width: 750px;
  font-weight: 400;
  font-size: 22.36px;
  line-height: 139%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 70px;
}

.tender-button {
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
}

@media (max-width: 768px) {
  .tender-hero {
    position: relative;
    height: auto;
  }

  .tender-hero__bg {
    background-size: 157%;
    background-position: center;
  }

  .tender-hero__overlay {
    width: 100%;
    background: linear-gradient(
      to top,
      #222222 19.97%,
      rgba(34, 34, 34, 0.912952) 37.83%,
      rgba(34, 34, 34, 0.844768) 46.55%,
      rgba(34, 34, 34, 0.719859) 61.25%,
      rgba(34, 34, 34, 0) 95.81%
    );
  }

  .tender-hero .container {
    position: relative;
    height: 100%;
    z-index: 3;
  }

  .tender-hero__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tender-hero__title {
    max-width: 280px;
    font-weight: 700;
    font-size: 19px;
    line-height: 139%;
    color: #fff;
    text-align: center;
    margin: 80px auto 30px auto;
  }

  .tender-hero__text {
    max-width: 750px;
    font-weight: 400;
    font-size: 12.36px;
    line-height: 139%;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
  }

  .tender-button {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 12.64px;
    line-height: 139%;
    max-width: 300px;
    margin: 0 auto 50px auto;
  }
}

.about-company__inner {
  display: flex;
}

.about-company__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px 22px;
  margin-right: 120px;
}

.about-company__value {
  font-weight: 600;
  font-size: 73.19px;
  line-height: 139%;
  color: #d32f2f;
  text-align: center;
}

.about-company__label {
  font-weight: 400;
  font-size: 26.62px;
  line-height: 120%;
  text-align: center;
  color: #101010;
}

.about-company__title {
  margin-bottom: 15px;
  text-align: right;
  margin-top: 55px;
  font-weight: 600;
  font-size: 61.12px;
  line-height: 139%;
  color: #101010;
}

.about-company__title::after {
  content: "";
  display: block;
  width: 673.45px;
  height: 0;
  margin: 0 0 16px auto;
  border-bottom: 0.56px solid #101010;
  opacity: 1;
}

.about-company__subtitle {
  display: block;
  margin-bottom: 12px;
  text-align: right;
  font-weight: 400;
  font-size: 22.23px;
  line-height: 139%;
  color: #101010;
}

.about-company__content p {
  font-weight: 400;
  font-size: 24.23px;
  line-height: 139%;
  margin-bottom: 20px;
  max-width: 900px;
  color: #101010;
  margin-top: 19px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about-company__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* меняем порядок */
  .about-company__content {
    order: 1;
  }

  .about-company__stats {
    order: 2;
    grid-template-columns: 100px 100px 60px 65px;
    gap: 9px 2px;
    margin-right: 0;
    justify-content: space-between;
  }

  .about-company__value {
    font-size: 26.19px;
  }

  .about-company__label {
    font-size: 9.62px;
  }

  .about-company__title {
    margin-bottom: 6px;
    text-align: center;
    margin-top: 25px;
    font-size: 16.12px;
  }

  .about-company__title::after {
    content: "";
    display: block;
    width: 195.45px;
    height: 0;
    margin: 0 auto 11px auto;
    border-bottom: 0.56px solid #101010;
    opacity: 1;
  }

  .about-company__subtitle {
    margin-bottom: 12px;
    text-align: center;
    font-size: 10.23px;
  }

  .about-company__content p {
    font-size: 12.23px;
    margin-bottom: 20px;
    max-width: 330px;
    margin-top: 10px;
  }
}

/* =========================
    tender-advantages
========================= */

.tender-advantages {
  background-color: #1e1e1e;
  margin-top: 40px;
}

.tender-advantages-grid {
  display: flex;
  gap: 20px 20px;
  padding-top: 55px;
}

.tender-advantage-icon {
  margin: auto;
  margin-bottom: 14px;
}

.tender-advantage-title {
  font-weight: 700;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.tender-advantage-text {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  padding-bottom: 55px;
}

@media (max-width: 768px) {
  .tender-advantages-grid {
    display: block;
  }

  .tender-advantage-item {
    display: flex;
  }

  .tender-advantage-icon {
    width: 55px;
    height: 55px;
    margin: 0;
    margin-right: 17px;
  }

  .tender-advantage-title {
    font-size: 12px;
    text-align: left;
    margin-bottom: 5px;
  }

  .tender-advantage-text {
    font-size: 12px;
    text-align: left;
  }
}

/* =========================
    tender-info
========================= */

.tender-info-section {
  margin: 0 auto;
  padding: 40px 20px;
}

.tender-info-header {
  margin-bottom: 30px;
}

.tender-info-header h2 {
  font-weight: 700;
  font-size: 61.12px;
  line-height: 113.99999999999999%;
  letter-spacing: 0%;
  margin-bottom: 15px;
  color: #101010;
  max-width: 850px;
  text-align: left;
  margin-left: 0;
}

.tender-info-header h2:after {
  content: "";
  display: block;
  width: 673.45px;
  height: 0;
  margin: 0 0 16px 0;
  border-bottom: 0.56px solid #101010;
  opacity: 1;
}

.tender-info-header p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  color: #101010;
  margin: 0;
}

.tender-info-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.tender-info-main {
  flex: 1 1 65%;
  min-width: 300px;
}

.tender-info-description {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  margin-bottom: 25px;
  color: #101010;
}

.tender-info-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 20px;
}

.tender-info-service-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tender-info-service-item:hover {
  transform: translateY(-3px);
}

.tender-info-service-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.tender-info-service-text {
  width: 100%;
  max-width: 365px;
  height: 96px;
  background: white;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow:
    1.11px 2.22px 4.45px 0px #0000001a,
    3.33px 8.89px 8.89px 0px #00000017,
    7.78px 18.89px 12.22px 0px #0000000d,
    13.34px 33.34px 14.45px 0px #00000003,
    20px 52.23px 15.56px 0px #00000000;
  transition: transform 0.2s;
}

.tender-info-offer-image {
  display: block;
  margin: 70px 0 20px 0;
}

.tender-info-offer-content {
  display: flex;
  padding: 30px;
  flex-grow: 1;
  padding-left: 0;
  align-items: flex-start;
  position: relative;
  margin-top: 45px;
}

.tender-info-offer-buttons {
  display: flex;
  gap: 15px;
  margin-top: auto;
  width: 100%;
  max-width: 650px;
  margin-top: auto;
}

.tender-info-btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tender-info-btn-outline {
  font-weight: 500;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  background: white;
  color: #101010;
  border: 2px solid #101010;
}

.tender-info-btn-primary {
  font-weight: 500;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  background: #e51c23;
  color: white;
}

.tender-info-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tender-info-header h2 {
    font-size: 16px;
    text-align: center;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .tender-info-header h2:after {
    width: 190.45px;
    margin-left: 15px;
    margin-top: 5px;
  }

  .tender-info-header p {
    font-size: 10px;
    text-align: center;
  }

  .tender-info-content {
    flex-direction: column;
    gap: 10px;
  }

  .tender-info-main {
    flex: 1 1 100%;
    margin-left: auto;
        margin-right: auto;
  }

  .tender-info-description {
    font-size: 12px;
    max-width: 300px;
  }

  .tender-info-services-grid {
    grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
  }

  .tender-info-service-icon {
    width: 43px;
    height: 43px;
  }

  .tender-info-service-text {
    max-width: 270px;
    height: 43px;
    border-radius: 5px;
    font-size: 12px;
  }

  .tender-info-offer {
    flex: 1 1 100%;
    margin-left: auto;
        margin-right: auto;
  }

  .tender-info-offer-image {
    display: none;
  }

  .tender-info-offer-content {
    margin-top: 5px;
    padding: 0;
  }

  .tender-info-offer-buttons {
    flex-direction: column;
    width: 330px;
  }

  .tender-info-btn {
    font-size: 12px;
  }
}

.tender-info-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  align-items: flex-start;
}

.tender-info-left {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    1.11px 2.22px 4.45px rgba(0, 0, 0, 0.1),
    3.33px 8.89px 8.89px rgba(0, 0, 0, 0.09),
    7.78px 18.89px 12.22px rgba(0, 0, 0, 0.05),
    13.34px 33.34px 14.45px rgba(0, 0, 0, 0.01);
}

.tender-info-right {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  background: #d32f2f;
  color: white;
  margin-top: 108px;
  box-shadow:
    1.11px 2.22px 4.45px rgba(0, 0, 0, 0.1),
    3.33px 8.89px 8.89px rgba(0, 0, 0, 0.09),
    7.78px 18.89px 12.22px rgba(0, 0, 0, 0.05),
    13.34px 33.34px 14.45px rgba(0, 0, 0, 0.01);
  margin-left: -50px;
}

.tender-info-wrapper h2 {
  font-weight: 600;
  font-size: 37.79px;
  line-height: 113.99999999999999%;
  letter-spacing: 0%;
}

.tender-info-wrapper p {
  margin: 22px 0 22px 0;
}

.tender-info-wrapper p,
.tender-info-wrapper li {
  font-weight: 400;
  font-size: 18.23px;
  line-height: 139%;
  letter-spacing: 0%;
}

/* Общие стили списков */
.tender-info-list-left,
.tender-info-list-right {
  list-style: none;
  padding: 0;
}

.tender-info-list-left li,
.tender-info-list-right li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
}

.tender-info-list-left li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/cerera/assets/img/galka.svg") no-repeat
    center;
  background-size: contain;
}

.tender-info-list-right li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/cerera/assets/img/galkaWhite.svg")
    no-repeat center;
  background-size: contain;
}

.tender-info-right h2,
.tender-info-right p,
.tender-info-right li {
  color: white;
}

.tender-info-list-left,
.tender-info-list-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .tender-info-wrapper {
    flex-direction: column;
    gap: 7px;
    width: 330px;
    margin-left: auto;
        margin-right: auto;
  }
  .tender-info-wrapper h2 {
    font-size: 14.79px;
  }

  .tender-info-wrapper p {
    margin: 12px 0 12px 0;
  }

  .tender-info-wrapper p,
  .tender-info-wrapper li {
    font-size: 10.23px;
  }
  .tender-info-left {
    margin-top: -20px;
  }

  .tender-info-right {
    margin: 0;
  }

  .tender-info-list-left,
  .tender-info-list-right {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }

  .tender-info-list-left li::before,
  .tender-info-list-right li::before {
    top: -3px;
  }
}

/* =========================
      tender-process
========================= */

.tender-process-container {
  max-width: 1850px;
  margin-left: auto;
  margin-right: auto;
}

.tender-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tender-step {
  width: 100%;
  max-width: 440px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

/* Фоны для каждого шага */
.step1 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step1.svg")
    no-repeat center/cover;
}
.step2 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step2.svg")
    no-repeat center/cover;
}
.step3 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step3.svg")
    no-repeat center/cover;
}
.step4 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step4.svg")
    no-repeat center/cover;
}
.step5 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step5.svg")
    no-repeat center/cover;
}
.step6 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step6.svg")
    no-repeat center/cover;
}
.step7 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step7.svg")
    no-repeat center/cover;
}
.step8 {
  background: url("/wp-content/themes/cerera/assets/img/tender-step8.svg")
    no-repeat center/cover;
}

.tender-process-button {
  display: block;
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .tender-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .tender-process-container {
    max-width: 330px;
  }

  .tender-step {
    height: 138px;
  }

  .tender-process-button {
    display: none;
  }
}

/* =========================
    tender-tariffs
========================= */

.tender-tariffs {
  background-color: #1e1e1e;
  padding-bottom: 55px;
}

.tender-tariffs-tittle {
  font-weight: 600;
  font-size: 61.12px;
  line-height: 113.99999999999999%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin: 55px auto 55px auto;
  padding-top: 55px;
}

.tariffs {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.tariff-card {
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 515px;
  margin-left: auto;
  margin-right: auto;
}

.tariff-card h3 {
  font-weight: 600;
  font-size: 51.12px;
  line-height: 139%;
  letter-spacing: 0%;
  text-align: center;
  color: #d32f2f;
  margin-top: 35px;
  margin-bottom: 35px;
}

.tariff-card ul {
  margin: 0 41px 50px 60px;
  list-style: unset;
}

.tariff-card li {
  margin-bottom: 20px;
}

.tariff-card ul li::marker {
  color: #d32f2f;
  margin-left: 33px;
}

.tender-price {
  font-weight: 600;
  font-size: 51.12px;
  line-height: 139%;
  letter-spacing: 0%;
  color: #101010;
  text-align: center;
}

.tender-price-button {
  text-align: center;
  display: block;
  margin: 30px auto 50px auto;
  width: 100%;
  max-width: 300px;
}

@media (max-width: 768px) {
  .tender-tariffs-tittle {
    font-size: 16.33px;
    margin: 25px auto 25px auto;
    padding-top: 25px;
  }

  .tariff-card h3 {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .tariff-card ul {
    margin: 0 21px 0px 50px;
  }

  .tariff-card li {
    font-size: 12px;
  }

  .tender-price {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .tender-price-button {
    font-size: 12px;
    margin: 0 auto;
    margin-bottom: 12px;
  }
}

/* =========================
    tender-tariffs-faq
========================= */

.tender-tariffs-faq {
  display: flex;
  gap: 37px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.tender-tariffs-faq p,
.tender-tariffs-faq h3 {
  font-weight: 400;
  font-size: 19.23px;
  line-height: 139%;
  letter-spacing: 0%;
}

.tender-tariffs-faq h3 {
  font-weight: 600;
}

.tender-tariffs-faq-left {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.tender-tariffs-faq-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.tender-tariffs-faq-item-text {
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow:
    1.11px 2.22px 4.45px 0px #0000001a,
    3.33px 8.89px 8.89px 0px #00000017,
    7.78px 18.89px 12.22px 0px #0000000d,
    13.34px 33.34px 14.45px 0px #00000003,
    20px 52.23px 15.56px 0px #00000000;
}

.tender-tariffs-faq-right {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.tender-tariffs-faq-right h3 {
  font-weight: 600;
  font-size: 51.12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #d32f2f;
}

.tender-tariffs-faq-right h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  margin: 16px 0 16px 0;
  border-bottom: 0.56px solid #101010;
  opacity: 1;
}

.tender-tariffs-faq-right p {
  font-weight: 400;
  font-size: 20.23px;
  line-height: 139%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 33px;
}

.tariffs-faq-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
}

@media (max-width: 1600px) {
  .tender-tariffs-faq-right,
  .tender-wrapper-right {
    order: 1;
  }

  .tender-tariffs-faq-left,
  .tender-wrapper-left {
    order: 2;
  }

  

  .akreditaciya__image-hero {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .tender-tariffs-faq-item {
    gap: 6px;
    align-items: start;
    margin-bottom: 10px;
  }

  .tender-tariffs-faq-item-text {
    padding: 6px 8px;
    border-radius: 4px;
    box-shadow:
      0.45px 0.91px 1.81px #0000001a,
      1.36px 3.62px 3.62px #00000017,
      3.17px 7.7px 4.98px #0000000d,
      5.43px 13.58px 5.88px #00000003,
      8.15px 21.27px 6.34px #00000000;
  }

  .tender-tariffs-faq p,
  .tender-tariffs-faq h3 {
    font-size: 10.23px;
  }

  .tender-tariffs-faq-item img {
    max-width: 47px;
  }

  .tender-tariffs-faq-right h3 {
    font-size: 16.33px;
  }

  .tender-tariffs-faq-right p,
  .tariffs-faq-button {
    font-size: 12.57px;
  }

  .tariffs-faq-button {
    display: block;
    width: 71%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 25px;
    border-radius: 5px;
  }
}

/* =========================
    tender-contact-form
========================= */

.tender-contact-form-wrapper {
  display: flex;
  margin-top: 55px;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.tender-wrapper-left {
  width: 100%;
  max-width: 750px;
}

.tender-map iframe {
  border-radius: 11px;
  border: 0;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tender-form .form-row input[type="text"],
.tender-form .form-row input[type="tel"] {
  height: 50px;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  max-width: 220px;
}

.form-row input[type="submit"] {
  height: 50px;
  padding: 0 25px;
  border: none;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 17px;
  max-width: 270px;
}

.form-row input[type="submit"]:hover {
  background: #333;
}

.tender-wrapper-right {
  width: 100%;
  max-width: 820px;
}

.tender-wrapper-right .tariffs-faq-button {
  max-width: 535px;
}

.tender-wrapper-right button {
  margin: 47px auto;
}

.tender-wrapper-right p {
  font-weight: 400;
  font-size: 20.23px;
  line-height: 139%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 768px) {
  .tender-form .form-row input[type="text"],
  .tender-form .form-row input[type="tel"] {
    width: 140px;
    margin-left: 10px;
    font-size: 12px;
  }

  .form-row input[type="submit"] {
    width: 320px;
    margin-left: 30px;
    margin-top: -5px;
  }

  .tender-wrapper-right h3 {
    font-size: 16px;
  }

  .tender-wrapper-right button {
    font-size: 12px;
    margin: 12px auto;
    width: 320px;
  }

  .tender-wrapper-right p {
    font-size: 12px;
  }
}

/* =========================
akreditaciya-hero
========================= */

.akreditaciya-hero {
  background-image: url(../img/akreditaciya-hero-bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
}

.akreditaciya__content-hero {
  display: flex;
}

.akreditaciya__content-hero-left h1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 61.12px;
  line-height: 100%;
  letter-spacing: 0%;
  max-width: 800px;
  margin-top: 30px;
}

.akreditaciya__content-hero-left img {
  display: none;
}

.akreditaciya__content-hero-left p {
  font-weight: 400;
  font-size: 31.64px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 55px auto;
  max-width: 800px;
}

.akreditaciya__image-hero {
  margin-top: -150px;
}

@media (max-width: 1600px) {
  .akreditaciya__image-hero {
    margin-top: 0;
  }
}

.akreditaciya__block {
  background-color: #f5f7f9;
  padding: 33px 16.67px;
  border-radius: 16.67px;
  margin-bottom: 20px;
}

.akreditaciya__block h3 {
  font-weight: 400;
  font-size: 31.64px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 22px;
}

.akreditaciya__block p,
.akreditaciya__block li {
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
  letter-spacing: 0%;
}

.akreditaciya-button {
  background: #d32f2f;
  color: #fff;
  padding: 16px;
  font-size: 18px;
  border-radius: 10px;
  width: 268px;
  border: none;
  cursor: pointer;
}

.akreditaciya-advantages-title {
  margin-top: 55px;
  margin-bottom: 55px;
}

.akreditaciya-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.akreditaciya-advantage {
  border-left: 11px solid #e74c3c; /* Красная полоса слева */
  padding-left: 15px; /* Отступ от полосы */
  background-color: #f9f9f9;
  border-radius: 11px;
  padding: 15px;
  transition: all 0.3s ease;
}

.akreditaciya-advantage h3 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.akreditaciya-advantage p {
  max-width: 250px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .akreditaciya__content-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .akreditaciya__content-hero-left h1 {
    font-size: 19.12px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .akreditaciya__content-hero-left img {
    display: block;
  }

  .akreditaciya__content-hero-left p {
    font-size: 12.64px;
    margin: 0;
    text-align: center;
  }

  .akreditaciya__image-hero {
    display: none;
  }

  .akreditaciya-hero {
    background-image: none;
  }

  .akreditaciya-button {
    font-size: 12.64px;
    width: 328px;
    margin-bottom: 20px;
    margin-top: 18px;
  }

  .akreditaciya__block {
    background-color: #f5f7f9;
    padding: 12px 9px;
    border-radius: 16.67px;
    margin-bottom: 10px;
  }

  .akreditaciya__block h3 {
    font-size: 12.64px;
    margin-bottom: 9px;
  }

  .akreditaciya__block p,
  .akreditaciya__block li {
    font-size: 10.55px;
  }

  .akreditaciya-advantages-title {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .akreditaciya-advantages {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .akreditaciya-advantage h3 {
    font-size: 11px;
    margin-bottom: 8px;
    margin-top: 0px;
  }

  .akreditaciya-advantage p {
    max-width: 250px;
    margin-bottom: 0px;
  }
}

/* =========================
akreditaciya-company
========================= */

.akreditaciya-company__title {
  font-weight: 700;
  font-size: 46.67px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 55px;
  margin-top: 55px;
}

.akreditaciya-company__content p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  padding-bottom: 28px;
}

.akreditaciya-company__stats {
  display: flex;
  justify-content: space-between;
}

.gallerya-title-top {
  margin-top: 55px;
  margin-bottom: 55px;
}

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

.akreditaciya_wrapper-info h2 {
  text-align: left;
  font-weight: 700;
  font-style: Bold;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 50px;
  margin-top: 55px;
}

.akreditaciya_wrapper-info p {
  text-align: left;
  font-weight: 400;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  max-width: 500px;
}

.akreditaciya-form-right {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: end;
}

.akreditaciya-form-right-text {
  text-align: left;
  font-weight: 400;
  font-size: 22.23px;
  line-height: 139%;
  letter-spacing: 0%;
  max-width: 800px;
  margin-top: 30px;
}

.akreditaciya-form-right .form-row input[type="submit"] {
  margin-top: 20px;
}

.clients-slider .swiper-slide .swiper-slide-active {
  max-width: 370px;
  margin-right: 0;
}

.swiper-slide a {
  width: 100%;
  max-width: 400px;
}
.swiper-slide a img {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  

  .akreditaciya-company__title {
    font-size: 12px;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .akreditaciya-company__content p {
    font-size: 10px;
  }

  .gallerya-title-top {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .swiper-wrapper {
    margin-top: 5px;
  }

  .akreditaciya_wrapper {
    display: block;
  }

  .akreditaciya_wrapper-info h2 {
    text-align: center;
    font-weight: 700;
    font-style: Bold;
    font-size: 46.61px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .akreditaciya_wrapper-info p {
    text-align: center;
    font-weight: 400;
    font-size: 22.23px;
    line-height: 139%;
    letter-spacing: 0%;
    max-width: 500px;
  }

  .akreditaciya-form-right {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
  }

  .akreditaciya-form-right .form-row input[type="submit"] {
    margin-top: 0;
    margin-left: 30px;
  }

  .akreditaciya-form-right-text {
    display: none;
  }

  .clients-slider .swiper-slide .swiper-slide-active {
    max-width: 130px;
  }
}

/* =========================
        analitica
========================= */

.analitica-hero {
  background-image: url(../img/analitica-hero-bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 690px;
}

.analitica_content-hero-left {
  margin-top: 140px;
}

.analitica-button {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .analitica_content-hero-left {
    margin-top: 14px;
  }

  .analitica-button {
    margin-bottom: 10px;
  }

  .analitica-hero {
    background-image: none;
  }
}

/* =========================
        bankrotstvo
========================= */

.bankrotstvo_hero {
  display: flex;
  gap: 70px;
}
.bankrotstvo-container {
  background-image: url(../img/bankrotstvo-hero-bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
}

.bankrotstvo_hero-left {
  width: 100%;
  max-width: 620px;
  background-color: #d32f2f;
  border-radius: 11px;
  padding: 46px 55px;
  margin-top: 40px;
}

.bankrotstvo_hero-left h1 {
  font-weight: 600;
  font-size: 61.12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin-top: 80px;
}

.bankrotstvo_hero-left p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin: 45px 0 65px 0;
}

.bankrotstvo-button {
  padding: 20px 50px;
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 22.36px;
  line-height: 139%;
  letter-spacing: 0%;
}

.bankrotstvo_hero-right {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 57px;
  width: 100%;
}

.bankrotstvo_right-list:nth-child(1) {
  margin-left: 0;
}

.bankrotstvo_right-list:nth-child(2) {
  margin-left: 450px;
}

.bankrotstvo_right-list:nth-child(3) {
  margin-left: 220px;
}

.bankrotstvo_right-list:nth-child(4) {
  margin-left: 380px;
}

.bankrotstvo_right-list {
  width: fit-content;
  position: relative;
  padding: 30px 70px 30px 100px;
  border: 1.11px solid #cfcfcf;
  font-weight: 400;
  font-size: 22.23px;
  line-height: 100%;
  letter-spacing: 0%;
  background-color: #fff;
  max-width: 520px;
}

.bankrotstvo_right-list::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/bankrotstvo-list.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.bankrotstvo_right-list-red::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/bankrotstvo-list-red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.bankrotstvo-button-new {
  width: fit-content;
  font-weight: 400;
  font-size: 22.23px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #d32f2f;
  border: none;
  border-bottom: 0.56px solid #d32f2f;
  background-color: #fff;
  padding-bottom: 10px;
  margin-left: auto;
  cursor: pointer;
}

.bankrotstvo-button-new::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 90px;

  background-image: url("../img/button-strow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.bankrotstvo-grid h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 46.67px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-top: 55px;
  margin-bottom: 20px;
}

.bankrotstvo-grid p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  max-width: 600px;
}

.bankrotstvo-grid-top {
  margin-top: -80px;
  display: grid;
  justify-content: space-between;

  grid-template-columns: repeat(4, 370px);
  grid-template-rows: repeat(3, 230px);

  gap: 11px;

  grid-template-areas:
    ". . . one"
    ". two three four"
    "five . six six";
}

.item {
  border: 1.11px solid #cfcfcf;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.item1 {
  grid-area: one;
}

.item2 {
  grid-area: two;
}

.item3 {
  grid-area: three;
}

.item4 {
  grid-area: four;
}

.item5 {
  grid-area: five;
}

.item6 {
  grid-area: six;
}

@media (max-width: 1500px) {
  .bankrotstvo_hero {
    display: block;
  }

  .bankrotstvo-grid-top {
    margin-top: 20px;
    display: grid;
    justify-content: center;

    grid-template-columns: 500px 320px;
    grid-template-rows: repeat(4, 130px);

    gap: 11px;

    grid-template-areas:
      "one one "
      "two three"
      "four five"
      "six six";
  }
}

@media (max-width: 768px) {
  .bankrotstvo {
    background-image: url(../img/bankrotstvo-hero-bg-mobile.svg);
    background-repeat: no-repeat;
    background-position: top right;
  }

  .bankrotstvo-container {
    background: transparent;
  }

  .bankrotstvo_hero {
    display: block;
  }

  .bankrotstvo_hero-left {
    padding: 36px 25px;
    margin-top: 0;
  }

  .bankrotstvo_hero-left h1 {
    font-size: 30.12px;
    margin-top: 0;
  }

  .bankrotstvo_hero-left p {
    font-size: 12.23px;
    margin: 25px 0 25px 0;
  }

  .bankrotstvo-button {
    padding: 10px 10px;
    font-size: 12.36px;
  }

  .bankrotstvo_hero-right {
    margin-top: 40px;
    gap: 17px;
    width: 100%;
    font-size: 12.36px;
  }

  .bankrotstvo_hero-right p {
    font-size: 12.36px;
  }

  .bankrotstvo_right-list:nth-child(1) {
    margin-left: 0;
  }

  .bankrotstvo_right-list:nth-child(2) {
    margin-left: 90px;
  }

  .bankrotstvo_right-list:nth-child(3) {
    margin-left: 50px;
  }

  .bankrotstvo_right-list:nth-child(4) {
    margin-left: 0;
  }

  .bankrotstvo_right-list {
    padding: 18px 30px 18px 50px;
    font-size: 22.23px;
  }

  .bankrotstvo_right-list::before {
    left: 20px;
  }

  .bankrotstvo_right-list-red::before {
    left: 20px;
  }

  .bankrotstvo-button-new {
    font-size: 12.23px;
  }

  .bankrotstvo-button-new::after {
    width: 11px;
    height: 11px;
    margin-left: 50px;
  }

  .bankrotstvo-grid h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 16.67px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 12px;
  }

  .bankrotstvo-grid p {
    font-weight: 400;
    font-size: 12.23px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    max-width: 600px;
  }

  .bankrotstvo-grid-top {
    margin-top: 20px;
    display: grid;
    justify-content: center;

    grid-template-columns: 200px 120px;
    grid-template-rows: repeat(4, 130px);

    gap: 11px;

    grid-template-areas:
      "one one "
      "two three"
      "four five"
      "six six";
  }

  .item {
    border: 1.11px solid #cfcfcf;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
  }

  .item1 {
    grid-area: one;
  }

  .item2 {
    grid-area: two;
  }

  .item3 {
    grid-area: three;
  }

  .item4 {
    grid-area: four;
  }

  .item5 {
    grid-area: five;
  }

  .item6 {
    grid-area: six;
  }

  .item img {
    width: 37px;
  }

  .item p {
    font-size: 12px;
  }
}

/* =========================
        bankrotstvo-form
========================= */
.bankrotstvo-form-wrapper {
  background-image: url(../img/bankrotstvo-form-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 11px;
  margin-top: 55px;
}

.bankrotstvo-form-wrapper h2 {
  font-weight: 600;
  font-size: 61.12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-align: center;
  padding-top: 46px;
  margin-bottom: 29px;
}

.bankrotstvo-form-bottom-text,
.bankrotstvo-form-top-text {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.bankrotstvo-form-bottom-text {
  max-width: 840px;
  padding: 30px;
}

.bankrotstvo-form-wrapper .form-row {
  justify-content: center;
}

.bankrotstvo-form-wrapper .form-row input[type="text"],
.bankrotstvo-form-wrapper .form-row input[type="tel"] {
  height: 50px;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  max-width: 320px;
  background: transparent;
  color: #fff;
}

.bankrotstvo-form-wrapper input::placeholder {
  color: #fff;
  opacity: 1;
  text-align: center;
}

.bankrotstvo-form-wrapper .form-row input[type="submit"] {
  background: #fff !important;
  color: #000;
  max-width: 400px;
}

@media (max-width: 768px) {
  .bankrotstvo-form-wrapper {
    background-image: url(../img/bankrotstvo-form-bg-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    margin-top: 10px;
  }

  .bankrotstvo-form-wrapper h2 {
    font-size: 16.12px;
    padding-top: 26px;
    margin-bottom: 9px;
  }

  .bankrotstvo-form-bottom-text,
  .bankrotstvo-form-top-text {
    font-size: 12.23px;
    color: #fff;
    max-width: 280px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .bankrotstvo-form-bottom-text {
    max-width: 840px;
    padding: 20px;
    font-size: 10px;
  }

  .bankrotstvo-form-wrapper .form-row {
    justify-content: center;
  }

  .bankrotstvo-form-wrapper .form-row input[type="text"],
  .bankrotstvo-form-wrapper .form-row input[type="tel"] {
    height: 40px;
    padding: 0 15px;
    font-size: 12px;
    max-width: 140px;
  }

  .bankrotstvo-form-wrapper input::placeholder {
    color: #fff;
    opacity: 1;
    text-align: center;
  }

  .bankrotstvo-form-wrapper .form-row input[type="submit"] {
    background: #fff !important;
    color: #000;
    max-width: 300px;
    margin-left: auto;
  }
}

/* =========================
    bankrotstvo-liberty
========================= */

.bankrotstvo-liberty {
  margin-top: 55px;
}

.bankrotstvo-liberty-top h2 {
  font-weight: 700;
  font-size: 46.67px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

.bankrotstvo-liberty-top p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-top: 27px;
  margin-bottom: 55px;
  max-width: 1000px;
}

.bankrotstvo-liberty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
}

.bankrotstvo-liberty-before {
  padding: 31px 180px;
  background: #d32f2f;
  color: #fff;
  border: none;
  cursor: pointer;
}

.bankrotstvo-liberty-after {
  padding: 30px 120px;
  background: #fff;
  border: 1.11px solid #000000;
  border-left: none;
  cursor: pointer;
}

.bankrotstvo-liberty-items {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bankrotstvo-liberty-item {
  padding: 30px;
  border: 1.11px solid #cfcfcf;
  max-width: 500px;
}

.liberty-after {
  display: none;
}

.bankrotstvo-liberty-item h2 {
  font-weight: 700;
  font-size: 28.89px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #d32f2f;
  margin-bottom: 14px;
}

.bankrotstvo-liberty-item p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: left;
}

@media (max-width: 768px) {
  .bankrotstvo-liberty {
    margin-top: 25px;
  }

  .bankrotstvo-liberty-top h2 {
    font-size: 16.67px;
    text-align: center;
  }

  .bankrotstvo-liberty-top p {
    font-size: 12.23px;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .bankrotstvo-liberty-button {
    display: block;
    margin-bottom: 15px;
  }

  .bankrotstvo-liberty-before {
    width: 100%;
    padding: 19px 10px;
    padding-left: 10px;
  }

  .bankrotstvo-liberty-after {
    width: 100%;
    padding: 19px 10px;
    padding-left: 10px;
    border-left: none;
    border: 1.11px solid #000000;
  }

  .bankrotstvo-liberty-items {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    flex-wrap: wrap;
    cursor: pointer;
  }

  .bankrotstvo-liberty-item {
    padding: 20px;
    border: 1.11px solid #cfcfcf;
    max-width: 500px;
  }

  .liberty-after {
    display: none;
  }

  .bankrotstvo-liberty-item h2 {
    font-weight: 700;
    font-size: 16.89px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    color: #d32f2f;
    margin-bottom: 10px;
  }

  .bankrotstvo-liberty-item p {
    font-weight: 400;
    font-size: 12.23px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: left;
  }
}

/* =========================
    bankrotstvo-intermediary
========================= */

.bankrotstvo-intermediary {
  background: #1e1e1e;
  margin-top: 55px;
}

.bankrotstvo-intermediary-content h2 {
  font-weight: 700;
  font-size: 46.67px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin: 0 auto 55px auto;
  padding-top: 55px;
}

.bankrotstvo-intermediary-content img {
  margin-left: auto;
  margin-right: auto;
}

.bankrotstvo-intermediary-content p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin: 55px auto 0 auto;
  padding-bottom: 55px;
  max-width: 850px;
}

@media (max-width: 768px) {
  .bankrotstvo-intermediary {
    margin-top: 25px;
  }

  .bankrotstvo-intermediary-content h2 {
    font-size: 16.67px;
    margin: 0 auto 25px auto;
    padding-top: 25px;
  }

  .bankrotstvo-intermediary-content img {
    width: 320px;
  }

  .bankrotstvo-intermediary-content p {
    font-size: 10.23px;
    margin: 25px auto 0 auto;
    padding-bottom: 25px;
  }
}

/* =========================
    bankrotstvo-procedure
========================= */

.bankrotstvo-procedure-container {
  background-image: url(../img/bankrotstvo-procedure-bg.svg);
  background-repeat: no-repeat;
  background-size: unset;
  background-position: center;
  background-position-y: 100px;
}

.bankrotstvo-procedure .bankrotstvo-grid h2 {
  max-width: 600px;
  text-align: left;
  margin-left: 0;
}

.bankrotstvo-grid-procedure {
  margin-top: -100px;
  display: grid;
  justify-content: space-between;

  grid-template-columns: repeat(4, 370px);
  grid-template-rows: repeat(3, 230px);

  gap: 11px;

  grid-template-areas:
    ". . . one"
    "two . three four"
    "five six six seven";
}

.procedure-item {
  border: 1.11px solid #cfcfcf;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  background: rgba(230, 230, 230, 0.2); /* прозрачность */
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(30px); /* для Safari */
}

.procedure-item1 {
  grid-area: one;
}

.procedure-item2 {
  grid-area: two;
}

.procedure-item3 {
  grid-area: three;
}

.procedure-item4 {
  grid-area: four;
}

.procedure-item5 {
  grid-area: five;
}

.procedure-item6 {
  grid-area: six;
}

.procedure-item7 {
  grid-area: seven;
}

.procedure-item6 {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 18px;
}

.procedure-item6-info {
  margin-top: 14px;
}

.bankrotstvo-button-item6 {
  padding: 13px 20px;
  background: #f5f8f9;
  border: 0.14px solid #000000;
  border-radius: 24px;
  cursor: pointer;
  text-align: left;
}

.procedure-item6-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.procedure-item .bankrotstvo-button-new {
  background: transparent;
  font-size: 19px;
}

.procedure-item .bankrotstvo-button-new::after {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .bankrotstvo-grid-procedure {
    margin-top: 20px;
    display: grid;
    justify-content: center;

    grid-template-columns: 120px 200px;
    grid-template-rows: repeat(5, 130px);

    gap: 11px;

    grid-template-areas:
      "one one "
      "two three"
      "four five"
      "six six"
      "seven seven";
  }

  .procedure-item {
    border: 1.11px solid #cfcfcf;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
  }

  .procedure-item img {
    width: 37px;
  }

  .procedure-item p {
    font-size: 12px;
  }

  .procedure-item6 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 8px;
  }

  .procedure-item6-info {
    margin-top: 4px;
  }

  .bankrotstvo-button-item6 {
    padding: 7px 12px;
    background: #f5f8f9;
    border: 0.14px solid #000000;
    border-radius: 14px;
    cursor: pointer;
    font-size: 12px;
  }

  .procedure-item6-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .procedure-item .bankrotstvo-button-new {
    font-size: 10px;
  }
}

/* =========================
    bankrotstvo-price
========================= */

.bankrotstvo-price {
  display: flex;
  gap: 22px;
  margin-top: 55px;
}

.bankrotstvo-price-left,
.bankrotstvo-price-right {
  flex: 1;
}

.bankrotstvo-price-left {
  background: #d32f2f;
  border-radius: 11px;
  padding: 30px;
}

.button-bankrotstvo-price {
  position: relative;
  background: #fff;
  border: 1.11px solid #cfcfcf;
  border-radius: 5px;
  padding: 32px 70px 32px 100px;
  cursor: pointer;
}

.button-bankrotstvo-price::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/bankrotstvo-list-red.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.bankrotstvo-price-left h2 {
  font-weight: 600;
  font-size: 61.12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-align: left;
  margin-top: 100px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: 0;
}

.bankrotstvo-price-left p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  color: #fff;
  text-align: left;
}

.bankrotstvo-price-right {
  background: #1e1e1e;
  border-radius: 11px;
  padding: 30px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bankrotstvo-price-right h2 {
  font-weight: 600;
  font-size: 61.12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-align: center;
  margin-top: 37px;
  margin-bottom: 20px;
  max-width: 640px;
}

.bankrotstvo-price-right p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  color: #d32f2f;
  text-align: center;
  max-width: 650px;
  margin-bottom: 24px;
}

.bankrotstvo-price-right-list {
  background-image: url(../img/bankrotstvo-price-right-list.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.bankrotstvo-price-right-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.bankrotstvo-price-right-item:not(:last-child) {
  border-bottom: 1.11px solid #cfcfcf;
}

.bankrotstvo-price-right-item p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-top: 10px;
  margin-bottom: 6px;
}

.bankrotstvo-credit {
  margin-top: 10px;
  border: 1.11px solid #cfcfcf;
  margin-bottom: 30px;
}

.bankrotstvo-credit h2 {
  font-weight: 600;
  font-size: 61.12px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
  color: #d32f2f;
  padding-top: 33px;
  margin-bottom: 66px;
}

.bankrotstvo-credit-info {
  display: flex;
  gap: 100px;
  justify-content: center;
}

.bankrotstvo-credit-text {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.bankrotstvo-credit-text p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  max-width: 460px;
}

.bankrotstvo-credit .analitica-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  width: auto;
  padding: 20px 100px;
}

@media (max-width: 768px) {
  .bankrotstvo-price {
    display: block;
    margin-top: 25px;
  }

  .bankrotstvo-price-left {
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
  }

  .button-bankrotstvo-price {
    border-radius: 5px;
    padding: 18px 40px 18px 65px;
  }

  .button-bankrotstvo-price::before {
    width: 11px;
    height: 11px;
  }

  .bankrotstvo-price-left h2 {
    font-size: 30.12px;
    margin-top: 40px;
  }

  .bankrotstvo-price-left p {
    font-size: 12.23px;
  }

  .bankrotstvo-price-right {
    border-radius: 6px;
    padding: 14px auto;
  }

  .bankrotstvo-price-right h2 {
    font-size: 30.12px;
    margin-top: 30px;
    margin-bottom: 6px;
    max-width: 280px;
  }

  .bankrotstvo-price-right p {
    font-size: 12.23px;
    max-width: 650px;
    margin-bottom: 6px;
  }

  .bankrotstvo-price-right-list {
    background-image: url(../img/bankrotstvo-price-right-list.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }

  .bankrotstvo-price-right-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
  }

  .bankrotstvo-price-right-item p {
    font-size: 12.23px;
    margin-top: 5px;
    margin-bottom: 2px;
  }

  .bankrotstvo-credit h2 {
    font-size: 16.12px;
    padding-top: 14px;
    margin-bottom: 12px;
  }

  .bankrotstvo-credit-info {
    display: block;
  }

  .bankrotstvo-credit-text {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 12px;
  }

  .bankrotstvo-credit-text p {
    font-size: 12.23px;
    max-width: 460px;
  }

  .bankrotstvo-credit-text img {
    width: 27px;
    height: 27px;
  }

  .bankrotstvo-credit-text .bankrotstvo-credit-text-percent {
    width: 21px;
  }

  .bankrotstvo-credit .analitica-button {
    margin-bottom: 15px;
    padding: 10px 45px;
    border-radius: 6px;
  }
}

/* =========================
    bankrotsvo_steps
========================= */

.bankrotsvo_steps {
  background: #1e1e1e;
}

.bankrotsvo_steps-wrapper {
  display: flex;
  gap: 22px 11px;
  flex-wrap: wrap;
  background: #1e1e1e;
  padding-top: 55px;
  padding-bottom: 55px;
}

.bankrotsvo_steps-wrapper h2 {
  font-weight: 600;
  font-size: 61.12px;
  line-height: 90%;
  letter-spacing: 0%;
  color: #fff;
  text-align: left;
  max-width: 620px;
}

.bankrotsvo_steps-wrapper h2 {
  flex: 0 0 100%;
  margin-left: 0;
  margin-top: 40px;
}

.bankrotsvo_steps-inner {
  flex: 0 0 calc(50% - 6px);
  background: #fff;
  display: flex;
  gap: 28px;
  padding: 70px 24px;
  align-items: center;
}

.bankrotsvo_steps-content h3 {
  font-weight: 700;
  font-size: 28.89px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #d32f2f;
  margin-bottom: 22px;
  text-align: left;
  max-width: 480px;
}

.bankrotsvo_steps-content p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: left;
  max-width: 570px;
}

.bankrotsvo_steps-last {
  background: #d32f2f;
}

.bankrotsvo_steps-last .bankrotsvo_steps-content h3 {
  color: #fff;
}
.bankrotsvo_steps-last .bankrotsvo_steps-content p {
  color: #fff;
}

@media (max-width: 768px) {
  .bankrotsvo_steps-wrapper {
    padding-top: 0;
  }

  .bankrotsvo_steps-inner {
    flex: 100%;
    gap: 10px;
    padding: 20px 10px;
  }
  .bankrotsvo_steps-wrapper h2 {
    font-weight: 600;
    font-size: 30.12px;
    line-height: 90%;
    letter-spacing: 0%;
    color: #fff;
    text-align: left;
    max-width: 620px;
    margin-top: 25px;
  }

  .bankrotsvo_steps-content h3 {
    font-weight: 700;
    font-size: 12.89px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #d32f2f;
    margin-bottom: 22px;
    text-align: left;
    max-width: 480px;
  }

  .bankrotsvo_steps-content p {
    font-weight: 400;
    font-size: 10.23px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: left;
    max-width: 570px;
  }
}

/* =========================
    bankrotstvo_relax
========================= */

.bankrotstvo_relax h2 {
  font-weight: 700;
  font-size: 46.67px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-left: 0;
  padding-top: 55px;
  margin-bottom: 25px;
}

.bankrotstvo_relax p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-left: 0;
  margin-bottom: 55px;
  max-width: 800px;
}

.bankrotstvo_relax-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: space-between;
}

.bankrotstvo_relax-inner {
  padding: 20px 25px;
  border: 1.11px solid #cfcfcf;
  border-radius: 11px;
}

.bankrotstvo_relax-inner h3 {
  font-weight: 700;
  font-size: 28.89px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 11px;
  margin-top: 20px;
  color: #d32f2f;
}

.bankrotstvo_relax-inner p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  max-width: 450px;
}

@media (max-width: 768px) {
  .bankrotstvo_relax h2 {
    font-weight: 700;
    font-size: 16.67px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-left: auto;
    padding-top: 25px;
    margin-bottom: 10px;
  }

  .bankrotstvo_relax p {
    font-weight: 400;
    font-size: 12.23px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-left: auto;
    margin-bottom: 5px;
    max-width: 800px;
  }

  .bankrotstvo_relax-inner {
    padding: 10px 15px;
  }

  .bankrotstvo_relax-inner h3 {
    font-weight: 700;
    font-size: 16.89px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 11px;
    margin-top: 10px;
    text-align: center;
  }

  .bankrotstvo_relax-inner p {
    font-weight: 400;
    font-size: 12.23px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    max-width: 450px;
  }
}

/* =========================
    faq
========================= */

.bankrotstvo_faq h2 {
  text-align: left;
  margin-left: 0;
  margin-top: 55px;
  margin-bottom: 55px;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  border: 1.11px solid #cfcfcf;
  background: #f5f7f9;
  border-radius: 11px;
}

.faq-question {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;

  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-answer {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;

  display: none;
  padding: 20px;
}

.faq-item p {
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  max-width: 450px;
  text-align: left;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .bankrotstvo_faq h2 {
    text-align: center;
    margin-left: 0;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .faq {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .faq-question,
  .faq-answer {
    font-size: 12.23px;
    padding: 10px;
  }

  .faq-item p {
    font-weight: 400;
    font-size: 12.23px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    max-width: 450px;
    text-align: left;
  }
}

.bankrotstvo-form-bottom-info {
  background: #d32f2f;
  border-radius: 11px;
}

.bankrotstvo-form-row-long {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.bankrotstvo-field {
  flex: 0 0 220px;
}

.bankrotstvo-field-question {
  flex: 0 0 220px;
}

.bankrotstvo-field-submit {
  width: 100%;
  max-width: 300px;
}

.bankrotstvo-form-row-long input,
.bankrotstvo-form-row-long textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  max-width: 320px;
}

.bankrotstvo-form-row-long textarea {
  resize: none;
  padding-top: 14px;
}

.bankrotstvo-form-row-long input::placeholder,
.bankrotstvo-form-row-long textarea::placeholder {
  color: #fff;
  opacity: 0.8;
}

.bankrotstvo-form-row-long input[type="submit"] {
  background: #fff !important;
  color: #000;
  border: none;
  cursor: pointer;
  height: 50px;
  border-radius: 8px;
  margin-top: 0;
  width: 305px;
}

.bankrotstvo-form-policy {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  display: flex;
  gap: 8px;
}

.bankrotstvo-form-bottom-info p {
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .bankrotstvo-form-row-long textarea {
    resize: none;
    padding-top: 18px;
    text-align: center;
  }
}

/* =========================
    bankrotstvo_contacts
========================= */

.bankrotstvo_contact {
  background: #1e1e1e;
  border-radius: 11px;
}

.bankrotstvo_contacts {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 25px;
}

.bankrotstvo_contacts h2,
.bankrotstvo_contacts p,
.bankrotstvo_contacts a {
  color: #fff;
  font-weight: 400;
  font-size: 22.23px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: left;
  max-width: 800px;
}

.bankrotstvo_contacts h2 {
  margin: 0;
  margin-top: 55px;
  font-weight: 700;
  font-size: 46.67px;
  line-height: 100%;
  letter-spacing: 0%;
}

.bankrotstvo_contact-wrapper {
  width: 100%;
  border: 1.11px solid #cfcfcf;
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  padding: 80px 40px;
}

.bankrotstvo_contact-wrapper-item img {
  margin-bottom: 30px;
}

.bankrotstvo_contact-wrapper-item p {
  max-width: 630px;
}

.bankrotstvo-map {
  width: 100%;
  max-width: 1600px;
  height: 0; /* высота через padding */
  padding-bottom: 40%; /* 660 / 1500 */
  margin: 0 auto;
  position: relative;
  margin-bottom: 55px;
}

.bankrotstvo-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 11px;
}

@media (max-width: 768px) {
  .bankrotstvo_contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 10px;
  }

  .bankrotstvo_contacts h2,
  .bankrotstvo_contacts p,
  .bankrotstvo_contacts a {
    color: #fff;
    font-weight: 400;
    font-size: 12.23px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 800px;
  }

  .bankrotstvo_contacts h2 {
    margin-top: 25px;
    font-weight: 700;
    font-size: 16.67px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .bankrotstvo_contact-wrapper {
  width: 100%;
  border: 1.11px solid #cfcfcf;
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  padding: 25px 20px;
  flex-wrap: wrap;
  gap: 25px 25px;
}

.bankrotstvo_contact-wrapper-item img {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 21px;
}

.bankrotstvo_contact-wrapper-item p {
  max-width: 630px;
}

.bankrotstvo-map {
  width: 100%;
  max-width: 1600px;
  height: 0; /* высота через padding */
  padding-bottom: 40%; /* 660 / 1500 */
  margin: 0 auto;
  position: relative;
  margin-bottom: 55px;
}

.bankrotstvo-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 11px;
}
}

  .blog-card-excerpt-all p{
  padding: 20px 20px;
font-weight: 400;
font-size: 19.55px;
line-height: 120%;
letter-spacing: 0%;
}

@media (max-width: 768px) {
    
     .blog-card-excerpt-all p{
  padding: 10px 10px;
font-size: 12.55px;
}
    
}


/* =========================
    zakupki
========================= */

.zakupki-hero h1 {
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}

.zakupki-hero-info {
  background-image: url(../img/zakupki-hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 30px;
  height: 300px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 20px;
}

.zakupki-hero-info img{
  display: none;
}

.zakupki-hero-info h2 {
  font-weight: 700;
  font-size: 31.64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #fff;
  margin-left: 0;
}

.zakupki-hero-info p {
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #fff;
}

.zakupki-steps h2 {
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 55px auto 75px auto;
}

.zakupki-steps-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 20px;
}

.zakupki-steps-item {
  background: #f5f7f9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 365px;
  padding: 22px 38px;
}

.zakupki-steps-item img {
  margin-top: -60px;
}

.zakupki-steps-item h3 {
  font-weight: 400;
  font-size: 31.64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.zakupki-steps-item p {
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.zakupki-example h2 {
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 55px auto 55px auto;
}

.zakupki-example-wrapper {
  display: flex;
  gap: 20px;
}

.zakupki-example-item {
  border-radius: 16px;
  background: #f5f7f9;
  padding: 22px 44px;
}

.zakupki-example-item h3 {
  font-weight: 400;
  font-size: 31.64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 22px;
}

.zakupki-example-item p {
  font-weight: 400;
  font-size: 19.55px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

.zakupki-button {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.zakupki-button-left,
.zakupki-button-right {
  background: #d32f2f;
  padding: 40px 20px;
  border-radius: 16px;
  font-weight: 400;
  font-size: 31.64px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  border: none;
  cursor: pointer;
}

.zakupki_faq h2 {
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 55px auto 55px auto;
}

.zakupki_faq .faq {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.zakupki_faq .faq-item p {
  max-width: 1450px;
}

.faq-answer {
  display: none;
  transition: all 0.3s ease;
}

.faq-answer.visible {
  display: block;
}

.zakupki_contacts-page h2{
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 55px auto 55px auto;
}


@media (max-width: 768px){

.zakupki-hero h1 {
  font-weight: 700;
  font-size: 16.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.zakupki-hero-info {
  background-image: none;
  padding: 10px 15px;
  height: 300px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zakupki-hero-info img{
  display: block;
  height: 100px;
  border-radius: 10px;
}

.zakupki-hero-info h2 {
  font-weight: 700;
  font-size: 16.64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #1e1e1e;
  margin-left: 0;
}

.zakupki-hero-info p {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #1e1e1e;
}

.zakupki-steps h2 {
  font-weight: 700;
  font-size: 16.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 15px auto 35px auto;
}

.zakupki-steps-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 15px;
}

.zakupki-steps-item {
  background: #f5f7f9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 150px;
  padding: 13px 9px;
}

.zakupki-steps-item img {
  width: 43px;
  margin-top: -30px;
}

.zakupki-steps-item h3 {
  font-weight: 400;
  font-size: 12.64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.zakupki-steps-item p {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.zakupki-example h2 {
  font-weight: 700;
  font-size: 16.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 25px auto 25px auto;
}

.zakupki-example-wrapper {
  display: block;
}

.zakupki-example-item {
  border-radius: 16px;
  background: #f5f7f9;
  padding: 12px 24px;
  margin-bottom: 8px;
}

.zakupki-example-item h3 {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 8px;
}

.zakupki-example-item p {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

.zakupki-button {
  display: block;
}

.zakupki-button-left,
.zakupki-button-right {
  background: #d32f2f;
  padding: 12px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.zakupki_faq h2 {
  font-weight: 700;
  font-size: 16.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 25px auto 25px auto;
}

.zakupki_faq .faq {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.zakupki_faq .faq-item p {
  max-width: 1450px;
  font-size: 10px;
}

.faq-answer {
  display: none;
  transition: all 0.3s ease;
}

.faq-answer.visible {
  display: block;
}

.zakupki_contacts-page h2{
  font-weight: 700;
  font-size: 46.61px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 55px auto 55px auto;
}
}
