@font-face {
  font-family: 'ALS_Sector-Regular';
  src: url('../fonts/ALS_Sector-Regular.otf');
  font-weight: normal; /* Насыщенность шрифта */
  font-style: normal; /* Стиль шрифта */
}
@font-face {
  font-family: "ALS_Sector-Bold";
  src: url("../fonts/ALS_Sector-Bold.otf");
} 
@font-face {
  font-family: "ALS_Sector-Stencil";
  src: url("../fonts/ALS_Sector-Stencil.otf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "ALS_Sector-Regular", sans-serif;
}

:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4;
  --primary-color: #2b72fb;
  --c_1: 26, 26, 31;
  --c_2: 0, 100, 255;
  --c_3: 154,15,241;
  --white: white;
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  position: relative;
  font-family: inherit;
  background-color: var(--white);
  color: var(--dark-grey);
  letter-spacing: -0.4px;
}
h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}

.logo {
  margin-right: 5rem;
}


#nav-menu {
  border-bottom: var(--border);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  column-gap: 2rem;
  height: 90px;
  padding: 1.2rem 0;
}

.menu {
  position: relative;
  background: var(--white);
}

.menu-bar li:first-child .dropdown {
  flex-direction: initial;
  min-width: 480px;
}

.menu-bar li:first-child ul:nth-child(1) {
  border-right: var(--border);
}

.menu-bar li:nth-child(n + 2) ul:nth-child(1) {
  border-bottom: var(--border);
}

.menu-bar .dropdown-link-title {
  font-weight: 600;
}

.menu-bar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
}

.menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: var(--primary-color);
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
  display: flex;
  align-items: center;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

@media (max-width: 1280px) {
  #hamburger {
    display: block;
    position: relative;
  }

  .container {
    padding: 1.2rem;
    margin-right: 3rem;
  }

  .menu {
    display: none;
    position: absolute;
    top: 87px;
    left: 0;
    min-height: 100vh;
    width: 100vw;
    z-index: 1000;
  }

  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
  }

  .dropdown ul {
    padding-left: 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
  }

  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
}
@media (max-width: 660px) {
  .container {
    column-gap: 0.2rem;
    padding: 0 15px 0 15px;
    margin-right: 0;
  }
  .logo {
    margin-right: 0.2rem;
  }
  .logo img {
    max-width: 250px;
    max-height: 61px;
  }
}
.w-1 {
  display: flex;
  flex-grow: 1;
  padding: 50px 0 50px 0;
  flex-direction: column;
  row-gap: 30px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(100% - 64px);
  max-width: 1280px;
  align-self: center;
}
.w-3 {
  display: flex;
  flex-grow: 1;
  padding: 50px 0 50px 0;
  flex-direction: column;
  row-gap: 30px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(100% - 64px);
  max-width: 1280px;
  align-self: center;
}
.w-4 {
  display: flex;
  flex-grow: 1;
  padding: 50px 0 50px 0;
  flex-direction: column;
  row-gap: 30px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(100% - 64px);
  max-width: 800px;
  align-self: center;
}
.MT7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
  }
.Kaf_MT7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
  
}
.Kaf_MT7_text {
  color: rgb(0, 100, 255);
  font-family: "ALS_Sector-Bold", sans-serif;
  font-size: 32px;
}
.MT7name {
letter-spacing: -1.5px;
}
.MT7name_text {
  font-size: 50px;
  line-height: 50px;
}
/*.hero_container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 3% /5%;
  z-index: 1;
}*/
.hero_container {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
  width: 40%;
  overflow: hidden;
  border-radius: 1.5% /2.5%;
  z-index: 1;
  min-width: 500px;
  flex: 1;
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .5), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}
.hero_container1 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.h_c {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /*max-width: calc(60% - 10px);*/
  min-width: 500px;
  flex: 1;
  border-radius: 20px;
  /*border: 1px solid #eeeeee;
  background-color: white;
  padding: 5px;*/
}
.h_c1 {
  display: flex;
  justify-content: flex-end;
  margin: 40px 0 0 0;
}
.h_c2 {
  /*padding: 50px;*/
  position: relative; /* Для позиционирования наклейки */
  
  padding: 20px 20px 20px 40px; /* Отступы внутри рамки */
  /*border: 1px solid var(--medium-grey); *//* Рамка */
  border-radius: 20px;
  margin: 80px 0 0 100px; /* Центрирование */
  background-color: var(--primary-color) /*#f9f9f9*/; /* Фон рамки */
  text-align: justify;
  color: white;
  line-height: 1rem;
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .5), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}

