/* Общие стили */
* {
	padding: 0;
	margin: 0;
    clear: both;
}

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

:focus,
:active {
outline: none;
}

a:focus,
a:active {
outline: none;
}

nav,
footer,
header,
aside {
display: block;
}
header { position: relative; }
:root {
   --primary-color: #1e88e5;
  --primary-dark: #1565c0;
  --primary-light: #42a5f5;
  --accent-color: #ff6f00;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
  --success-color: #43a047;
  --color-primary: #1e3a8a;
  --color-accent: #dc2626;
  --color-gray-900: #111827;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-400: #9ca3af;
  --color-gray-700: #374151;
  --pr-bg-1: #f6f8fb;
  --pr-bg-2: #eef2f7;
    --pr-ink: #1f2a33;
    --pr-muted: #6b7b88;
    --pr-card: #ffffff;
    --pr-accent: #0e6cc4;
    --pr-shadow: 0 10px 28px rgba(18, 38, 63, 0.12);
    --pr-radius: 16px;
}
html,
body {
width: 100%;
font-size: 100%;
line-height: 1;
font-size: 14px;
-ms-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
background-color: #F2F4F8;
}

input,
button,
textarea {
font-family: inherit;
}

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

button {
cursor: pointer;
}

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

a,
a:visited {
text-decoration: none;
}

a:hover {
text-decoration: none;
}

img {
vertical-align: top;
}
html { scroll-behavior: smooth; }
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
font-weight: inherit;
}

