body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #272727;
  background: #ffffff;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

.container {
  width: 82.5rem;
}

section {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 3rem;
}
.section-title span {
  color: #e42026;
}

.full-width {
  width: 100%;
}

/* КНОПКИ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 10rem;
  transition: all 0.25s ease-in;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn.red {
  background: #e42026;
  color: #ffffff;
}

.btn.red:hover {
  background: #8f0e12;
}

.btn.outline {
  background: transparent;
  color: #e42026;
  box-shadow: inset 0 0 0 0.0625rem #e42026;
}

.btn.outline:hover {
  background: #e42026;
  color: #ffffff;
}

.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
  background: #e42026;
  transition: all 0.25s ease-in;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.btn-circle img {
  width: 0.8rem;
  height: 0.8rem;
}

.btn-circle:hover {
  background: #8f0e12;
}

/* ХЕДЕР */
.header {
  padding: 1.15rem 0;
  background: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 3.35325rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav a {
  font-size: 1rem;
  transition: color 0.25s ease-in;
}

.nav a:hover, .nav a.active, .footer-nav a.active, .mob-nav a.accent {
  color: #e63027;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.385rem;
  width: 1.65rem;
  height: 2.5rem;
}

.burger span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background: #272727;
  border-radius: 0.125rem;
}

/* МОБИЛЬНОЕ МЕНЮ */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.mob-menu.open {
  visibility: visible;
  opacity: 1;
}

.mob-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 39, 0.7);
}

.mob-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 22rem;
  max-width: 85%;
  height: 100%;
  background: #ffffff;
  padding: 1rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mob-menu.open .mob-menu-inner {
  transform: translateX(0);
}

.mob-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mob-close {
  font-size: 2.25rem;
  line-height: 0.8;
  color: #272727;
}

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mob-nav a {
  font-size: 1.165rem;
}

/* ГЛАВНЫЙ ЭКРАН */
.hero-section {
  margin-top: 6rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1.25rem;
  border: 0.0625rem solid #e42026;
  border-radius: 10rem;
  color: #e42026;
}

.tag-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #e42026;
  flex-shrink: 0;
}

.hero-inner .section-title {
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.25rem;
  opacity: 0.6;
  margin-bottom: 3rem;
  letter-spacing: -0.0625rem;
}
.hero-text2 {
  font-size: 1.25rem;
  opacity: 0.6;
  margin-bottom: 1.25rem;
  letter-spacing: -0.0625rem;
}
.hero-text2:last-child {
  margin-bottom: 0;
}

.hero-btns {
  display: inline-flex;
  align-items: center;
  align-self: start;
}
.hero-btns:hover .btn,
.hero-btns:hover .btn-circle {
  background: #8f0e12;
}
.btn-circle img {
  transition: all 0.25s ease;
}
.hero-btns:hover .btn-circle img {
  transform: rotate(45deg);
}