/* Стили для наклейки */
.sticker {
  position: absolute; /* Абсолютное позиционирование */
  top: -80px; /* Смещение вверх */
  left: -100px; /* Смещение влево */
  width: 150px; /* Ширина наклейки */
  height: 150px; /* Высота наклейки */
  border-radius: 50%; /* Круглая форма */
  overflow: hidden; /* Обрезка изображения */
  border: 1.5px solid var(--primary-color); /* Рамка наклейки */
  background-color: #fff; /* Фон наклейки */
  box-shadow: 0 4px 8px var(--primary-color), 0 4px 8px #999;
}

.sticker img {
  width: 100%; /* Растягиваем изображение на всю наклейку */
  height: 100%;
  object-fit: cover; /* Обрезка изображения */
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Аналог background-size: cover */
  z-index: 0; /* Помещаем изображение под контент */
}
@media (max-width: 600px) {
  .hero_container {
    min-width: 300px;
  }
  .h_c {
    min-width: 300px;
    gap: 40px;
  }
  .h_c2 {
    margin: 120px 0 0 0; /* Центрирование */
    padding: 20px; /* Отступы внутри рамки */
  }
  .sticker {
    top: -140px; /* Смещение вверх */
    left: 0; /* Смещение влево */
  }
  .MT7name_text {
    font-size: 40px;
    line-height: 40px;
  }
}
.content {
  padding: 8% 8%;
  position: relative;
  z-index: 1;
  color: white;
}

.naprav {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  padding-top: 50px;
}

.naprav1 {
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  flex-wrap: wrap;
  /*position: relative;*/
	/*width: 100%;*/
	box-sizing: border-box;
  column-gap: 5vw;
  gap: 5vw;
}

.btn_nap {
  padding: 40px 50px;
  background: var(--light-grey);
  border-radius: 15px;
  font-size: 25px;
  color: #006CDC;
  transition: all 500ms ease;
  margin: 0px; /* Отступы между кнопками */
}
 
.btn_nap:hover{
  cursor: pointer;
  transform: scale(1.1)
}
.news_h {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
}
.news_h_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn_str {
font-size: 16px;
color: #006CDC;
}
#foot_er {
  border-top: var(--border);
  background-color: var(--primary-color);
  width: 100%;
}
.container_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  column-gap: 2rem;
}
.foot_1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 10px;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  column-gap: 2rem;
  padding: 1rem 20px 0 20px;
  font-size: 1.2rem;
}