.top_height{
    height: 800px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер */
.fon{
	position: relative;
	width: 100%;
}
.fon1{
  display: none;
  position: relative;
	width: 100%;
}
.fon img{
    width: 100%;
}
.fon1 img{
  width: 100%;
}
.verh{
  padding: 15px 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}
.verh_verh {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.verh_middl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.logo img{
  width: 100%;
}
.logo{
  width: 10%;
}
.logo1{
  width: 10%;
  background-color: aliceblue;
}
.logo1 img{
  width: 100%;
}
.verh_mat{
  width: 90%;
}
.menu_gorodov{
    font-size: 34px;
    color: white;
    text-shadow: 
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black,
        -1px  0px 0 black,
         1px  0px 0 black,
         0px -1px 0 black,
         0px  1px 0 black;
}

.verh_middl_title{
    font-size: 34px;
    color: #000;
    text-shadow: 
        -1px -1px 0 aliceblue,
         1px -1px 0 aliceblue,
        -1px  1px 0 aliceblue,
         1px  1px 0 aliceblue,
        -1px  0px 0 aliceblue,
         1px  0px 0 aliceblue,
         0px -1px 0 aliceblue,
         0px  1px 0 aliceblue;  
}

/* Меню */
.menu {
    display: flex;
    list-style: none;
    align-items: center;
    background-color: aliceblue;
    width: 100%;
    justify-content: space-evenly;
}

.menu li {
    position: relative;
    margin-left: 30px;
}

.menu li:first-child {
    margin-left: 0;
}

.menu a, .menu a:visited{  
    color: black;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
    font-size: 23px;
    font-weight: 500;
}

.menu a:hover {
    color: #007bff;
}

/* Выпадающее меню */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color:aliceblue;
    min-width: 400px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 999;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #555;
}

.dropdown-menu a:hover {
    background-color: #555;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Бургер меню */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.burger span {
    height: 3px;
    background-color: aliceblue;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Анимация бургера */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Контент */


.m_contact{
    background-color: #30383b;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
}
.m_contanct_izo{
    width: 50px;
}
.m_contanct_izo img{
    width: 100%;
}
.m_telefon{
    text-align: center;
}
.m_email{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.status-indicator {
    width: 10px;
    height: 10px;
    background: #00ff41;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    opacity: 1;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 10px #00ff41;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}
.m_email_text{
    font-size: 14px;
    color: aliceblue;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.m_telefon a, .m_telefon a:visited{
    color: aliceblue;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    font-size: 22px;
}
.block_title{
    position: absolute;
    top: 35%;
    left: 20%;
}
.block_title h1{    
    font-size: 68px;
    font-weight: 900;
    color: white;
    text-shadow: 
        -1.4px -1.4px 0 black,
        1.4px -1.4px 0 black,
        -1.4px  1.4px 0 black,
        1.4px  1.4px 0 black,
        -1.4px  0px 0 black,
        1.4px  0px 0 black,
         0px -1.4px 0 black,
         0px  1.4px 0 black;
    letter-spacing: 3px;   
    max-width: 80%;
}
.block_title_offer{  
    font-size: 50px;
    font-weight: 700;
    color: aliceblue;
    text-shadow: 
        -1.4px -1.4px 0 black,
        1.4px -1.4px 0 black,
        -1.4px  1.4px 0 black,
        1.4px  1.4px 0 black,
        -1.4px  0px 0 black,
        1.4px  0px 0 black,
         0px -1.4px 0 black,
         0px  1.4px 0 black;
    letter-spacing: 3px; 
    background-color: #007bff;
    padding: 0 3px;
    border-radius: 3px;
}
.block_title_preim{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 30%;
}
.block_title_preim_1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 50%;
}
.raschet{      
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 28px 15px;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#ff7402), to(#ffa700));
    background: -webkit-linear-gradient(left, #ff7402 0, #ffa700 100%);
    background: -o-linear-gradient(left,#ff7402 0,#ffa700 100%);
    background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
    margin-top: 70px;
    width: 32%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans',Arial, sans-serif;
   /* font-family: "Manrope", sans-serif;*/
   animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
}
.title_qviz{
    margin: 0 auto;
    margin-top: 20px;
    width: 80%;
    text-align: center;
    font-family: "Manrope", sans-serif;  
    font-size: 70px;
}
.section_qviz{
    margin: 0 auto;
    margin-top: 20px;
    width: 70%;
    background-color: #e06500;
    padding: 10px;
    border-radius: 12px;
}
.section_qviz_content{
    background-color: white;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
}
.section_qviz_content_work{
    width: 100%;
}
.qviz_progress_chislo{
    margin-top: 10px;
    font-size: 24px;
    font-weight: 400;
}

.section_qviz_title{
    text-align: center;
    font-size: 27px;
}
.section_qviz_ekran{
    display: none;
}
.section_qviz_ekran.active{
    display: block;
}
.section_qviz_ekran_content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-bottom: 10px;
}
.ekran_block{
    width: 27%;
    cursor: pointer;
    height: 233px;    
}
.ekran_block.active{
    transform: scale(1.1);
    
}
.ekran_block.active .answer-btn{
    background: #30383b;
    border-color: #95a5a6;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.ekran_block.active .answer-btn1{
    background: #30383b;
    border-color: #95a5a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}
.ekran_block1.active .answer-btn1{
    background: #30383b;
    border-color: #95a5a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}
.ekran_block1.active .answer-btn{
    background: #30383b;
    border-color: #95a5a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}
.ekran_block1.active{
    transform: scale(1.1);  
}
.ekran_block1{
    width: 27%;
    cursor: pointer;
    height: 233px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ekran_block img{
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
}
.answer-btn {
    background: #ecf0f1;
    border: 2px solid #bdc3c7;
    color: #2c3e50;
    padding: 10px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    width: 90%;
}
.answer-btn:hover {
    background: #d5dbdb;
    border-color: #95a5a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.answer-btn:active {
    transform: translateY(0);
}
.answer-btn.selected {
    background: #3498db;
    color: white;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}
.answer-btn1 {
    background: #ecf0f1;
    border: 2px solid #bdc3c7;
    color: #2c3e50;
    padding: 44px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    width: 90%;
}
.answer-btn1:hover {
    background: #d5dbdb;
    border-color: #95a5a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.answer-btn1:active {
    transform: translateY(0);
}
.answer-btn1.selected {
    background: #3498db;
    color: white;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}
.qviz_progress_content{
    margin-top: 10px;
}
.progress-bar {
    background: linear-gradient(90deg, #3498db, #2980b9);
    height: 10px;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
}
.section_qviz_control{
    display: flex;
    justify-content: space-around;
    align-items: center;    
    margin-top: 30px;
}
.qviz_button_control{
    padding: 10px;
    width: 15%;
    text-align: center;
    border: 1px solid black;
    border-radius: 7px;
    font-size: 21px;
    cursor: pointer;
}
.nz_qviz{
    background-color: #30383b;
    display: none;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.nz_qviz.active{    
    display: block;    
}
.dal_qviz{
    display: none;
    background-color: #e06500;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.dal_qviz.active{
    display: block;  
}
.mfm_double{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 44px;
    flex-wrap: wrap;
    margin-top: 30px;    
}
.qviz_final_text{
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 476px;
  align-content: center;
}
.qviz_final_text_title{
    background-color: #d5dbdb;
    font-size: 25px;
    border: 1px solid black;
    border-radius: 3px;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
}
.mfm_double_svyaz{
  width: 33%;
}
.mtz_ekr_cont1{
    display: block;
    background-color: #1e80be;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
}
.m_sv_title {
    font-size: 27px;
    padding: 3px 3px;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    line-height: 1.2;
    text-align: center;
}
.m_sv_title1 {
    font-size: 38px;
    padding: 3px 3px;
    color: #000;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}
  
.m_sv_pl {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}
.m_sv_flex {
    width: 33%;
    background-color: white;
    padding: 10px 3px;
    border: 1px solid rgb(224, 224, 224);
    border-right: none;
    cursor: pointer;
    font-size: 19px;
    font-weight: normal;
}
.m_sv_flex.action{  
    background-color: yellow;  
}
.mtz_ekr_cont1 input {
    width: 100%;
    height: 41px;
    padding: 3px;
    font-size: 14px;
    margin-top: 15px;
    border-radius: 5px;
    border: 1px solid rgb(224, 224, 224);
}
.mtz_ekr_cont1 textarea {
    width: 100%;
    height: 88px;
    padding: 3px;
    font-size: 14px;
    margin-top: 15px;
    border-radius: 5px;
    border: 1px solid rgb(224, 224, 224);
    resize: none;
}
.m_sv_otpr {
    width: 100%;
    border: 1px solid black;
    padding: 14px 10px;
    font-size: 22px;
    border-radius: 7px;
    background-color: #e06500;
    color: yellow;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    cursor: pointer;
    margin-top: 13px;
    text-align: center;
}
.m_sv_polit {
    font-size: 12px;
    margin-top: 6px;
    color: #fff;
    line-height: normal;
}
  
.mtz_ekr_cont2 {
    display: none;
    flex-wrap: wrap;
    background-color: #e06500;
    border-radius: 10px;
    padding: 36% 10px;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    line-height: 1.2;
    color: yellow;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  
}
.m_sv_mened0{
    width: 100%;
    text-align: center;
}
.m_sv_mened {
    width: 100%;
    margin-top: 26px;
    font-size: 19px;
    line-height: 1.2;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    text-align: center;
}
.block_director{
    margin: 0 auto;
    margin-top: 30px;
    width: 70%;
    display: flex; 
    background-color: #1e80be; 
    padding: 5px;
    border-radius: 8px;
  }
  .director_title{
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;  
    font-weight: bold;
    font-size: 43px;
  }
  .m_sp_yellow{
    color: yellow;
    font-size: 44px;
  }
  .director_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;  
    gap: 20px;
  }
  .director_media img{
    width: 100%;
    border-radius: 8px;
  }
  .director_media{
    width: 35%;
  }
  .director_content_text{
    padding: 10px;
    width: 63%;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;  
    font-size: 34px;
    font-family: "Trebuchet MS", "Lucida Sans";
    padding-right: 30px;
  }
 
.director_ofer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.director_podpis{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    margin-top: 10px;
}
.director_podpis_svyaz{
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 10px;
}
.director_podpis_svyaz img{
    width: 100%;
}
.trips_2{
    width: 40px;
}
.dct_text {
    padding: 10px 20px;
    margin: 0 auto;
    width: 89%;
    margin-top: 0px;
    background-color: #30383b;
    border: 1px solid black;
    font-weight: bold;
    border-radius: 4px;
    font-size: 23px;
}
.mobil_trips {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 40%;	
	right: 0;
	background-color: #e06500;	
	padding: 3px;
	flex-wrap: wrap;
	width: 100px;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
}
.trips_1{
	background-color: #007bff;	
	color: white;
	font-size: 21px;
	font-weight: bold;
    font-family: "Trebuchet MS", "Lucida Sans";
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
	letter-spacing: 1px;
	margin-bottom: 10px;
	cursor: pointer;
    border-radius: 3px;
}
.trips_block a, .trips_block a:visited{
	color: white;
	font-size: 21px;	
   
}
.trips_block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 61%;
    gap: 7px;
    text-align: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.trips_block img{
	width: 100%;
}
.m_popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	color: white;
	opacity: 0;
	visibility: hidden;
	overflow-y:auto;
	overflow-x: hidden;
	transition: all 0.8s ease 0s;
  }
.m_popup.active{
	opacity: 1;
	visibility: visible;
}
.m_popup.active .m_popup_content{
	/*transform: translate(0px, 0px);*/
	transform: perspective(660px) translate(0px, 0%) rotateX(0deg);
	opacity: 1;  
}  
.m_popup_body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 5px;
}
.m_popup_content {
	background-color: none;
	color:black;	
	padding: 15px;
	position: relative; 
	opacity: 0;
	transform: perspective(660px) translate(0px, -100%) rotateX(45deg);
	transition: all 0.8s ease 0s;
    width: 27%;
}
.m_popup_close {
	position: absolute;
	right: 0px;
	top: -8px;
	font-size: 20px;
	color:black;
}
.m_popup_close img{
	width: 80%;
}
.section_article{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.magazine-header_block{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.magazine-block {
	width: 48%;
	margin: 40px auto;
	background: #ffffff;
	box-shadow: 
	  0 4px 6px rgba(0, 0, 0, 0.05),
	  0 10px 20px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	overflow: hidden;
	font-family: 'Georgia', 'Times New Roman', serif;
	position: relative;
	border: 1px solid #e1e5e9;
	transition: all 0.3s ease;
    
  }
.magazine-block1 {  
  margin: 40px auto;
  background: #ffffff;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Georgia', 'Times New Roman', serif;
  position: relative;
  border: 1px solid #e1e5e9;
  transition: all 0.3s ease;  
  width: 100%;    
}  
  .magazine-block:hover {
	transform: translateY(-5px);
	box-shadow: 
	  0 8px 12px rgba(0, 0, 0, 0.1),
	  0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .magazine-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px 0;
	margin-bottom: 10px;
  }
  
  .category-tag {
	background: linear-gradient(135deg, #ffa700, #ff7402);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: 'Arial', sans-serif;
  }
  
  .reading-time {
	color: #6b7280;
	font-size: 12px;
	font-family: 'Arial', sans-serif;
  }
  
  .magazine-body {
	padding: 0 30px;
  }
  
  .magazine-title {
	font-size: 32px;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.2;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
  }
  
  .author-line {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e7eb;
  }
  
  .author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffa700, #ff7402);
	margin-right: 12px;
	position: relative;
  }
  
  .author-avatar::after {
	content: '👥';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 14px;
  }
  
  .author-info {
	display: flex;
	flex-direction: column;
  }
  
  .author-name {
	font-weight: 600;
	color: #374151;
	font-size: 14px;
	font-family: 'Arial', sans-serif;
  }
  
  .publish-date {
	color: #9ca3af;
	font-size: 12px;
	font-family: 'Arial', sans-serif;
  }
  
  .magazine-content {
	line-height: 1.7;
	color: #374151;
  }
  
  .lead-paragraph {
	font-size: 20px;
	font-weight: 400;
	color: #1f2937;
	margin-bottom: 25px;
	line-height: 1.6;
  }
  
  .magazine-content p {
	font-size: 16px;
	margin-bottom: 20px;
	text-align: justify;
  }
.magazine-content {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
} 
.magazine-content ul{
  margin-top: 20px;
  margin-left: 35px;
  margin-bottom: 10px;
}   
  .highlight-quote {
	background: #f8fafc;
	border-left: 4px solid #ff7402;
	padding: 20px 25px;
	margin: 30px 0;
	font-style: italic;
	font-size: 14px;
	color: #4b5563;
	border-radius: 0 8px 8px 0;
	position: relative;
  }
  
  .highlight-quote::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 15px;
	font-size: 60px;
	color: #ffa700;
	opacity: 0.3;
	font-family: 'Georgia', serif;
  }
  
  .magazine-footer {
	padding: 30px;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
  }
  
  .action-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
  }
  
  .btn-primary, .btn-secondary {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	font-family: 'Arial', sans-serif;
  }
  
  .btn-primary {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
  }
  
  .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
  }
  
  .btn-secondary {
	background: transparent;
	color: #667eea;
	border: 2px solid #667eea;
  }
  
  .btn-secondary:hover {
	background: #667eea;
	color: white;
	transform: translateY(-2px);
  }
/*Производство*/
  .mc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.mc-hero {
    background: #E65100;
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}

.mc-hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mc-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Section Title */
.mc-section-title {
    text-align: center;
    margin-bottom: 50px;    
}

.mc-section-title h2 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.mc-section-title p {
    font-size: 1.1rem;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section */
.mc-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.mc-process-card {
    background: var(--color-gray-50);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    border-top: 4px solid #e06500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mc-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mc-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1565c0;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mc-process-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.mc-process-card p {
    color: var(--color-gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Production Details */
.mc-production-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
}

.mc-production-details h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.mc-production-details ul {
    list-style: none;
    margin-bottom: 20px;
}
.mc-production-image img{
  width: 100%;
}
.mc-production-details li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-gray-700);
    font-size: 1.6rem;
}

.mc-production-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e06500;
    font-weight: 700;
    font-size: 1.2rem;
}

.mc-production-image {
    background: #F57C00;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 600;
}

/* Stats Section */
.mc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #f0fdf4 100%);
    border-radius: 8px;
    padding-left: 30px;
    padding-right: 30px;
}

.mc-stat-card {
    text-align: center;
}

.mc-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 10px;
}

.mc-stat-label {
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

/* Equipment Section */
.mc-equipment {
  margin-bottom: 80px;  
    
}

.mc-equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 25px;
}

.mc-equipment-item {
    background: white;
    border: 2px solid var(--color-gray-100);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.mc-equipment-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.mc-equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mc-equipment-item h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 24px;
}

.mc-equipment-item p {
    font-size: 1.3rem;
    color: var(--color-gray-400);
}

/* Quality Section */
.mc-quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.mc-quality-item {
    padding: 30px;
    background: var(--color-gray-50);
    border-radius: 8px;
}

.mc-quality-item h4 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.7rem;
}

.mc-quality-item p {
    color: var(--color-gray-700);
    line-height: 1.8;
}

/* Gallery Section */
.mc-gallery-section {
    margin-bottom: 80px;
}

.mc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.mc-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid var(--color-gray-100);
}

.mc-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mc-gallery-item:hover img {
    transform: scale(1.05);
}

.mc-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: #fff;
    font-size: 0.9rem;
}

/* Modal */
.mc-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mc-modal.mc-open {
    display: flex;
}

.mc-modal-content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    background: #0b1120;
    border-radius: 10px;
    overflow: hidden;
}

.mc-modal-img-wrapper {
    position: relative;
    background: #020617;
}

.mc-modal-img-wrapper img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #020617;
}