.hero-image {
  min-width: 0;
  height: 39rem;
  border-radius: 1.875rem;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ПОЧЕМУ НАМ ДОВЕРЯЮТ */
.advantages-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.advantages-desc {
  opacity: 0.6;
  font-weight: 400;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.advantages-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 15rem;
  padding: 1.25rem;
  border-radius: 1.875rem;
  background: #f7f7f7;
}

.advantages-label {
  display: inline-flex;
  align-items: center;
  align-self: start;
}

.advantages-label-div {
  padding: 0.3125rem 0.625rem;
  border-radius: 10rem;
  background: white;
}
.advantages-label-div span {
  opacity: 0.7;
}
.advantages-label-img {
  padding: 0.3125rem 0.5rem;
  border-radius: 10rem;
  background: white;
}

.advantages-label-img img {
  width: 1rem;
  height: 0.96875rem;
}

.advantages-num {
  font-size: 3rem;
  font-weight: 600;
  color: #e42026;
  letter-spacing: -0.1rem;
  margin-bottom: 0.65rem;
}

.advantages-text {
  font-size: 1.25rem;
  opacity: 0.7;
  font-weight: 400;
}

/* О МИПО */
.about-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.about-content {
  min-width: 0;
}

.about-subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-subtitle span {
  color: #e42026;
}

.about-text {
  opacity: 0.6;
  font-weight: 400;
}

/* НАПРАВЛЕНИЯ ИССЛЕДОВАНИЙ */
.research-section .section-title {
  margin-bottom: 1.5rem;
}

.research-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.research-item {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16.5rem;
  padding: 1.5rem;
  border-radius: 1.875rem;
  overflow: hidden;
}

.research-item.dark {
  color: #ffffff;
}

.research-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.research-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.research-item:hover .research-bg {
  transform: scale(1.05);
}

.research-content {
  position: relative;
  z-index: 2;
}

.research-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.research-text {
  opacity: 0.5;
}

.research-item.dark .research-text {
  opacity: 0.8;
}

.research-arrow {
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #e42026;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.research-item.dark .research-arrow {
  background: #ffffff;
}

.research-arrow img {
  width: 1rem;
  height: 1rem;
  transition: all 0.4s ease;
}

.research-item:hover .research-arrow img {
  transform: rotate(45deg);
}

.research-bottom {
  display: flex;
  justify-content: center;
}

.research-bottom .btn {
  min-width: 26rem;
}

/* ЭТАПЫ РАБОТЫ */
.stages-section .section-title {
  margin-bottom: 1.5rem;
}

.stages-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stages-item {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 10.5rem;
  justify-content: space-between;
  border-radius: 1.875rem;
  background: #f7f7f7;
  border: 0.0625rem solid transparent;
}

.stages-item:nth-child(3) {
  z-index: 1;
  transform: rotate(-2.536deg);
}

.stages-item:nth-child(4) {
  z-index: 2;
  margin-left: -1rem;
  transform: rotate(2.199deg);
}
/* .stages-text br {
  display: none;
} */
.stages-item.outline {
  background: #ffffff;
  border-color: #272727;
}

.stages-item.red {
  background: #e42026;
  color: #ffffff;
}

.stages-num {
  font-weight: 400;
  opacity: 0.5;
  font-size: 0.875rem;
  margin-bottom: 0.65rem;
}

.stages-title {
  font-size: 1.5rem;
  white-space: nowrap;
}

.stages-text {
  opacity: 0.6;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.04375rem;
}

.stages-item.red .stages-num,
.stages-item.red .stages-text {
  opacity: 0.8;
}

/* ОБОРУДОВАНИЕ */
.equipment-section {
  background: #f7f7f7;
  padding: 2.5rem 0;
  border-radius: 3.75rem 3.75rem 0 0;
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.equipment-item {
  padding: 1.5rem;
  border-radius: 1.875rem;
  background: #ffffff;
}

.equipment-top {
  display: grid;
  grid-template-columns: 23% 1fr 30%;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.equipment-cat span {
  color: #e42026;
}

.equipment-title {
  font-size: 1.5rem;
  min-width: 0;
}

.equipment-meta {
  min-width: 0;
}

.equipment-meta-title {
  color: #e42026;
  margin-bottom: 0.2rem;
}

.equipment-meta-text span {
  color: #e42026;
}

.equipment-main {
  display: grid;
  grid-template-columns: 23% 1fr;
  gap: 1.25rem;
  align-items: start;
}

.equipment-image {
  min-width: 0;
  height: 18.5rem;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.equipment-content {
  min-width: 0;
}

.equipment-desc {
  margin-bottom: 1.5rem;
  letter-spacing: -0.05rem;
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
}

.equipment-table th {
  font-weight: 500;
  text-align: center;
  padding: 0.85rem 1.65rem;
  border: 0.0625rem solid #e6e6e6;
  background: #f7f7f7;
  letter-spacing: -0.05rem;
}

.equipment-table td {
  vertical-align: top;
  padding: 1rem 1.5rem;
  border: 0.0625rem solid #e6e6e6;
  letter-spacing: -0.05rem;
}

.equipment-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.equipment-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.equipment-tag {
  position: relative;
  min-width: 0;
  padding-left: 1rem;
}

.equipment-tag::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #e42026;
}

.equipment-btns {
  display: inline-flex;
  align-items: center;
  float: right;
}

.equipment-btns:hover .btn,
.equipment-btns:hover .btn-circle {
  background: #8f0e12;
}

.equipment-btns:hover .btn-circle img {
  transform: rotate(45deg);
}

.equipment-bottom {
  display: flex;
  justify-content: center;
}

.equipment-bottom .btn {
  min-width: 30rem;
  background: #ffffff;
}

.equipment-desc + .equipment-desc {
  margin-top: -1rem;
}
.equipment-desc span {
  font-weight: 700;
}
.equipment-tags.one-col {
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
}

.equipment-tag span {
  font-weight: 700;
}
.equipment-tag {
  letter-spacing: -0.05rem;
}

.equipment-note {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  opacity: 0.6;
  letter-spacing: -0.04375rem;
}

/* СЕРТИФИКАТЫ */
.certificates-section .section-title {
  margin-bottom: 1.5rem;
}

.certificates-body {
  position: relative;
  display: flex;
  align-items: center;
}

.certificates-slider {
  width: 100%;
  min-width: 0;
}

.certificates-slide {
  min-width: 0;
  padding: 0 0.625rem;
}
.mb--1{
  margin-bottom: -1rem!important;
}
.certificates-slide a {
  display: block;
  height: 18.3rem;
  border-radius: 1.875rem;
  background: #f2f2f2;
  overflow: hidden;
  transform: scale(0.8);
  filter: brightness(0.75);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.certificates-slider .slick-center .certificates-slide a {
  transform: scale(1);
  filter: brightness(1);
}
.certificates-slider .slick-slide:has(+ .slick-center) .certificates-slide a {
  transform: scale(0.85) translateX(1rem);
}

.certificates-slider .slick-center + .slick-slide .certificates-slide a {
  transform: scale(0.85) translateX(-1rem);
}

.certificates-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificates-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
  background: #e42026;
  transition: all 0.25s ease-in;
  flex-shrink: 0;
}

.certificates-arrow:hover {
  background: #8f0e12;
}

.certificates-arrow img {
  width: 1rem;
  height: 1rem;
}

.certificates-prev {
  left: -1.75rem;
}

.certificates-next {
  right: -1.75rem;
}

/* FAQ */
.faq-section .section-title {
  margin-bottom: 1.5rem;
}

.faq-body {
  display: grid;
  grid-template-columns: 1fr 30rem;
  gap: 1.25rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.faq-item {
  padding: 0 2rem;
  padding-right: 0.9rem;
  border-radius: 10rem;
  background: #f7f7f7;
  transition: all 0.35s ease;
}

.faq-item.open, .faq-item.opened {
  border-radius: 1.875rem;
}
.big_content{
  font-size: 1.125rem;
}
.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
  cursor: pointer;
}

.faq-question {
  font-size: 1.25rem;
  min-width: 0;
}

.faq-toggle {
  position: relative;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  border: 0.0625rem solid #e42026;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #e42026;
  transition: all 0.35s ease;
}

.faq-toggle::before {
  width: 1.05rem;
  height: 0.1rem;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 0.1rem;
  height: 1.05rem;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-body-text {
  overflow: hidden;
  display: none;
}

.faq-item.open .faq-body-text {
  display: block;
}

.faq-answer {
  opacity: 0.5;
  padding: 0 1rem 0.9rem 1rem;
}

.faq-image {
  min-width: 0;
  height: 100%;
  border-radius: 1.875rem;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* ОТЗЫВЫ */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.reviews-arrows {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.reviews-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
  border: 0.0625rem solid #e42026;
  background: transparent;
  transition: all 0.25s ease-in;
  flex-shrink: 0;
  color: #e42026;
}

.reviews-arrow img {
  width: 0.9rem;
  height: 0.9rem;
}

.reviews-arrow:hover {
  background: #e42026;
  border-color: #e42026;
  color: white;
}

.reviews-arrow:hover img {
  filter: brightness(0) invert(1);
}

.reviews-slider {
  margin: 0 -0.625rem;
}

.reviews-slide {
  min-width: 0;
  padding: 0 0.625rem;
}

.reviews-item {
  padding: 1.25rem;
  border-radius: 1.875rem;
  background: #f7f7f7;
  min-height: 11.15rem;
}

.reviews-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.reviews-name {
  font-size: 1.25rem;
}

.reviews-date {
  opacity: 0.4;
  font-size: 0.875rem;
  font-weight: 400;
  flex-shrink: 0;
}

.reviews-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.reviews-stars img {
  width: 0.87988rem;
  height: 0.8125rem;
}

.reviews-text {
  letter-spacing: -0.05rem;
}

/* БЛОГ */
.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.blog-all {
  color: #e42026;
  text-decoration: underline;
  transition: all 0.25s ease-in;
}

.blog-all:hover {
  color: #8f0e12;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 1.875rem;
  background: #f5f5f5;
  overflow: hidden;
}

.blog-image {
  height: 9.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.04);
}

.blog-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-text {
  opacity: 0.6;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.blog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.blog-date {
  opacity: 0.4;
  font-size: 0.875rem;
  font-weight: 400;
}

.blog-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #e42026;
  transition: all 0.25s ease-in;
  flex-shrink: 0;
}

.blog-arrow img {
  width: 1rem;
  height: 1rem;
  transition: all 0.25s ease;
}

.blog-item:hover .blog-arrow {
  background: #8f0e12;
}

.blog-item:hover .blog-arrow img {
  transform: rotate(45deg);
}

/* ФУТЕР */
.footer {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.footer-map {
  height: 21.625rem;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-inner {
  position: relative;
}

.footer-form {
  position: absolute;
  top: -25.5rem;
  right: 0;
  z-index: 2;
  width: 36.625rem;
  padding: 2.25rem;
  border-radius: 1.875rem;
  background: #ffffff;
  box-shadow: 0 0 30.6px 0 rgba(0, 0, 0, 0.08);
}

.footer-form-title {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0.85rem;
}

.footer-form-text {
  text-align: center;
  opacity: 0.6;
  letter-spacing: -0.06rem;
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.footer-input {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  margin-bottom: 0.85rem;
  border: none;
  border-radius: 10rem;
  background: #f7f7f7;
  transition: all 0.25s ease-in;
}

.footer-input::placeholder {
  color: #272727;
  opacity: 0.55;
}

.footer-input:focus {
  background: #ebebeb;
}

.footer-textarea {
  height: 8rem;
  resize: none;
  border-radius: 1.875rem;
}

.footer-submit {
  padding: 0.85rem 1.25rem;
  margin-bottom: 1rem;
}

.ajax_form .result {
  display: none;
}

.ajax_form .result p {
  margin-bottom: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.ajax_form .result p.success {
  color: #16794c;
  background: #e9f7ef;
}

.ajax_form .result p.error {
  color: #b42318;
  background: #fdecec;
}

.footer-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.footer-check input {
  display: none;
}

.footer-check-box {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  border: 0.0925rem solid #e42026;
  flex-shrink: 0;
}

.footer-check-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.125rem;
  background: #e42026;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease-in;
}

.footer-check input:checked + .footer-check-box::before {
  opacity: 1;
}
.footer-check-text {
  color: #939393;
  font-weight: 400;
}
.footer-check-text a {
  text-decoration: underline;
}
.footer-check-text:hover {
}
.footer-check-text:hover a {
  color: #e42026;
  text-decoration: none;
}

.footer-note {
  font-style: italic;
  opacity: 0.5;
  font-size: 0.875rem;
  font-weight: 400;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 50%;
  padding-top: 2rem;
  margin-bottom: 3rem;
}

.footer .logo img {
  width: 8.5rem;
  height: 3.85rem;
}

.footer-col {
  min-width: 0;
  font-weight: 400;
}

.footer-col-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  transition: color 0.25s ease-in;
}

.footer-nav a:hover {
  color: #e42026;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.footer-contacts a {
  transition: color 0.25s ease-in;
}

.footer-contacts a:hover {
  color: #e42026;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-info div {
  opacity: 0.7;
}
.footer-info a:hover {
  color: #e42026;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-policy {
  text-decoration: underline;
  transition: all 0.25s ease-in;
  font-weight: 400;
}

.footer-policy:hover {
  color: #e42026;
}

.advantages-section2 {
  padding: 2.5rem 0;
  border-radius: 3.75rem 3.75rem 0 0;
  background: #f7f7f7;
}
.advantages-section2 .advantages-item {
  background: white;
}
.advantages-section2 .advantages-label-div,
.advantages-section2 .advantages-label-img {
  background: #f7f7f7;
}

/* НАША МИССИЯ */
.mission-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.mission-content {
  min-width: 0;
}

.mission-subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission-subtitle span {
  color: #e42026;
}

.mission-text {
  font-weight: 400;
  letter-spacing: -0.05rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.mission-list {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1.25rem;
}

.mission-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-width: 0;
}

.mission-item + .mission-item {
  padding-left: 1.25rem;
  border-left: 0.0625rem solid #e42026;
}

.mission-item-title {
  font-size: 1.5rem;
}

.mission-item-text {
  opacity: 0.6;
  font-weight: 400;
  letter-spacing: -0.05rem;
  font-size: 0.875rem;
}

/* ПОЧЕМУ МИПО */
.why-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.why-section .section-title {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  margin-bottom: 2rem;
}

.why-subtitle {
  grid-column: 3 / 6;
  grid-row: 1 / 2;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-subtitle span {
  color: #e42026;
}

.why-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
  height: 12rem;
  padding: 1.25rem;
  border-radius: 1.875rem;
  background: #f7f7f7;
  border: 0.0625rem solid transparent;
  transition: all 0.25s ease-in;
}

.why-item.outline {
  background: #ffffff;
  border-color: #e42026;
  color: #e42026;
}

.why-item.red {
  background: #e42026;
  color: #ffffff;
}

.why-title {
  font-size: 1.5rem;
}

.why-text {
  opacity: 0.6;
  font-weight: 400;
  font-size: 0.875rem;
}

.why-item.outline .why-text,
.why-item.red .why-text {
  opacity: 0.9;
}

.why-image {
  min-width: 0;
  height: 12rem;
  border-radius: 1.875rem;
  background: #f5f5f5;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-1 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.why-2 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.why-3 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.why-4 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.why-5 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.why-6 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}

.why-7 {
  grid-column: 5 / 6;
  grid-row: 3 / 4;
}

.head-link {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.head-link-section {
  padding-top: 7rem;
  margin-bottom: 2rem;
}
.head-link p {
  color: #e42026;
}

.equipment-section2 .equipment-item {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

/* ИССЛЕДОВАНИЯ (СПИСОК) */
.analysis-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.analysis-group .section-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.analysis-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.analysis-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-width: 0;
  padding: 1.5rem;
  border-radius: 1.875rem;
  background: #f5f5f5;
  overflow: hidden;
  height: 100%;
}

.analysis-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analysis-content {
  position: relative;
  z-index: 2;
}

.analysis-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.analysis-text {
  opacity: 0.5;
  letter-spacing: -0.05rem;
  font-weight: 400;
}

.analysis-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: auto;
}

.analysis-term {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  border: 0.0625rem solid #e42026;
  border-radius: 10rem;
  color: #e42026;
  flex-shrink: 0;
}

.analysis-btn {
  min-width: 10rem;
  padding: 0.75rem 1.25rem;
}

.analysis-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 40.625rem;
  border-radius: 10rem;
  background: #f7f7f7;
  overflow: hidden;
}

.analysis-search-icon {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 1.176rem;
  height: 1.176rem;
  transform: translateY(-50%);
  opacity: 0.5;
}

.analysis-search-input {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 0.85rem 0.85rem 3.25rem;
  border: none;
  background: transparent;
}

.analysis-search-input::placeholder {
  color: #272727;
  opacity: 0.5;
}

.analysis-search-btn {
  min-width: 8rem;
  padding: 0.85rem 1.5rem;
  flex-shrink: 0;
  border-radius: 0 6rem 6rem 0;
}

.analysis-group.hide,
.analysis-item.hide {
  display: none;
}

.analysis-empty {
  display: none;
  font-size: 1.25rem;
  opacity: 0.7;
  padding: 1.5rem 0;
}

.analysis-empty.show {
  display: block;
}

/* СТАТЬЯ */
.article-section {
  margin-top: 2.5rem;
}

.article-section .section-title {
  margin-bottom: 1.5rem;
}

.article-body {
  display: grid;
  grid-template-columns: 1fr 25%;
  gap: 2.5rem;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-text {
  font-size: 1.125rem;
  letter-spacing: -0.05625rem;
  margin-bottom: 2rem;
}

.article-text.bold {
  font-weight: 600;
}

.article-subtitle {
  font-size: 1.5rem;
  color: #e42026;
  margin-bottom: 0.65rem;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.article-list-item {
  position: relative;
  font-size: 1.125rem;
  padding-left: 1.25rem;
}

.article-list-item::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #272727;
}

.article-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid #2727274d;
}

.article-back {
  color: #e42026;
  text-decoration: underline;
  transition: all 0.25s ease-in;
}

.article-back:hover {
  color: #8f0e12;
}

.article-share {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  transition: all 0.25s ease-in;
}

.article-share svg {
  width: 1.5rem;
  height: 1.375rem;
}

.article-share:hover {
  color: #e42026;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  z-index: 200;
  max-width: calc(100% - 2rem);
  padding: 0.85rem 1.25rem;
  border-radius: 10rem;
  background: #272727;
  color: #ffffff;
  box-shadow: 0 0.85rem 2rem rgba(0, 0, 0, 0.16);
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 1rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.copy-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.article-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

/* КАК НАЧАТЬ СОТРУДНИЧЕСТВО */
.steps-section .section-title {
  margin-bottom: 2.5rem;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
}

.steps-item {
  position: relative;
  min-width: 0;
  text-align: center;
  padding-top: 4rem;
}

.steps-item::after {
  content: "";
  position: absolute;
  top: 1.375rem;
  left: calc(50% + 1.375rem);
  width: calc(100% - 0.5rem);
  height: 0.0625rem;
  background: #272727;
  opacity: 0.35;
}

.steps-item:last-child::after {
  display: none;
}

.steps-num {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #ffffff;
  border: 0.0625rem solid #272727;
  transform: translateX(-50%);
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.0625rem;
  transition: all 0.35s;
}

.steps-item.red .steps-num {
  background: #e42026;
  border-color: #e42026;
  color: #ffffff;
}

.steps-item.outline .steps-num {
  border-color: #e42026;
  color: #e42026;
}

.steps-num.red {
  background: #e42026;
  border-color: #e42026;
  color: #ffffff;
}

.steps-item.red::after,
.steps-item.outline::after {
  background: #e42026;
  opacity: 1;
}

.steps-title {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.075rem;
  margin-bottom: 0.5rem;
}

.steps-text {
  opacity: 0.7;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.04375rem;
}

/* МИПО — ЛАБОРАТОРНЫЙ ПАРТНЁР */
.partner-section .section-title {
  margin-bottom: 2.5rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.partner-item {
  min-width: 0;
  text-align: center;
  padding: 1.25rem;
  border-radius: 1.875rem;
  background: transparent;
  transition: all 0.25s ease-in;
}

.partner-item.accent1 {
  /* border: 1px solid #ffc9c9; */
  background: linear-gradient(0deg, #ffebeb 0%, rgba(255, 222, 222, 0) 100%);
  color: #e42026;
}
.partner-item.accent {
  background: linear-gradient(180deg, #ffebeb 0%, rgba(255, 222, 222, 0) 100%);
  color: #e42026;
}

.partner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #f7f7f7;
}

.partner-item.accent .partner-icon,
.partner-item.accent1 .partner-icon {
  background: #e42026;
}

.partner-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.partner-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.partner-text {
  opacity: 0.6;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.04375rem;
}

.partner-item.accent .partner-text {
  opacity: 0.85;
}

/* LIS-СИСТЕМА */
.lis-section {
  padding: 2.5rem 0;
  border-radius: 3.75rem 3.75rem 0 0;
  background: #f7f7f7;
}

.lis-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.lis-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.lis-section .section-title {
  margin-bottom: 2rem;
}

.lis-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lis-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
  height: 8.9375rem;
  padding: 1.25rem;
  border-radius: 1.875rem;
  background: #ffffff;
}

.lis-item.red {
  background: #e42026;
  color: #ffffff;
}

.lis-num {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.7;
}

.lis-title {
  font-size: 1.25rem;
}

.lis-content {
  min-width: 0;
}

.lis-subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lis-subtitle span {
  color: #e42026;
}

.lis-text {
  opacity: 0.6;
  font-weight: 400;
  letter-spacing: -0.05rem;
  margin-bottom: 1.25rem;
}

.lis-text:last-child {
  margin-bottom: 0;
}


.modal .footer-form {
  position: static;
  width: 100%;
  margin: 0;
}