.foot_2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  column-gap: 7rem;
  padding: 0 20px 20px 20px;
  font-size: 0.8rem;  
}
@media (max-width: 660px) {
  .foot {
    column-gap: 0.3rem;
    padding: 1rem 15px 0 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.str_prepod {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.prepod {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.line_prep {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 7vw;
  grid-row-gap: 40px;
}
.gr_prep {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.box_s_foto {
    display: flex;
    align-items: center;
    column-gap: 16px;
    background-color: rgba(255, 255, 255, 1);   
    padding: 12px 20px 12px 12px;
    border-radius: 12px 12px 12px 12px;
    box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .04), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}
.box_s_foto:hover {
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .5), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}
.foto_prep {
  flex: 0 0 60px;
  width: 60px;
}
.foto_prep2 {
  flex: 0 0 60px;
  width: 60px;
}
@media (max-width: 400px) {
  .foto_prep2 {
    width: 40px;
  }
}
@media (max-width: 800px) {
  .line_prep {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 7vw;
    grid-row-gap: 40px;
  }
}
@media (max-width: 600px) {
  .line_prep {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 7vw;
    grid-row-gap: 40px;
  }
}

.w-s-image {
  width: 60px !important;
  height: 60px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center; /* Центрирует изображение */
}
.w-s-image1 {
  height: 250px;
  width: 250px;
  border-radius: 125px;
  object-fit: cover;
  object-position: center; /* Центрирует изображение */
}
.txt_prep {  
  display: flex;
    flex-direction: column;
    row-gap: 2px;
}
.name {
  font-size: 16px;
  color: rgba(var(--c_1), 1);
}
.name:hover {
  color: var(--primary-color);
}
.zvan{
  font-size: 14px;
  color: rgba(var(--c_1), .5);
}
.card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 1);   
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 6px 22px -6px rgba(var(--c_1), .02), 0 2px 8px -2px rgba(var(--c_1), .02), 0 0 0 1px rgba(var(--c_1), .04);
}
.btn_serve {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.pr_str {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 80px;
  justify-content: center;
  padding: 32px;
}
.pr_str4 {
  display: flex;
  align-items: center;
  column-gap: 80px;
  justify-content: center;
  padding: 32px;
  text-align: justify;
  line-height: 1.6;
}
.pr_1 {
  flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-radius: 500px;
}
.pr_2 {
  max-height: 350px;
}
.pr_3 {
  display: flex;
  flex-direction: column;  
}
.pr_4 {
  margin: 4px 0 0 0;
  display: flex;
  flex-direction: column;
  column-gap: 4px;
  row-gap: 2px;
}
.pr_shapka {
  display: flex;
  justify-content: center;
}
.pr_shapka1 {
  display: flex;
  justify-content: center;
  padding: 0 24px 50px 24px;
}
.pr_shapka2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 50px 24px;
}
.pr_5 {
  display: flex;
  align-items: flex-start;
  column-gap: 5px;
  color: var(--dark-grey);
}
.pr_6 {
  display: flex;
  align-items: flex-start;
  column-gap: 5px;
  color: var(--dark-grey);
  padding-top: 20px;
}
.pr_str2 {
  display: grid;
  grid-template-columns: minmax(100px, 280px) auto;
  grid-column-gap: 80px;
  grid-row-gap: 10px;
  padding: 32px;
}
@media (max-width: 800px) {
  .pr_str2 {
  display: flex;
  flex-direction: column;
  }
}
.pr_str3 {
  display: grid;
  grid-template-columns: minmax(100px, 350px) auto;
  grid-column-gap: 80px;
  grid-row-gap: 10px;
  padding: 32px;
}
.pr_8 {
  padding: 1rem;
}
.pr_9 {
  padding: 20px 0 0 0;
}
.map {
  text-align: center;
  padding: 20px;
}
.map iframe {
  width: 100%; /* Ширина карты */
  height: 300px; /* Высота карты */
  border: 2px solid #ccc; /* Рамка вокруг карты */
  border-radius: 10px; /* Закругленные углы */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Тень */
}
.cont_page {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1000px;
  flex-grow: 1;
  align-self: center;
}
.cont_sh {
display: flex;
justify-content: center;
padding: 50px;
box-sizing: border-box;
}
.pole {
display: flex;
flex-direction: column;
justify-content: space-between;
max-width: 1280px;
/*border: 2px solid #ccc; /* Рамка вокруг карты */
border-radius: 10px; /* Закругленные углы */
box-shadow: 0 4px 8px var(--primary-color); /* Тень  rgba(0, 0, 0, 0.2) */ 
}
.str1 {
display: flex;
/*row-gap: 50px;*/
flex-wrap: wrap;
align-items: center;
}
.str2 {
display: flex;
flex-wrap: wrap;
align-items: center;
padding-top: 40px;
border-top: var(--border);
}
.cont {
display: flex;
flex-direction: column;
row-gap: 20px;
flex-wrap: wrap;
justify-content: center;
}
.col {
display: flex;
flex-direction: column;
row-gap: 20px;
flex-wrap: wrap;
padding: 20px;
width: calc(100%-590px);
align-items: center;
}
.foto_zd {
padding: 20px;
align-items: center;
/*max-width: 590px;
max-height: 440px;*/
width: 50%;
}
.foto_zd img {
  width: 100%;
}
@media (max-width: 800px) {
  .str1, .str2{
  flex-direction: column-reverse;
  }
  .cont_sh {
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  .foto_zd {
    width: 100%;
  }
}
.b_news_foto {
  width: 260px;
  height: 150px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  flex-shrink: 0;
}

.b_news_foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_h_2 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 16px;
  justify-content: center;
}
.news_block {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  padding: 12px 20px 12px 12px;  
}
.news_block_1 {
  background-color: rgba(255, 255, 255, 1);   
  border-radius: 12px;
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .04), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}
.news_title {
  font-size: 1.2rem;
text-align: justify;
}
.news_block:hover {
  color: var(--primary-color);
}
.partners {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
}
.partner_logo {
  width: 150px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.partner_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.w-2 {
  display: flex;
  flex-grow: 1;
  padding: 50px 0 50px 0;
  flex-direction: column;
  row-gap: 30px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(100% - 64px);
  max-width: 800px;
  align-self: center;
}
.tn1 {
  line-height: 250%;
}
.news_foto {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news_foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.his_1 {
  display: flex;
}
.his_2 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 20px;
  padding-right: 20px;
}
.h_link:hover, .m_link:hover, .m1_link:hover {
  color: var(--primary-color);
}
.his_3 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 20px;
  padding-right: 20px;
  min-width: 350px;
  border-right: var(--border);
  border-width: 3px;
}
.his_4 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-left: 40px;
  text-align: justify;
  min-height: 50vh;
}
@media (max-width: 800px) {
  .tn1 {
    display: none;
  }
  .his_3 {
    display: none;
  }
  .his_4 {
    padding-left: 0;
  }
}
.m1_link {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.razrab {
  font-size: 14px;
}
.txt_foot {
  font-size: 14px;
}
.ab_shapka {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}
.ab1 {
  display: flex;
  justify-content: center;
  font-size: 20px;
}
.ab2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 40px;
}
.ab3 {
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*align-items: flex-start;
  justify-content: flex-end;*/
  row-gap: 24px;
  padding: 36px 36px 36px 36px;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 6px 22px -6px #333333, 0 2px 8px -2px rgba(var(--c_1), .02), 0 0 0 1px rgba(var(--c_1), .04);
}
@media (max-width: 1200px) {
  .ab2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .ab2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .ab3 {
    height: 400px;
  }
}
.g-958-1812 {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.ab4 {
  display: flex;
  flex-direction: row-reverse;
}
.ab5 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.btn_5 {
  background-color: white;
  padding: 12px 24px 12px 24px;
  border-radius: 100px;
  max-width: 150px;
}
.btn_5:hover {
  color: var(--primary-color);
}
.asp_shapka {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  padding: 36px 36px 36px 36px;
  border-radius: 12px 12px 0px 0px;
  box-shadow: 0 6px 22px -6px #333333, 0 2px 8px -2px rgba(var(--c_1), .02), 0 0 0 1px rgba(var(--c_1), .04);
  background: linear-gradient(to top right, rgb(180, 231, 145), rgb(38, 194, 46));
  color: white;
}
.mag_shapka {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  padding: 36px 36px 36px 36px;
  border-radius: 12px 12px 0px 0px;
  box-shadow: 0 6px 22px -6px #333333, 0 2px 8px -2px rgba(var(--c_1), .02), 0 0 0 1px rgba(var(--c_1), .04);
  background: linear-gradient(to top right, rgb(167, 167, 247), rgb(58, 58, 236));;
  color: white;
}
.asp1 {
  padding: 20px;
}
.asp2, .asp6 {
  color: var(--primary-color);
}
.asp2 {
  display: flex;
  justify-content: flex-end;
  padding-right: 250px;
  padding-top: 25px;
}
.card1 {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 1);   
  border-radius: 0px 0px 12px 12px;
  box-shadow: 0 6px 22px -6px #333333, 0 2px 8px -2px rgba(var(--c_1), .02), 0 0 0 1px rgba(var(--c_1), .04);
}
.asp3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.asp7 {
  color: var(--medium-grey);
}
.asp9 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-top: 5px;
}
.asp9_1 {
  display: flex;
  flex-direction: column;
}
.asp9_2 {
color: var(--primary-color);
}
.accordion {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
}