.mc-modal-info {
    padding: 16px 20px;
    color: #e5e7eb;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.mc-modal-title {
    font-weight: 600;
    font-size: 1rem;
}

.mc-modal-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mc-modal-btn {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.mc-modal-btn:hover {
    background: rgba(30, 64, 175, 0.9);
    border-color: #60a5fa;
    transform: translateY(-1px);
}

.mc-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    width: 32px;
    height: 32px;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}
.mc-spacing {
  height: 30px;
}
.mc-modal-close:hover {
    background: rgba(185, 28, 28, 0.95);
    border-color: #fecaca;
    transform: translateY(-1px);
}

.mc-modal-counter {
    font-size: 0.8rem;
    color: #9ca3af;
} 
/*о компании*/
.pr-section {
            padding: 64px 20px;
            position: relative;
            overflow: hidden;
        }

        .pr-section::before {
            content: "";
            position: absolute;
            inset: -20% -10% auto auto;
            width: 420px;
            height: 420px;
            background: radial-gradient(closest-side, rgba(14, 108, 196, 0.12), transparent 70%);
            pointer-events: none;
        }

        .pr-wrap {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .pr-title {
                font-size: clamp(28px, 2.8vw, 52px);
                letter-spacing: 0.4px;
                margin: 0 0 10px;
                text-align: center;
        }

        .pr-subtitle {
                margin: 0 0 28px;
                color: var(--pr-muted);
                font-size: 24px;
                text-align: center;
        }

        .pr-logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
            gap: 18px;
        }

        .pr-logo-card {
            background: var(--pr-card);
            border-radius: var(--pr-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(17, 33, 55, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
            filter: grayscale(1);
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #5e6b76;
            font-weight: 700;
            font-size: 13px;
        }

        .pr-logo-card:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: translateY(-3px);
            box-shadow: var(--pr-shadow);
        }

        .pr-thanks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 22px;
            margin-top: 12px;
        }

        .pr-thanks-card {
            background: var(--pr-card);
            border-radius: var(--pr-radius);
            padding: 14px;
            box-shadow: 0 8px 22px rgba(17, 33, 55, 0.12);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .pr-thanks-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--pr-shadow);
        }

        .pr-logo-card img {
            width: 100%;
        }

        .pr-thanks-thumb {
            width: 100%;
            aspect-ratio: 3 / 4;
            border-radius: 12px;
            border: 1px solid #e5eaf2;
            background:
                linear-gradient(180deg, #f7f9fc, #eef2f7),
                repeating-linear-gradient(0deg, rgba(30, 42, 51, 0.06) 0, rgba(30, 42, 51, 0.06) 2px, transparent 2px, transparent 12px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8a97a3;
            font-size: 14px;
            text-align: center;
            padding: 10px;
        }

        .pr-thanks-thumb img {
            width: 100%;
        }

        .pr-thanks-meta {
            margin-top: 10px;
            font-size: 14px;
            color: var(--pr-muted);
        }

        .pr-thanks-title {
            font-size: 16px;
            font-weight: 700;
            margin: 6px 0 0;
            color: var(--pr-ink);
        }

        .pr-btn-view {
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #d6e2f0;
            background: #f3f7fd;
            color: #1c4f86;
            padding: 8px 12px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
        }

        .pr-btn-view:hover {
            background: #e8f1ff;
        }

        .pr-modal {
            position: fixed;
            inset: 0;
            background: rgba(12, 18, 24, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 5px 22px 72px;
            z-index: 999;
        }

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

        .pr-modal-card {
            background: #fff;
            border-radius: 18px;
            padding: 16px;
            max-width: 471px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            position: relative;
        }

        .pr-modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: #f0f3f7;
            font-size: 20px;
            cursor: pointer;
        }

        .pr-modal-img {
            width: 100%;
            border-radius: 12px;
            border: 1px solid #e5eaf2;
        }
.m_kel11 {
    font-size: 23px;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    cursor: pointer;
}
  /* Адаптивность */
  @media (max-width: 768px) {
      .pr-section {
                padding: 48px 16px;
            }

            .pr-logo-card {
                font-size: 12px;
                min-height: 90px;
            }

            .pr-slider {
                display: flex;
                overflow-x: auto;
                gap: 14px;
                padding: 4px 6px 14px 4px;
                scroll-snap-type: x mandatory;
                scroll-padding-left: 4px;
                -webkit-overflow-scrolling: touch;
                position: relative;
            }

            .pr-slider::-webkit-scrollbar {
                height: 6px;
            }

            .pr-slider::-webkit-scrollbar-thumb {
                background: rgba(31, 42, 51, 0.25);
                border-radius: 10px;
            }

            .pr-slider::after {
                content: "";
                flex: 0 0 26px;
                align-self: stretch;
                pointer-events: none;
                background: linear-gradient(90deg, rgba(238, 242, 247, 0), rgba(238, 242, 247, 0.9));
            }

            .pr-logo-grid.pr-slider .pr-logo-card {
                flex: 0 0 62%;
                scroll-snap-align: start;
            }

            .pr-thanks-grid.pr-slider {
                align-items: stretch;
            }

            .pr-thanks-grid.pr-slider .pr-thanks-card {
                flex: 0 0 80%;
                scroll-snap-align: start;
                min-height: 480px;
                display: flex;
                flex-direction: column;
            }

            .pr-thanks-grid.pr-slider .pr-btn-view {
                margin-top: auto;
            }

  .mc-hero p {
      font-size: 1rem;
  }

  .mc-production-details {
      grid-template-columns: 1fr;
  }

  .mc-stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .mc-quality-grid {
      grid-template-columns: 1fr;
  }

  .mc-process-grid {
      grid-template-columns: 1fr;
  }

  .mc-modal-content {
      max-height: 90vh;
  }

  .mc-modal-info {
      flex-direction: column;
      align-items: flex-start;
  }
	.magazine-block {
	  margin: 20px 15px;
	  border-radius: 8px;
	}
	
	.magazine-header,
	.magazine-body {
	  padding-left: 20px;
	  padding-right: 20px;
	}
	
	.magazine-footer {
	  padding: 20px;
	}
	
	.magazine-title {
	  font-size: 24px;
	}
	
	.lead-paragraph {
	  font-size: 14px;
	}
	
	.magazine-content p {
	  font-size: 15px;
	  text-align: left;
	}
	
	.action-buttons {
	  flex-direction: column;
	}
	
	.btn-primary, .btn-secondary {
	  width: 100%;
	  justify-content: center;
	  display: flex;
	}
  }
  

  /* Улучшенная читаемость */
  @media (prefers-contrast: high) {
	.magazine-content {
	  color: #000000;
	}
	
	.lead-paragraph {
	  color: #000000;
	}
  }
  .m_kartochka{
    margin: 0 auto;
    margin-bottom: 20px;
    width: 70%;  
    position: relative;
    padding: 10px;
    border-radius: 10px;
  }
  .m_kartochka_content{
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .m_kartochka_img_content{
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .m_kartochka_scale{
    width: 47%;
    background-color: #30383b;
    border-radius: 11px;
    padding: 20px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: aliceblue;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    font-size: clamp(16px, 4vw, 24px); 
    transition: all 0.3s ease;
    position: relative;
  }
  .m_kartochka_scale.active::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7402, transparent);
  }
  .m_kartochka_scale.open::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffa700, transparent);
  }
  .m_kartochka_img_block img{
    width: 100%;
    border-radius: 11px;
    object-fit: cover; 
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    
    cursor: pointer;
  }
  .m_kartochka_img_block.active{
    transform: scale(1.07);
  }
  .m_kartochka_img_block.active img{
    animation: radial-pulse 2s infinite;
  }
  .m_kartochka_img_block{
    width: 43%; 
    perspective: 1000px; 
    transition: all 0.4s ease;
  }
  @keyframes radial-pulse {
    0% {
      box-shadow: 0 0 0 0px rgba(23, 22, 22, 0.5);
    }
  
    90% {
      box-shadow: 0 0 0 5px #ff7402;
    }
  
    100% {
      box-shadow: 0 0 0 0px rgba(23, 22, 22, 0.5);
    }
  }
  .m_kartochka_scale_content{
    position: relative;  
  }
  .m_kartochka_scale_block{
    position: absolute;
    transform: scale(.2);
    opacity: 0;
    visibility: hidden;
  }
  .m_kartochka_scale_block.active{
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    transition: all 1s ease;  
  }
  .m_kartochka_scale_block_title{
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    font-family: "Trebuchet MS", "Lucida Sans";
    margin-bottom: 30px;
  }
  .m_kartochka_scale_block_text{
    margin-bottom: 20px;
    font-size: 21px;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    font-family: 'Courier New', Courier, monospace;
  }
  
  .m_polosa {
    padding: 20px 0;
    background-color: #e06500;
    position: relative;
    margin-bottom: 30px;
  }
  
  .m_polosa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffa700, transparent);
  }
  .m_polosa::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7402, transparent);
  }
  .polosa_container {
    width: 70%;
    margin-right: auto;
    margin-left: auto; 
  }
  .polosa_container_title h2 {
    font-size: clamp(19px, 4vw, 51px);
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    letter-spacing: -0.01em;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  }
  .polosa_container_subtitle {
    font-size: clamp(16px, 4vw, 21px);;
    color: #ecf0f1;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  }
  
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .result-card {
    background: yellow;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  
  .result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff7402;
    transform: scaleX(0);
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .result-card:hover::before {
    transform: scaleX(1);
  }
  
  .result-card:hover {
    transform: translateY(-4px);
    border-color: #ff7402;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
  }
  
  .result-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1;
  }
  
  .result-card_title {
    font-size: clamp(14px, 4vw, 17px);
    margin-bottom: 10px;
    color: #0c3853;
    text-transform: uppercase;
    font-weight: 900;
   
  }
  
  .result-card_subtitle{
    color:  #1a1a1a;
    line-height: 1.5;
    margin: 0;
    font-size: clamp(14px, 4vw, 15px);
  }
  
  
  /* Дополнительные анимации */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  /* Скролл бар стилизация */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #0a0a0a;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #ff7402;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #ff7402;
  }  