.accordion-item {
  border-bottom: 1px solid var(--light-grey);
  border-top: 1px solid var(--light-grey);
  overflow: hidden;
}
.accordion-item1 {
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  height: 120px;
  cursor: pointer;
}
.accordion-header6 {
  display: flex;
  justify-content: space-between;
  height: 120px;
  cursor: pointer;
}
.accordion-header4 {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.accordion-header1 {
  padding: 20px;
  /*background: #f9f9f9;*/
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.accordion-header5 {
  padding: 20px;
  /*background: #f9f9f9;*/
  display: flex;
  align-items: center;
  gap: 15px;
}
.accordion-header2 {
  padding: 60px 20px 0px 0px;
}
.accordion-header3 {
  padding: 30px 20px 0px 0px;
}
.accordion-header h3, .accordion-header h4 {
  margin: 0;
}
.accordion-header h4 {
  color: #666;
  font-weight: normal;
}
.accordion-header .arrow {
  transition: transform 0.3s;
}
.accordion-header4 .arrow {
  transition: transform 0.3s;
}
.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.accordion-content4 {
  max-height: 600px;
  padding: 20px 20px 40px 20px;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.accordion-content3 {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
/* Раскрытый аккордеон */
.accordion-item.active .accordion-content {
  max-height: 800px;
  padding: 20px 20px 40px 20px;
}
.accordion-item1.active .accordion-content3 {
  max-height: 5000px;
  padding: 20px 0px 40px 0px;
}
.arrow {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header .accordion-header2 .arrow {
  transform: rotate(180deg) !important;
  transition: transform 0.3s ease; /* добавьте плавность анимации */
}
.accordion-item1.active .accordion-header4 .accordion-header3 .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease; /* добавьте плавность анимации */
}
.accordion-content1 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.asp10 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.asp10_1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
  padding-top: 20px;
}
.asp11 {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 50px;
  border-bottom: var(--border);
}
.btn_6 {
  background-color: white;
  padding: 12px 24px 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  width: 220px;
  font-family:"ALS_Sector-Bold", sans-serif;
}
.btn_6:hover {
  color: var(--primary-color);
}
.asp12 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  column-gap: 20px;
}
.btn_7 {
  background-color: white;
  padding: 12px 24px 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  width: 270px;
  font-family:"ALS_Sector-Bold", sans-serif;
}
.btn_7:hover {
  color: var(--primary-color);
}
.btn_8 {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  width: 270px;
}
.btn_9 {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
}
.btn_9:hover {
  background-color: white;
  color: var(--primary-color);
}
.asp12 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 25px;
  column-gap: 25px;
}
.asp13 {
  display: flex;
  gap: 20px;
  padding-left: 20px;
  padding-top: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.asp15 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-top: 20px;
}
.asp_btn {
  padding: 20px 20px;
  cursor: pointer;
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  width: 230px;
}
.asp_btn.active {
  background-color: var(--primary-color);
  color: white;
}
.asp16 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.info-box {
  padding: 15px;
  margin-top: 20px;
  display: none;
}
.info-box4 {
  padding: 15px;
  margin-top: 20px;
}
.info-box1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
}
.info-box5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
.asp31 {
  margin: 20px;
  padding-left: 100px;
}
@media (max-width: 400px) {
  .w-3 {
    width: 100%;
    padding: 0;
  }
  .asp2 {
    justify-content: center;
    padding-right: 0;
  }
  .asp3 {
    padding-left: 0;
    padding-right: 0;
  }
  .asp31 {
    padding-left: 0px;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .info-box5 {
    grid-template-columns: repeat(2, 1fr);;
  }
}
@media (max-width: 600px) {
  .info-box5 {
    grid-template-columns: repeat(1, 1fr);;
  }
}
.spec_shapka {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  padding: 36px 36px 36px 36px;
  border-radius: 12px 12px 0px 0px;
  box-shadow: 0 6px 22px -6px #333333, 0 2px 8px -2px rgba(var(--c_1), .02), 0 0 0 1px rgba(var(--c_1), .04);
  background: linear-gradient(to top right, rgb(231, 103, 80), #741919);
  color: white;
}
.asp22 {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 50px;
}
.asp18 {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2vw;
  grid-row-gap: 40px;
}
@media (max-width: 800px) {
.asp18 {
  grid-template-columns: repeat(1, 1fr);}
}
.asp19 {
  display: flex;
  align-content: center;
  justify-content: center;
  border: var(--border);
}
.asp20 {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.asp21 {
  height: 70px;
  text-align: center;
  color: rgba(var(--c_1), .5);
}
.asp23 {
  padding-top: 20px;
  padding-bottom: 10px;
}
.asp24 {
  display: flex;
  flex-direction: column;
}
.asp26 {
  color: rgba(var(--c_1), .5);
  padding-bottom: 10px;
}
.foto_prep1 {
  flex: 0 0 140px;
  width: 120px;
  display: flex;
  align-items: center;
}
.w-s-image2 {
  width: 120px !important;
  height: 120px;
  border-radius: 60px;
  object-fit: cover;
  object-position: center; /* Центрирует изображение */
}
.box_s_foto1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 16px;
  background-color: rgba(255, 255, 255, 1);   
  padding: 12px;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .04), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}
.txt_prep1 {  
  display: flex;
    flex-direction: column;
    row-gap: 2px;
    align-items: center;
}
.accordion-content2 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.spec1 {
  color: rgba(var(--c_1), .5);
}
.spec2 {
  color: var(--primary-color);
}
.spec2:hover {
  opacity: 0.7;
}
.spec3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.spec4 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.spec5 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 25px
}
.spec6 {
  display: flex;
  flex-direction: column;

}
.spec7 {
  height: 32px;
}
.spec8 {
  display: flex;
  gap: 20px;
  padding-top: 25px;
  flex-wrap: wrap;
}
.spec9 {
  text-indent: 30px;
  text-align: justify;
}
.spec10, .spec15 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
 
}
.spec12 {
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.spec11 {
  display: flex;
  align-items: center;
  padding: 20px;
  min-width: 220px;
}
.spec13 {
  text-align: justify;
}
.spec13::before {
  content: "✓";
  font-size: 20px;
  margin-right: 5px;
  color: var(--primary-color);
}
.spec14 {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 50px;
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.spec18 {
  padding-left: 100px;
}
@media (max-width: 800px) {
  .spec10, .spec15 {
    flex-wrap: wrap;
  }
  .spec15 {
    flex-direction: column-reverse;
  }
}
@media (max-width: 400px) {
  .spec6 {
    gap: 10px;
  }
  .spec18 {
    padding-left: 0;
  }
}

.spec16 {
  margin: 20px;
  display: flex;
  justify-content: center;
}
.spec17 {
  display: flex;
  flex-direction: column;
}
.spec17 {
  display: flex;
  align-items: center;
}

.asp28:hover {
  color: var(--primary-color);
}
.asp29 {
  height: 45px;
  text-align: center;
  color: rgba(var(--c_1), .5);
}
.w-s-image_diag {
  width: 100%;
  object-fit: cover;
  object-position: center; /* Центрирует изображение */
  border: 1px solid rgba(26, 26, 31, .04);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
  cursor: zoom-in; 
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .04), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}
.text_1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.zag {
  text-align: right;
}
.zag1 {
  text-align: left;
}
.box_1, .box_2 {
  display: flex;
  gap: 20px;
}
.info-box2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.info-box3 {
  margin-top: 20px;
  display: none;
}
.b_f1 {
  min-width: 40%; /* Заменяем min-width на width */
  max-width: 40%; /* Добавляем ограничение максимальной ширины */
  height: 240px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden; /* Чтобы изображение не выходило за границы */
}
@media (max-width: 800px) {
  .box_1 {
    flex-wrap: wrap;
  }
  .box_2 {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .b_f1 {
    width: 100%; /* Добавляем это свойство */
    min-width: 100%;
    max-width: 100%;
    height: auto; /* Можно добавить для сохранения пропорций */
  }
}
.asp30 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-top: 20px;
  justify-content: center;
}

.image-viewer { 
  position: relative; 
  max-width: 800px; 
  margin: 20px auto; 
  text-align: center; 
}
.w-s-image3 {
  width: 100%;
  object-fit: cover;
  object-position: center; /* Центрирует изображение */
}
.b_f1 img { 
  width: 100%; 
  object-fit: cover;
  object-position: center; /* Центрирует изображение */
  cursor: zoom-in; 
  /*border: 2px solid #ddd; */
}
.arrow1 { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: rgba(0, 0, 0, 0.5); 
  color: white; 
  border: none; 
  padding: 10px; 
  cursor: pointer; 
  font-size: 18px; 
  z-index: 10; 
}
.arrow1.left { 
  left: 10px; 
} 
.arrow1.right { 
  right: 10px; 
}
.modal { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  position: fixed; 
  top: 0; 
  left: 0; width: 100%; 
  height: 100%; 
  background: rgba(0, 0, 0, 0.9); 
  z-index: 1000; 
}
.modal-content { 
  max-width: 90%; 
  max-height: 90%; 
  object-fit: contain; 
}
.modal-arrow1 { 
  background: rgba(0, 0, 0, 0.5); 
  color: white; 
  border: none; 
  padding: 15px; 
  cursor: pointer; 
  font-size: 24px; 
  margin: 0 10px; 
}
.close { 
  position: absolute; 
  top: 20px; 
  right: 30px; 
  color: white; 
  font-size: 35px; 
  cursor: pointer; 
}
.sov {
  padding: 32px;
}
.sov_top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 35vw;
  grid-row-gap: 35px;;
  gap: 20px;
}
@media (max-width: 400px) {
  .sov_top {
    grid-template-columns: repeat(1, 1fr);}
  }