.dop_zagolovok{
  margin: 0 auto;
  width: 70%;
  margin-top: 30px;
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
} 
.dva_blocka{
  margin: 0 auto;
  width: 70%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.block_dva{
  width: 49%;
  height: 800px;
  border: 2px solid #ff7402;
  border-radius: 12px;
  padding: 10px;
}
.block_dva img{
  width: 100%;
  border-radius: 7px;
}
.block_dva_text_title{
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}
.block_dva ul{
  margin-top: 20px;
  margin-left: 45px;
  font-size: 23px;
}
.block_dva ul li{
  margin-top: 5px;
}
.m_titul_block {
  background-color: #e06500;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-size: 34px;
  font-weight: bold;
  padding: 50px 10px;
  border: 1px solid black;
  margin-top: 20px;
  overflow-x: hidden;
  max-width: 100%;
}
.m_titul_block_tg {
  text-align: center;
  font-size: 43px;
}
.m_tit_ur {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
.m_tit_ur_block {
  width: 15%;
}
.m_tit_ur_img img {
  width: 100%;
  border-radius: 50%;
}
.m_tit_ur_fam {
  font-size: 22px;
  padding: 10px 18px 0;
  text-align: center;
}
.m_tit_ur_dol {
  font-size: 14px;
  color: cornsilk;
  padding: 5px 10px;
  text-align: center;
}
.kontakty_2{
	width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: left;
	align-items: center;
	gap: 50px;
}
.kontakty_polit{
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 50px;
  font-size: 24px;
  margin-top: 10px;
  color: black;
  text-shadow: none;
}
.kontakty_polit a, .kontakty_polit a:visited{
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.kontakty_1_block a, .kontakty_1_block a:visited{
	color: white;
	font-size: 30px;
	font-family: 'Courier New', Courier, monospace;
}
.kontakty_email{
	color: white;
	font-size: 30px;
	font-family: 'Courier New', Courier, monospace;
}
.kontakty_elem{
	color: white;
	font-size: 30px;
	font-family: 'Courier New', Courier, monospace;
	display: flex;
	justify-content: left;
	align-items: center;	
}
.kel{
	font-size: 23px;
	color: antiquewhite;
	width: 110px;
}
.slider_baza{
  margin: 0 auto;
margin-top: 30px;
  width: 100%;
  overflow: hidden;
background-color: white;
}
.slider {    
  height: 500px;
  margin: 0 auto;
  position: relative;
  width: 700px;    
  margin-top: 5px;
margin-bottom: 5px;	
}
.slider-line {
  display: flex;
  position: relative;    
  transition: all ease 1s; 
left: -700px;
}
.slider img {
  max-width: 700px;
  width: 100%;
  position: absolute; 
}
.prev-button, .next-button {
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 6px solid #fff;
  background: #000;
  color: #fff;
  position: absolute;
  margin-top: 50%;
  z-index: 1000;
  left: 14px;
  font-size: 2rem;
  line-height: 2rem;
  box-shadow: 3px 3px 3px #000;
}

.prev-button:active, .next-button:active {
  background: #c0c0c0;
}

.next-button {
  left: auto;
  right: 14px;
}
.m_katalog{
  width: 70%;
  margin: 0 auto;
  margin-top: 30px;
}
.m_katalog_content{
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.m_katalog_content.active{
  display: flex;
}
.m_katalog_block{
  width: 24%;
  background-color: white;
  border: 1px solid #9ca3af;
  padding: 7px;
  border-radius: 3px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans',Arial, sans-serif;

}
.m_katalog_block img{
  width: 100%;
}
.m_katalog_block a{
  height: 275px;
  display: block;
}
.m_katalog_block_name{
  font-size: 21px;
  color: #1a1a1a;  
}
.m_katalog_block_tsena{
  margin-top: 10px;
  color: #1e80be;
  font-size: 23px;
  font-weight: 800;
}
.m_katalog_zakazat{  
  margin-top: 10px;
  cursor: pointer;
}
.m_katalog_control{
  width: 70%;
  margin: 0 auto;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.m_katalog_control_block{
  padding: 5px;
  font-size: 21px;
  font-weight: 300;
  color: #2b2b2b;
  cursor: pointer;
}
.m_katalog_control_block.active{
  background-color: #6b7280;
}
.polit_coocki{
  position: fixed;
  bottom: 0;
  left: 0%;
  right: 0%;  
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.polit_coocki.active{
  display: none;
}
.polit_coocki_content{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;  
  padding: 5px;
}
.polit_coocki_text{
  font-size: 14px;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;  
}
.polit_coocki_text a, .polit_coocki_text a:visited{
  color: white;
}
.polit_coocki_sogl{
  padding: 5px 3px;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
  border-radius: 3px;
}
.polit_close{
  position: absolute;
  top: -3px;
  right: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.verh.active{
  position: relative;
  background-color: #30383b;
}
.katalog_doch h1{
  text-align: center;
  font-size: 54px;
  font-weight: 700;
  margin-top: 30px;
}
.katalog_doch_osn{
  width: 70%;
  margin: 0 auto;
  margin-top: 44px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.bldb_sl{
  width: 49%;  
}
.katalog_doch_text{
  width: 49%;

}
.bldb_sl_title {
  text-align: center;
  font-weight: bold;
  font-size: 27px;
  color: #1e80be;
  padding: 10px;
}
.bldb_img {
  border-radius: 12px;
}
.bldb_img img {
  border-radius: 12px;
  width: 100%;
}

.bldb_v_img {
  display: grid;
  justify-content: center;
  align-content: center;
  gap: 3px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 10px;
}
.blvi {
  border-radius: 7px;
  cursor: pointer;
}
.blvi img{
  width: 100%;
  border-radius: 12px;
}
.katalog_doch_tsena{
  margin-top: 10px;
  color: #1e80be;
  font-size: 34px;
  font-weight: 800;
}
.katalog_doch_izm{
  margin-top: 10px;
  color: #6b7280;
  font-size: 23px;
}
.katalog_doch_spisok ul{
  margin-top: 20px;
  margin-left: 35px;
  font-size: 27px;
  margin-bottom: 20px;
}
.katalog_doch_spisok ul li{
  margin-top: 7px;
}
.katalog_opisanie{
  width: 70%;
  margin: 0 auto;
  margin-top: 20px;
}
.katalog_baza_tab{
  display: flex;
  justify-content: center;
  align-items: center;
}
.katalog_tab{
  background-color: #ffa700;
  font-size: 24px;
  font-weight: 300;
  padding: 15px 10px;
  width: 20%;
  text-align: center;
  cursor: pointer;
  border: 1px solid black;
}
.katalog_tab.active{  
  background-color: #e06500;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black; 
}
.tab_content1{
  display: none;
  margin-top: 10px;
  border: 1px solid #6b7280;
  padding: 20px;  
  border-radius: 7px;
  font-size: 23px;
  font-family: 'Courier New', Courier, monospace;
}
.tab_content1.active{
  display: block;
}
.katalog_baza_tab_content ul{
  margin-top: 20px;
  margin-left: 35px;
}
.katalog_baza_tab_content ul li{
  margin-top: 5px;
}
.m_kontakt_baza{
  width: 70%;
  margin: 0 auto;
  margin-top: 40px;
  border: 1px solid #6b7280;
  padding: 20px;
  border-radius: 7px;
  font-size: 23px;
  
  background-color: white;
}
.m_kontakt_baza_elem{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 10px;
}
.m_kontakt_baza_elem a, .m_kontakt_baza_elem a:visited{
  color: black;
  display: block;
}
.m_kel{
  font-size: 23px;
  font-family: 'Courier New', Courier, monospace;
  width: 120px;
}
.m_kel1{
  
  font-size: 27px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}
.portph{
  width: 70%;
  margin: 0 auto;
  margin-top: 20px;
}
.filter-section {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.filter-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
  padding: 10px 12px;
  border: 1px solid #30383b;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-dark);
  background: white;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.btn1 {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary1 {
  background-color: #e06500;
  color: white;
  text-shadow: 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}


.btn-secondary1 {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary1:hover {
  background-color: #30383b;
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.project-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.project-image {
  overflow: hidden;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
}
.project-image img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.project-image.office { background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); }
.project-image.residential { background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%); }
.project-image.warehouse { background: linear-gradient(135deg, #F57C00 0%, #E65100 100%); }
.project-image.canteen { background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%); }
.project-image.checkpoint { background: linear-gradient(135deg, #5E35B1 0%, #4527A0 100%); }

.project-info {
  padding: 20px;
}

.project-type {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background-color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  min-height: 40px;
}

.project-specs {
  list-style: none;
  margin-bottom: 15px;
}

.project-specs li {
  font-size: 15px;
  color: var(--text-light);
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.project-specs li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 8px;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.project-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
}

.btn-details {
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background-color: var(--primary-dark);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.mm_container {
  max-width: 70%;
  margin: 0 auto;
  padding: 60px 20px;
}

.service-section {
  background: white;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-section:nth-child(even) {
  direction: rtl;
}

.service-section:nth-child(even) > * {
  direction: ltr;
}

.service-content h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #1e3a5f;
  border-bottom: 3px solid #e06500;
  padding-bottom: 15px;
}

.service-content p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
  color: #555;
  line-height: 1.7;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff7402;
  font-weight: bold;
  font-size: 1.3em;
}
.service-image img{
  width: 100%;
}
.service-image {
  background: #e06500;
  padding: 7px;
  border-radius: 8px;  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5em;
  color: white; 
}
.flex-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(283px, 1fr));
  gap: 20px;  
  margin: 0 auto;
}
.flex-cards-container1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 96%;
  margin: 0 auto;
}

.flex-card {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flex-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.flex-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.flex-card__content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1;
}

.flex-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.flex-card__description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.flex-card__button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  align-self: flex-start;
}

.flex-card__button:hover {
  opacity: 0.9;
}

.flex-card__button:active {
  opacity: 0.8;
}
.katalog_doch h2 {
  text-align: center;
  font-size: 54px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
     .flex-card {
    max-width: 100%;
}

.flex-card__image {
    height: 220px;
}

.flex-card__content {
    padding: 20px;
}

.flex-card__title {
    font-size: 20px;
}

  .header-content {
      flex-direction: column;
      gap: 15px;
  }

  .filter-row {
      grid-template-columns: 1fr;
  }

  .projects-grid {
      grid-template-columns: 1fr;
  }

  .page-title h1 {
      font-size: 24px;
  }
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 5px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.spec-item {
  background: var(--bg-light);
  padding: 15px;
  border-radius: 4px;
}

.spec-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.spec-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Адаптивность */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #333;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu {
        flex-direction: column;
        padding: 20px 0;
    }

    .menu li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .menu a {
        padding: 15px 20px;
        border-bottom: 1px solid #444;
    }

    /* Выпадающее меню на мобильных */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #444;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px;
    }

    .dropdown-menu a {
        padding-left: 40px;
        background-color: #444;
    }
}
@media (max-width: 1600px){
.block_title{width:70%;}
.block_title h1 {font-size:50px;letter-spacing:1px;}
.block_title_offer {font-size:28px; line-height:1.18;}
.block_title .raschet{margin-top:20px;}
}
@media (max-width: 1400px) {
.mm_container {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}  
.menu_gorodov {
  font-size: 22px;
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black, -1px 0px 0 black, 1px 0px 0 black, 0px -1px 0 black, 0px 1px 0 black;
}  
.verh_middl_title {
  font-size: 26px;
  color: #000;
  text-shadow: -1px -1px 0 aliceblue, 1px -1px 0 aliceblue, -1px 1px 0 aliceblue, 1px 1px 0 aliceblue, -1px 0px 0 aliceblue, 1px 0px 0 aliceblue, 0px -1px 0 aliceblue, 0px 1px 0 aliceblue;
}
.block_title h1 {
  font-size: 46px;
  font-weight: 900;
  color: white;
  text-shadow: -1.4px -1.4px 0 black, 1.4px -1.4px 0 black, -1.4px 1.4px 0 black, 1.4px 1.4px 0 black, -1.4px 0px 0 black, 1.4px 0px 0 black, 0px -1.4px 0 black, 0px 1.4px 0 black;
  letter-spacing: 2px;
}
.block_title_offer {
  font-size: 26px;
  font-weight: 700;
  color: aliceblue;
  text-shadow: -1.4px -1.4px 0 black, 1.4px -1.4px 0 black, -1.4px 1.4px 0 black, 1.4px 1.4px 0 black, -1.4px 0px 0 black, 1.4px 0px 0 black, 0px -1.4px 0 black, 0px 1.4px 0 black;
  letter-spacing: 3px;
  background-color: #007bff;
  padding: 0 3px;
  border-radius: 3px;
}
.block_title .raschet{margin-top:25px;}
.raschet {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 23px 11px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#ff7402), to(#ffa700));
  background: -webkit-linear-gradient(left, #ff7402 0, #ffa700 100%);
  background: -o-linear-gradient(left,#ff7402 0,#ffa700 100%);
  background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
  margin-top: 66px;
  width: 32%;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  /* font-family: "Manrope", sans-serif; */
  animation: pulse 1.5s infinite;
}
.answer-btn {
  background: #ecf0f1;
  border: 2px solid #bdc3c7;
  color: #2c3e50;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  width: 90%;
}
.mfm_double_svyaz {
  width: 47%;
}
.m_popup_content {
  background-color: none;
  color: black;
  padding: 15px;
  position: relative;
  opacity: 0;
  transform: perspective(660px) translate(0px, -100%) rotateX(45deg);
  transition: all 0.8s ease 0s;
  width: 37%;
}
.director_content_text {
    padding: 10px;
    width: 59%;
    color: white;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    font-size: 34px;
    font-family: "Trebuchet MS", "Lucida Sans";
    padding-right: 30px;
}
.director_podpis {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 10px;
}
.dct_text {
  padding: 10px 20px;
  margin: 0 auto;
  width: 89%;
  margin-top: 0px;
  background-color: #30383b;
  border: 1px solid black;
  font-weight: bold;
  border-radius: 4px;
  font-size: 21px;
}
.block_dva {
  width: 47%;
  height: 686px;
  border: 2px solid #ff7402;
  border-radius: 12px;
  padding: 10px;
}
.bldb_sl {
  width: 46%;
}
.katalog_tab {
  background-color: #ffa700;
  font-size: 14px;
  font-weight: 300;
  padding: 15px 10px;
  width: 20%;
  text-align: center;
  cursor: pointer;
  border: 1px solid black;
}
}

@media (max-width: 1300px){
.block_title h1 {
  font-size: 44px;
  letter-spacing: 1px;
}
.block_title_offer {
  font-size: 26px;
  line-height: 1.18;
}
.block_title .raschet{margin-top:30px;}
}
@media (max-width: 1030px){
.block_title {
  position: absolute;
  top: 35%;
  left: 20%;
}
.m_telefon a, .m_telefon a:visited {
  color: aliceblue;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-size: 19px;
}
.m_email_text {
  font-size: 16px;
  color: aliceblue;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.verh_middl_title {
  font-size: 14px;
  color: #000;
  text-shadow: -1px -1px 0 aliceblue, 1px -1px 0 aliceblue, -1px 1px 0 aliceblue, 1px 1px 0 aliceblue, -1px 0px 0 aliceblue, 1px 0px 0 aliceblue, 0px -1px 0 aliceblue, 0px 1px 0 aliceblue;
}
.menu_gorodov {
  font-size: 14px;
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black, -1px 0px 0 black, 1px 0px 0 black, 0px -1px 0 black, 0px 1px 0 black;
}
.block_title h1 {
  font-size: 34px;
  font-weight: 900;
  color: white;
  text-shadow: -1.4px -1.4px 0 black, 1.4px -1.4px 0 black, -1.4px 1.4px 0 black, 1.4px 1.4px 0 black, -1.4px 0px 0 black, 1.4px 0px 0 black, 0px -1.4px 0 black, 0px 1.4px 0 black;
  letter-spacing: 2px;
}
.block_title_offer {
  font-size: 22px;
  font-weight: 700;
  color: aliceblue;
  text-shadow: -1.4px -1.4px 0 black, 1.4px -1.4px 0 black, -1.4px 1.4px 0 black, 1.4px 1.4px 0 black, -1.4px 0px 0 black, 1.4px 0px 0 black, 0px -1.4px 0 black, 0px 1.4px 0 black;
  letter-spacing: 3px;
  background-color: #007bff;
  padding: 0 3px;
  border-radius: 3px;
}
.block_title .raschet{margin-top:20px;}
.title_qviz {
  margin: 0 auto;
  margin-top: 20px;
  width: 80%;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
}
.ekran_block {
  width: 27%;
  cursor: pointer;
  height: 169px;
}
.ekran_block1 {
  width: 27%;
  cursor: pointer;
  height: 169px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.answer-btn {
  background: #ecf0f1;
  border: 2px solid #bdc3c7;
  color: #2c3e50;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  width: 90%;
}
.dct_text {
  padding: 10px 20px;
  margin: 0 auto;
  width: 89%;
  margin-top: 0px;
  background-color: #30383b;
  border: 1px solid black;
  font-weight: bold;
  border-radius: 4px;
  font-size: 17px;
}
.director_title {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-weight: bold;
  font-size: 34px;
}
.m_sp_yellow {
  color: yellow;
  font-size: 37px;
}
.dop_zagolovok {
  margin: 0 auto;
  width: 70%;
  margin-top: 30px;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.block_dva_text_title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}
.block_dva {
  width: 47%;
  height: 578px;
  border: 2px solid #ff7402;
  border-radius: 12px;
  padding: 10px;
}
.m_katalog {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
}
.magazine-title {
  font-size: 25px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section_article {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.m_titul_block {
  background-color: #e06500;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-size: 22px;
  font-weight: bold;
  padding: 50px 10px;
  border: 1px solid black;
  margin-top: 20px;
  overflow-x: hidden;
  max-width: 100%;
}
}

@media (max-width: 768px) and (min-width: 481px){
.fon{height:320px;overflow:hidden;}
.fon img{height:320px;width:100%;object-fit:cover;object-position:center;}

.fon {
  min-height: 270px;
}
.block_title {
  position: absolute;
  top: 28%;
  left: 3%;
  padding: 0 10px;
  max-width: 65%;
}
.block_title h1 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  max-width: 100%;
}
.block_title_offer {
  font-size: 17px;
  letter-spacing: 0px;
}
}

@media (max-width: 480px){
.fon1{
  display: block;  
}
.fon{
  display: none;  
}
.verh {
  padding: 10px 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
}

.verh_middl_title{
  display: none;
}
.menu_gorodov {
  font-size: 22px;
  color: white;
  position: absolute;
  top: 78px;
  left: 9px;
  right: 0;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black, -1px 0px 0 black, 1px 0px 0 black, 0px -1px 0 black, 0px 1px 0 black;
}
.polit_coocki_text {
  font-size: 14px;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.logo{
  width: 10%;
}
.logo img{
  width: 100%;
}
.block_title {
  position: absolute;
  top: 20%;
  left: 3%;
  padding: 0 10px;
}
.m_email_text {
  font-size: 15px;
  color: aliceblue;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.verh.active{
  position: relative;
  background-color: #30383b;
  padding: 10px 3px 40px;
}
.verh.active .nav{
  top: 101%;
}
.katalog_doch h1 {
  text-align: center;
  font-size: 39px;
  font-weight: 700;
  margin-top: 30px;
}
.nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.burger {
  position: absolute;
  top: 75px;
  right: 10px;
}
.nav {
  position: absolute;
  top: 141%;
  left: 0;
  width: 100%;
  background-color: #333;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}
.menu {
  flex-direction: column;
  padding: 0px 0;
}
.dropdown-menu {
  min-width: 327px;  
}
.dropdown-menu a {
  padding: 5px 5px;
  border-bottom: 1px solid #555;
}
.block_title h1 {

  font-size: 32px;
  font-weight: 900;
  color: white;
  text-shadow: -1.4px -1.4px 0 black, 1.4px -1.4px 0 black, -1.4px 1.4px 0 black, 1.4px 1.4px 0 black, -1.4px 0px 0 black, 1.4px 0px 0 black, 0px -1.4px 0 black, 0px 1.4px 0 black;
  letter-spacing: 3px;
  max-width: 100%;

}
.menu a, .menu a:visited {
  color: black;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  transition: color 0.3s ease;
  font-size: 23px;
  font-weight: 500;
}
.dropdown-menu a, .dropdown-menu a:visited{
  color: white;
  text-shadow: -1.4px -1.4px 0 black, 1.4px -1.4px 0 black, -1.4px 1.4px 0 black, 1.4px 1.4px 0 black, -1.4px 0px 0 black, 1.4px 0px 0 black, 0px -1.4px 0 black, 0px 1.4px 0 black;
  font-size: 21px;
}
.block_title_offer {
  font-size: 24px;
  font-weight: 700;
  color: aliceblue;
  text-shadow: -1.4px -1.4px 0 black, 1.4px -1.4px 0 black, -1.4px 1.4px 0 black, 1.4px 1.4px 0 black, -1.4px 0px 0 black, 1.4px 0px 0 black, 0px -1.4px 0 black, 0px 1.4px 0 black;
  letter-spacing: 3px;
  background-color: #007bff;
  padding: 3px 11px;
  border-radius: 3px;
  margin-top: 10px;
}
.raschet {
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13px 5px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#ff7402), to(#ffa700));
  background: -webkit-linear-gradient(left, #ff7402 0, #ffa700 100%);
  background: -o-linear-gradient(left,#ff7402 0,#ffa700 100%);
  background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
  -webkit-transition: all .3s 
ease;
  -o-transition: all .3s ease;
  transition: all .3s 
ease;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
  margin-top: 40px;
  width: 70%;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  /* font-family: "Manrope", sans-serif; */
  animation: pulse 1.5s infinite;
}
.section_qviz {
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
  background-color: #e06500;
  padding: 10px;
  border-radius: 12px;
}
.ekran_block {
  width: 100%;
  cursor: pointer;
  height: 230px;
}
.ekran_block1 {
  width: 100%;
  cursor: pointer;
  height: 126px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title_qviz {
  margin: 0 auto;
  margin-top: 20px;
  width: 90%;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 41px;
}
.section_qviz_title {
  text-align: center;
  font-size: 27px;
  margin-top: 30px;
}
.qviz_button_control {
  padding: 18px;
  width: 45%;
  text-align: center;
  border: 1px solid black;
  border-radius: 7px;
  font-size: 21px;
  cursor: pointer;
}
.qviz_final_text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 217px;
  align-content: center;
}
.mfm_double_svyaz {
  width: 100%;
}
.block_director {
  margin: 0 auto;
  margin-top: 30px;
  width: 100%;
  display: flex;
  background-color: #1e80be;
  padding: 5px;
  border-radius: 8px;
}
.director_title {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-weight: bold;
  font-size: 35px;
}
.m_sp_yellow {
  color: yellow;
  font-size: 42px;
}
.director_media {
  width: 100%;
}
.director_content_text {
  padding: 10px;
  width: 100%;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-size: 31px;
  font-family: "Trebuchet MS", "Lucida Sans";
  padding-right: 9px;
}
.dct_text {
  padding: 10px 20px;
  margin: 0 auto;
  width: 89%;
  margin-top: 0px;
  background-color: #30383b;
  border: 1px solid black;
  font-weight: bold;
  border-radius: 4px;
  font-size: 17px;
}
.director_podpis {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-top: 10px;
}
.dop_zagolovok {
  margin: 0 auto;
  width: 100%;
  margin-top: 20px;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
}
.dva_blocka {
  margin: 0 auto;
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.block_dva {
  width: 100%;
  height: auto;
  border: 2px solid #ff7402;
  border-radius: 12px;
  padding: 10px;
}
.block_dva_text_title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-top: 10px;
}
.block_dva ul {
  margin-top: 20px;
  margin-left: 27px;
  font-size: 23px;
}
.section_article {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.magazine-block {
  width: 100%; 
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Georgia', 'Times New Roman', serif;
  position: relative;
  border: 1px solid #e1e5e9;
  transition: all 0.3s ease;
}
.polosa_container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 10px;
}
.polosa_container_title h2 {
  font-size: clamp(33px, 4vw, 51px);
  font-weight: 400;
  margin-bottom: 20px;
  color: white;
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.polosa_container_subtitle {
  font-size: clamp(20px, 4vw, 21px);
  color: #ecf0f1;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
}
.m_katalog {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
}
.m_katalog_content {
  padding: 10px;
}
.m_katalog_block a {
  height: auto;
  display: block;
}
.m_katalog_block {
  width: 100%;
  background-color: white;
  border: 1px solid #9ca3af;
  padding: 7px;
  border-radius: 3px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.mobil_trips{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 123px;
    left: 0;
    right: 0;
    background-color: #e06500;
    padding: 3px;
    width: 100%;
}
.mobil_trips.active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  z-index: 9999;
}
.trips_1{
    background-color: #007bff;	
    color: white;
    font-size: 30px;
    font-weight: bold;
    font-family: "Trebuchet MS", "Lucida Sans";
    width: 50%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
    letter-spacing: 7px;
    margin-bottom: 0px;
}
.trips_block a, .trips_block a:visited{
    color: white;
    font-size: 21px;	
    
}
.trips_block{
    display: flex;
    justify-content: center;
    align-items: center;	
    width: 50%;	
    gap: 7px;	
    text-align: center;
    margin-bottom: 0px;
    flex-wrap: nowrap;
}
.trips_block img{
    width: 88%;
}
.trips_2 {
  width: 30%;
}
.trips_3 {
  width: 30%;
}
.m_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    color: white;
    opacity: 0;
    visibility: hidden;
    overflow-y:auto;
    overflow-x: hidden;
    transition: all 0.8s ease 0s;
  }
.m_popup.active{
    opacity: 1;
    visibility: visible;
}
.m_popup.active .m_popup_content{
    /*transform: translate(0px, 0px);*/
    transform: perspective(660px) translate(0px, 0%) rotateX(0deg);
    opacity: 1;  
}  
.m_popup_body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
}
.m_popup_content {
    background-color: #2b2b2b;
    color:black;	
    padding: 15px;
    position: relative; 
    opacity: 0;
    transform: perspective(660px) translate(0px, -100%) rotateX(45deg);
    transition: all 0.8s ease 0s;
    width: 100%;
}
.m_popup_close {
    position: absolute;
    right: 0px;
    top: -8px;
    font-size: 20px;
    color:black;
}
.m_popup_close img{
    width: 80%;
}
body.active{
    height: 100vh;
    overflow: hidden;
}
.m_kartochka {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    padding: 0;
    border-radius: 10px;
}
.m_kartochka_img_content{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.m_kartochka_img_block {
  width: 43%;
  padding: 0;
  perspective: 1000px;
}
.results-grid {
  grid-template-columns: 1fr;    
}
.m_kartochka_scale {
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 11px;
  padding: 10px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: aliceblue;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-size: clamp(16px, 4vw, 24px);
  transition: all 0.3s 
ease;
  position: relative;
}
.m_kartochka_scale_block{
  display: none;
  position: sticky;
  transform: scale(.2);
  opacity: 0;
  visibility: hidden;
}
.m_kartochka_scale_block.active{
  display: block;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transition: all 1s ease;  
}
.m_titul_block {
  background-color: #e06500;
  color: white;
  text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 2px black, 0px 0px 2px black, 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-size: 14px;
  font-weight: bold;
  padding: 21px 10px;
  border: 1px solid black;
  margin-top: 12px;
  overflow-x: hidden;
  max-width: 100%;
  padding-bottom: 90px;
}
.m_titul_block_tg {
  text-align: center;
  font-size: 28px;
  line-height: 1.4;
}
.m_tit_ur_block {
  width: 100%;
}    
.slider_baza{        
	width: 100%;    
	height: auto;   
}
.slider {    
	width: 100%;
	border:none;   
	margin-top: 0px;  	 
}
.slider-line {
    display: flex;
    position: relative;
    transition: all ease 1s;
    left: 0px;
}
.prev-button, .next-button {
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 6px solid #fff;
	background: #000;
	color: #fff;
	position: absolute;
	margin-top: 50%;
	z-index: 1000;
	left: 14px;
	font-size: 13px;
	line-height: 1;
	box-shadow: 3px 3px 3px #000;
}
.next-button {
	left: auto;
	right: 14px;
}
.katalog_doch_osn {
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.bldb_sl {
  width: 100%;
}
.katalog_doch_text {
  width: 100%;
  padding: 10px;
}
.m_katalog_zakazat {
  text-align: center;
}
.katalog_opisanie {
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}
.katalog_tab {
  background-color: #ffa700;
  font-size: 15px;
  font-weight: 200;
  padding: 15px 5px;
  width: 33%;
  text-align: center;
  cursor: pointer;
  border: 1px solid black;
}
.kontakty_2 {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 21px;
  flex-wrap: wrap;
}
.kontakty_elem {
  color: white;
  font-size: 22px;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: left;
  align-items: center;
}
.kel {
  font-size: 19px;
  color: antiquewhite;
  width: 90px;
}
.kontakty_1_block a, .kontakty_1_block a:visited {
  color: white;
  font-size: 22px;
  font-family: 'Courier New', Courier, monospace;
}
.kontakty_2{
	width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: left;
	align-items: center;
	gap: 50px;
}
.kontakty_polit{
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 24px;
  margin-top: 10px;
  color: black;
  text-shadow: none;
}
.answer-btn {
  background: #ecf0f1;
  border: 2px solid #bdc3c7;
  color: #2c3e50;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  width: 90%;
}
.m_kontakt_baza {
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  border: 1px solid #6b7280;
  padding: 8px;
  border-radius: 7px;
  font-size: 20px;
  background-color: white;
}
.m_kel {
  font-size: 15px;
  font-family: 'Courier New', Courier, monospace;
  width: auto;
}
.m_kel1 {
  font-size: 13px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
}
.portph{
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}
.project-name {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  min-height: 40px;
  margin-top: 10px;
}
.logo1 {
  width: 32%;
  background-color: aliceblue;
}
.verh_mat {
  width: 100%;
}
.mc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 00px;
}
.mc-hero h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.mc-process-grid {
    margin-bottom: 0px;
}
.mc-stats-grid {
    margin-bottom: 0px;
}
.mc-production-details {
    padding: 10px;
}
.mc-gallery-section {
    margin-bottom: 0px;
}
.mc-equipment {
    margin-bottom: 0px;
}
.mc-section-title h2 {
    font-size: 2.5rem;
}
.flex-card__image {
  height: 180px;
}

.flex-card__content {
  padding: 16px;
}

.flex-card__title {
  font-size: 14px;
}

.flex-card__description {
  font-size: 13px;
}

.flex-card__button {
  padding: 10px 20px;
  font-size: 14px;
}
.service-section {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.katalog_doch h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
}
.pr-subtitle {
    margin: 0 0 28px;
    color: var(--pr-muted);
    font-size: 18px;
    text-align: center;
}
}
@media (max-width: 330px){
  .raschet {
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 13px 5px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#ff7402), to(#ffa700));
    background: -webkit-linear-gradient(left, #ff7402 0, #ffa700 100%);
    background: -o-linear-gradient(left,#ff7402 0,#ffa700 100%);
    background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(to right, #ff7402 0, #ffa700 100%);
    margin-top: 39px;
    width: 70%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    /* font-family: "Manrope", sans-serif; */
    animation: pulse 1.5s infinite;
}
.title_qviz {
  margin: 0 auto;
  margin-top: 20px;
  width: 90%;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 33px;
}
.dct_text {
  padding: 10px 20px;
  margin: 0 auto;
  width: 89%;
  margin-top: 0px;
  background-color: #30383b;
  border: 1px solid black;
  font-weight: bold;
  border-radius: 4px;
  font-size: 13px;
}
.katalog_doch h1 {
  text-align: center;
  font-size: 31px;
  font-weight: 700;
  margin-top: 30px;
}
.katalog_tab {
  background-color: #ffa700;
  font-size: 12px;
  font-weight: 200;
  padding: 15px 5px;
  width: 33%;
  text-align: center;
  cursor: pointer;
  border: 1px solid black;
}
}
/* Breadcrumbs / Хлебные крошки */

/* Breadcrumbs */
.breadcrumbs { background-color: #f5f5f5; border-bottom: 1px solid #e0e0e0; padding: 15px 20px; margin: 0; width: 100%; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; list-style: none; margin: 0 auto; padding: 0; gap: 8px; max-width: 1200px; }
.breadcrumbs__item { display: flex; align-items: center; font-size: 14px; color: #666; }
.breadcrumbs__item a { color: #ffa700; text-decoration: none; transition: color 0.3s; }
.breadcrumbs__item a:hover { color: #ff7402; text-decoration: underline; }
.breadcrumbs__item:not(:last-child)::after { content: ">"; margin-left: 8px; color: #999; }
.breadcrumbs__item--current { color: #333; font-weight: 500; }
@media(max-width:768px){html,body{overflow-x:hidden!important;}}

/* Мигающие оранжевые точки в УТП */
.utp-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #f5a623;
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}


/* УТП на главной - стили */
.block_title_offer {
  font-size: 32px;
  max-width: 78%;
}
.block_title_offer .utp-dot {
  width: 10px;
  height: 10px;
}
@media (max-width: 768px) {
  .block_title_offer {
    font-size: 14px;
    max-width: 100%;
    line-height: 18px;
  }
  .block_title_offer .utp-dot {
    width: 6px;
    height: 6px;
    margin: 0 5px;
  }
}


      

/* ===== FAQ Section ===== */
.faq-section{padding:64px 20px;position:relative;overflow:hidden;background:var(--pr-bg-1)}
.faq-section::before{content:"";position:absolute;inset:auto auto -20% -10%;width:420px;height:420px;background:radial-gradient(closest-side,rgba(14,108,196,.1),transparent 70%);pointer-events:none}
.faq-wrap{max-width:1200px;margin:0 auto;position:relative;z-index:1}
.faq-title{font-size:clamp(28px,2.8vw,52px);letter-spacing:.4px;margin:0 0 10px;text-align:center;color:var(--pr-ink)}
.faq-subtitle{margin:0 0 32px;color:var(--pr-muted);font-size:18px;text-align:center;line-height:1.5}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--pr-card);border-radius:var(--pr-radius);box-shadow:0 4px 14px rgba(17,33,55,.07);overflow:hidden;transition:box-shadow .25s ease}
.faq-item:hover{box-shadow:var(--pr-shadow)}
.faq-question{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;cursor:pointer;gap:16px;user-select:none}
.faq-question h3{font-size:17px;font-weight:600;color:var(--pr-ink);margin:0;line-height:1.4;flex:1}
.faq-icon{width:32px;height:32px;min-width:32px;border-radius:50%;background:var(--pr-bg-2);display:flex;align-items:center;justify-content:center;transition:transform .3s ease,background .3s ease}
.faq-icon svg{width:14px;height:14px;stroke:#ff6f00;stroke-width:2.5;fill:none;transition:transform .3s ease}
.faq-item.active .faq-icon{background:#ff6f00;transform:rotate(180deg)}
.faq-item.active .faq-icon svg{stroke:#fff}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease}
.faq-answer-inner{padding:0 24px 20px;font-size:15px;line-height:1.7;color:var(--pr-muted)}
.faq-answer-inner p{margin:0 0 10px}
.faq-answer-inner p:last-child{margin-bottom:0}
@media(max-width:768px){.faq-section{padding:40px 16px}.faq-question{padding:16px 18px}.faq-question h3{font-size:15px}.faq-answer-inner{padding:0 18px 16px;font-size:14px}.faq-subtitle{font-size:15px}}

/* === categoryRelated block === */
.cat-related{padding:48px 20px;background:var(--pr-bg-1)}
.cat-related__wrap{max-width:1200px;margin:0 auto}
.cat-related__title{text-align:center;font-size:clamp(24px,2.4vw,42px);font-weight:700;color:var(--pr-ink);margin:0 0 32px}
.cat-related__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.cat-related__card{display:flex;flex-direction:column;gap:10px;background:var(--pr-card);border-radius:var(--pr-radius);box-shadow:0 4px 14px rgba(17,33,55,.07);padding:24px 20px;text-decoration:none;color:inherit;transition:box-shadow .25s,transform .25s}
.cat-related__card:hover{box-shadow:var(--pr-shadow);transform:translateY(-3px)}
.cat-related__card-title{font-size:17px;font-weight:700;color:var(--pr-ink);line-height:1.35}
.cat-related__card-desc{font-size:14px;color:var(--pr-muted);line-height:1.55;flex:1}
.cat-related__card-link{font-size:14px;font-weight:600;color:#f7931e;margin-top:4px}
.cat-related__card:hover .cat-related__card-link{text-decoration:underline}
@media(max-width:900px){.cat-related__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:580px){.cat-related__grid{grid-template-columns:1fr}}

/* === Hero Header Tablet/Mobile Fix 2026-03-27 === */
@media (max-width: 1320px) and (min-width: 1181px) {
  .verh { width: min(calc(100% - 32px), 1040px); }
  .menu { justify-content: space-between; }
  .menu li { margin-left: 18px; }
  .menu a,
  .menu a:visited { font-size: 16px; }
  .logo1 { width: 8%; }
  .verh_mat { width: 92%; }
}

@media (max-width: 1180px) {
  header > .aaa {
    position: relative;
  }
  header > .aaa > .fon,
  header > .aaa > .fon1 { height: clamp(420px, 52vw, 620px); overflow: hidden; }
  header > .aaa > .fon,
  header > .aaa > .fon1 { height: 100%; }
  header > .aaa > .fon img,
  header > .aaa > .fon1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .verh {
    width: min(calc(100% - 32px), 980px);
    padding: 16px 0 0;
    align-items: flex-start;
    z-index: 5;
  }
  .logo1 { width: 72px; min-width: 72px; flex: 0 0 72px; }
  .verh_mat { width: calc(100% - 88px); }
  .verh_verh { gap: 16px; align-items: flex-start; }
  .verh_middl { gap: 14px; align-items: flex-start; flex-wrap: wrap; }
  .verh_middl_title,
  .menu_gorodov { font-size: clamp(16px, 1.9vw, 24px); line-height: 1.1; }
  .m_contact { margin-left: auto; padding: 8px 12px; gap: 8px; }
  .m_contanct_izo { width: 42px; }
  .m_telefon a,
  .m_telefon a:visited { font-size: clamp(16px, 2vw, 21px); line-height: 1.05; }
  .m_email_text { font-size: 12px; }
  .verh_niz { position: relative; display: flex; justify-content: flex-end; margin-top: 14px; }
  .burger {
    display: flex;
    position: relative;
    width: 38px;
    height: 26px;
    margin-left: auto;
    z-index: 1002;
  }
  .burger span { background-color: #fff; height: 4px; }
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(360px, calc(100vw - 32px));
    background: rgba(48, 56, 59, 0.98);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    z-index: 1001;
  }
  .nav.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .menu { flex-direction: column; align-items: stretch; gap: 0; background: transparent; }
  .menu li { width: 100%; margin: 0; }
  .menu a,
  .menu a:visited { color: #fff; font-size: 20px; padding: 14px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .menu li:last-child > a { border-bottom: 0; }
  .dropdown-menu {
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0 0 14px 14px;
    transition: max-height 0.3s ease;
  }
  .dropdown:hover .dropdown-menu { transform: none; max-height: 0; }
  .dropdown.active .dropdown-menu { max-height: 900px; }
  .dropdown-menu a,
  .dropdown-menu a:visited { color: #fff; font-size: 16px; padding: 12px 20px 12px 34px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .block_title {
    left: 50%;
    top: auto;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(calc(100% - 48px), 760px);
    z-index: 3;
  }
  .block_title h1 { max-width: 100%; margin-bottom: 10px; font-size: clamp(34px, 4.8vw, 48px); line-height: 1.02; letter-spacing: 0.5px; }
  .block_title_offer { display: inline-block; max-width: 100%; font-size: clamp(18px, 2.2vw, 26px); line-height: 1.25; letter-spacing: 0; padding: 10px 14px; }
  .block_title .raschet { display: inline-flex; width: auto; max-width: 100%; margin-top: 18px; padding: 18px 22px; font-size: 14px; }
  .mobil_trips { display: none; }
}
@media (max-width: 767px) {
  header > .aaa > .fon,
  header > .aaa > .fon1 { height: clamp(340px, 92vw, 420px); overflow: hidden; }
  .verh { width: calc(100% - 16px); padding-top: 8px; }
  .logo1 { width: 58px; min-width: 58px; flex-basis: 58px; }
  .verh_mat { position: relative; width: calc(100% - 68px); padding-right: 52px; }
  .verh_verh { gap: 8px; align-items: flex-start; }
  .verh_middl { display: none; }
  .verh_niz { position: absolute; top: 2px; right: 0; margin-top: 0; }
  .m_contact { padding: 5px 8px; gap: 6px; }
  .m_contanct_izo { width: 34px; }
  .m_telefon a,
  .m_telefon a:visited { font-size: 14px; }
  .m_email_text { font-size: 10px; }
  .burger { margin-top: 0; margin-left: 0; align-self: flex-start; }
  .nav {
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    width: calc(100vw - 16px);
    transform: translate(-50%, -12px);
  }
  .nav.active { transform: translate(-50%, 0); }
  .block_title {
    left: 8px;
    bottom: 28px;
    transform: none;
    width: calc(100% - 16px);
  }
  .block_title h1 { font-size: clamp(20px, 7.2vw, 34px); line-height: 1.05; letter-spacing: 0; margin-bottom: 10px; }
  .block_title_offer { width: 100%; font-size: clamp(12px, 4vw, 15px); line-height: 1.18; padding: 7px 10px; }
  .block_title_offer .utp-dot { width: 6px; height: 6px; margin: 0 5px; }
  .block_title .raschet { width: 100%; justify-content: center; margin-top: 12px; padding: 13px 12px; font-size: 12px; line-height: 1.1; }
}
@media (max-width: 420px) {
  .verh { padding-top: 6px; }
  .verh_mat { padding-right: 48px; }
  .verh_niz { top: 0; right: 0; margin-top: 0; }
  .m_contact { padding: 4px 7px; }
  .m_contanct_izo { width: 32px; }
  .m_telefon a,
  .m_telefon a:visited { font-size: 13px; }
  .m_email_text { font-size: 9px; }
  .block_title { bottom: 34px; width: calc(100% - 14px); }
  .block_title h1 { max-width: calc(100% - 76px); font-size: clamp(16px, 5.3vw, 24px); line-height: 1.02; }
  .block_title_offer { font-size: clamp(11px, 3.6vw, 14px); line-height: 1.16; padding: 6px 8px; }
  .block_title .raschet { margin-top: 10px; padding: 12px 10px; font-size: 11px; }
}
/* === End Hero Header Tablet/Mobile Fix === */