.box_s_foto2 {
  display: flex;
  align-items: center;
  column-gap: 16px;
  background-color: rgba(255, 255, 255, 1);   
  padding: 12px 20px 12px 12px;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .04), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
  max-width: 350px;
}
.box_s_foto2:hover {
  box-shadow: 0 6px 22px -6px rgba(26, 26, 31, .5), 0 2px 8px -2px rgba(26, 26, 31, .02), 0 0 0 1px rgba(26, 26, 31, .04);
}
.sov_top1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sov_sost {
  padding: 20px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lab_kt_str1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 80px;
  justify-content: center;
  text-align: justify;
  line-height: 1.6;
}
.lab_kt_str2 {
  display: flex;
  gap: 20px;
  padding: 16px 32px 16px 32px;
  align-items: center;
}
.lab_kt_str3 {
  display: flex;
  gap: 20px;
  padding: 16px 32px 16px 32px;
  align-items: center;
}
.lab_kt_str4 {
  display: flex;
  flex-direction: column;
  column-gap: 80px;
  text-align: justify;
  line-height: 1.6;
}
.lab_kt_str5 {
  display: flex;
  flex-direction: column;
  text-align: justify;
  line-height: 1.6;
}
.lab_kt_str6 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: justify;
  line-height: 1.6;
  padding: 0 32px 0 32px;
}
.b_f2 {
  min-width: 40%; /* Заменяем min-width на width */
  max-width: 40%; /* Добавляем ограничение максимальной ширины */
  height: 450px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden; /* Чтобы изображение не выходило за границы */
}
.b_f2 img { 
  width: 100%; 
  object-fit: cover;
  object-position: center; /* Центрирует изображение */
  cursor: zoom-in; 
  /*border: 2px solid #ddd; */
}
@media (max-width: 1000px) {
  .lab_kt_str2 {
    flex-wrap: wrap;
  }
  .lab_kt_str3 {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .b_f2 {
    width: 100%; /* Добавляем это свойство */
    min-width: 100%;
    max-width: 100%;
    height: auto; /* Можно добавить для сохранения пропорций */
  }
}
.ray1 {
  display: flex;
  align-content: center;
  justify-content: center;
  border: var(--border);
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 50px;
}
.ray2 {
  display: flex;
  flex-direction: column;
  padding: 40px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .ray1 {
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .pr_str4 {
    padding: 24px;
  }
  .pr_str3 {
    padding: 24px;
    grid-column-gap: 10px;
  }
  .sov {
    padding: 24px;
  }
}
.lab_type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  grid-auto-rows: 1fr;
  padding: 32px;
}
.btn_lab {
  padding: 15px;
  color: var(--primary-color);
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn_lab:hover {
  background-color: var(--primary-color) ;
  color: white;
}
@media (max-width: 800px) {
  .lab_type {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .lab_type {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.btn-to-noc {
  display: flex;
  justify-content: flex-end;
  color: var(--primary-color);
  padding: 32px;
}