*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.img-cat-blog img {max-height: 300px;}
.img-cat-blog {
  display: table;
  margin: 0 auto;
    margin-bottom: 0px;
  margin-bottom: 50px;}
 .block-item {
            background: rgba(255, 255, 255, 1);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(13, 83, 149, 0.1);
            border: 1px solid rgba(13, 83, 149, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.6s ease forwards;
            transition: all 0.3s ease;
        }

        .block-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(13, 83, 149, 0.15);
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .block-left {
            flex-shrink: 0;
            min-width: 200px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding: 12px 16px;
            background: rgba(13, 83, 149, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(13, 83, 149, 0.1);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: rgba(13, 83, 149, 0.08);
            transform: translateX(5px);
        }

        .icon-wrapper {
            width: 40px;
            height: 40px;
            background: rgba(13, 83, 149, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .info-item:hover .icon-wrapper {
            background: rgba(13, 83, 149, 0.2);
            transform: scale(1.1);
        }

        .icon-wrapper svg {
            width: 20px;
            height: 20px;
        }

        .info-text {
            flex: 1;
        }

        .info-label {
            font-size: 12px;
            color: rgba(13, 83, 149, 0.7);
            font-weight: 500;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-value {
            font-size: 16px;
            font-weight: 600;
            color: rgba(13, 83, 149, 1);
        }

        .block-right {
            flex: 1;
        }

        .block-title {
            font-size: 20px;
            font-weight: 600;
            color: rgba(0, 0, 0, 1);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .block-description {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(30, 30, 30, 0.8);
            margin-bottom: 20px;
        }

        .thumbnails {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid rgba(13, 83, 149, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .thumbnail:hover {
            border-color: rgba(13, 83, 149, 0.5);
            transform: scale(1.05);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .block-item {
                flex-direction: column;
                gap: 20px;
                padding: 24px;
            }

            .block-left {
                min-width: 100%;
            }

            .info-item {
                margin-bottom: 12px;
            }

            .block-title {
                font-size: 18px;
            }

            .block-description {
                font-size: 15px;
            }

            .thumbnail {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
 

            .block-item {
                padding: 20px;
                border-radius: 12px;
            }

            .info-item {
                padding: 10px 12px;
            }

            .icon-wrapper {
                width: 36px;
                height: 36px;
            }

            .thumbnails {
                gap: 8px;
            }

            .thumbnail {
                width: 50px;
                height: 50px;
            }
        }

        /* Задержка анимации для последовательного появления */
        .block-item:nth-child(1) { animation-delay: 0.1s; }
        .block-item:nth-child(2) { animation-delay: 0.2s; }
        .block-item:nth-child(3) { animation-delay: 0.3s; }
        .block-item:nth-child(4) { animation-delay: 0.4s; }
        .block-item:nth-child(5) { animation-delay: 0.5s; }

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: rgba(30, 30, 30, 1);
    transition: color 0.3s ease;
    display: block;
}

.nav a:hover {
    color: #007bff;
}

/* Выпадающее меню каталога */
.catalog-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.catalog-parent:hover .catalog-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catalog-container {
    width: 100%;
}

.catalog-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.catalog-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 6px;
}

.catalog-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.catalog-image {
    width: 100px;
    height: 60px;
    margin-bottom: 10px;

    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: #1e1e1e;
}

/* Стрелочка для каталога */
.catalog-trigger::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.catalog-parent:hover .catalog-trigger::after {
    transform: rotate(180deg);
}

/* Адаптивность */
@media (max-width: 768px) {
    .catalog-dropdown {
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .catalog-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .catalog-columns {
        grid-template-columns: 1fr;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
}


.bg-whites {background:#fff;}
.center2 {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.center2.slick-initialized {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.slick-list, .slick-track {
    min-height: 120px; /* Фиксированная высота для предотвращения скачков */
}

.pagetitle-cat {
    visibility: hidden;
}

.slick-initialized .pagetitle-cat {
    visibility: visible;
}



.char-title {
font-weight: 600;
font-size: 20px;
color:rgba(0, 0, 0, 1);
margin-bottom:20px;
}
 

.char-l2:last-child {border:none !important;}
.char-l2 {border-bottom:1px solid rgba(13, 83, 149, 0.25);
font-weight: 400;
font-size: 16px;
	 display:grid;padding-top:8px;padding-bottom:8px;
  grid-template-columns: 200px 1fr;

}
.char-l2 div:first-child { flex: 1;}
.char-l2 div:last-child {font-weight: 600;}

.char-l:last-child {border:none !important;}
.char-l {border-bottom:1px solid rgba(9, 120, 61, .25);
font-weight: 400;
font-size: 16px;
	 display: flex;padding-top:8px;padding-bottom:8px;
      align-items: flex-start;
      gap: 30px;
}

.bg-whites {
  background: white;
  border-radius: 8px;
  height: 100%;
  text-align: center;
}

.bg-forms-g {background:rgba(255, 255, 255, 1);padding:40px 20px 40px 20px;
    -webkit-border-radius: 20px;
-moz-border-radius:20px;
border-radius:20px;  
}
.grid-f{display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items:start;
  margin-bottom: 30px;}
.char-l div:first-child { flex: 1;}
.char-l div:last-child {font-weight: 600;}
.char-line {height:2px;width:100%;    -webkit-border-radius: 8px;
-moz-border-radius:8px;
border-radius:8px;  margin-bottom:15px;
background:rgba(217, 217, 217, 1);
}
.section-content h1 {
font-weight: 600;
font-size: 44px;margin-top:0px;
color:#000;
margin-bottom:30px;
}
.section-content {margin-top:40px;margin-bottom:50px;}
.sect-t1 {
margin-bottom:20px;
font-weight: 600;
font-size: 40px;
color:rgba(9, 120, 61, 1);	
}
.sect-t2 {
font-weight: 400;
font-size: 20px;margin-bottom:40px;
color:rgba(9, 120, 61, 1);

	
}
.contacts-mobile {margin-to:30px;}
.contacts-mobile  a {color:#fff;}
.content-mini {margin-top:30px;margin-bottom:30px;}
.section-main-items {margin-top:30px;margin-bottom:50px;}
.section-main-items h1 {
font-weight: 600;
font-size: 44px;line-height: 1.2em;
margin:0px;margin-bottom:20px;
color:#000;
}
.character {background:rgba(255, 255, 255, 1);padding:20px;
    -webkit-border-radius: 8px;
-moz-border-radius:8px;margin-bottom:40px;
border-radius:8px;   
}
.fl-container {
 display: flex;
      align-items: flex-start;
      gap: 30px;
	margin-bottom:30px;
}

.grid-title {
      flex-shrink: 0;
      margin: 0;    flex: 1;
      color: #333;
 text-align: center;
font-weight: 600;
font-size: 40px;
color:rgba(9, 120, 61, 1);

    }
.section-charact {margin-top:50px;}
    .grid-content{
   flex-shrink: 0;
      text-align: left;
      line-hemin-width: 150px;ight: 1.6;
    }

 .zakaz-pricep {
            display: flex;
            align-items: center;
            justify-content: space-between; /* Это ключевое свойство */
            padding: 9px 8px 9px 24px;
            background:rgba(9, 120, 61, 1);
            max-width: 260px;
            border-radius: 32px;
            font-weight: 500;
            text-decoration: none;
            font-size: 18px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .zakaz-pricep:hover {
            background-color:#fff;
            color: rgba(9, 120, 61, 1);
        }

.grid-charact { display: grid;
  grid-template-columns:1fr 1fr 1fr;
  gap: 20px;}

        /* Дополнительный стиль для иконки */
        .btn-icon {
            margin-left: auto; /* Это прижмет иконку к правому краю */
        }
.zakaz-pricep:hover rect {fill:rgba(9, 120, 61, 1) !important;}

.zakaz-pricep:hover path {fill:rgba(255, 255, 255, 1)}
.grid-items-h {  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 20px;}
/*Слайдер*/
 /* Слайдер */
.bg-main {background:rgba(43, 46, 55, 1);height: 70dvh; position: relative;}
.callback-slider {
            display: flex;
            align-items: center;
            gap: 8px;margin-top:20px;
            padding: 12px 8px 12px 24px;
   background: rgba(255, 255, 255, 1);
  max-width:260px;
	-webkit-border-radius: 32px;
  -moz-border-radius: 32px;
    border-radius: 32px;   
font-weight: 500;
text-decoration: none;
font-size: 18px;
color:rgb(9, 120, 61);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .callback-slider:hover {
            background-color:rgb(9, 120, 61);
            color:#fff;
        }
.callback-slider rect {fill:rgb(9, 120, 61)}
.callback-slider path {fill:rgba(255, 255, 255, 1)}
.callback-slider:hover path {fill:rgba(255, 255, 255, 1)}

.callback-slider:hover rect {fill:rgba(255, 255, 255, 1) !important;}

.callback-slider:hover path {fill:rgb(9, 120, 61)}



.main-slider {
    position: relative;
    width: 100%;
    height: calc(100% - 181px);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
 
}

.slide-text {
    max-width: 100%;
	  display: grid;
  grid-template-columns:1fr 350px;
  gap: 20px;
	
    padding-top: 0px;
}

.main-title-h1 {
    font-weight: 600;
    font-size: 52px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-desc {
    font-weight: 400;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 1;
}

.slide-image {
    max-width: 100%;
    width: auto;
    height: auto;max-height:500px;
position:absolute;bottom:20px;
    object-fit: contain;
}
.h100 {height:100%;}
/* Навигация слайдера */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Адаптивность */
/* Адаптивность */
@media (max-width: 1200px) {
    .main-title-h1 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .main-title-h1 {
        font-size: 36px;
    }
    
    .slide-desc {
        font-size: 18px;
    }
    
    .slide-image {
        max-height: 60%;
    }
}

@media (max-width: 768px) {
    .bg-main {
        height: 50dvh;
    }
    
    .main-slider {
        height: calc(100% - 120px); /* Уменьшаем высоту слайдера */
    }
    
    .main-title-h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .slide-desc {
        font-size: 16px;
        text-align: center;
    }
    
    .slide-image {
        max-height: 50%;
        position: relative; /* Меняем absolute на relative */
        bottom: auto; /* Убираем фиксированное позиционирование */
        margin: 0 auto; /* Центрируем по горизонтали */
        display: block;
    }
    
    .slide-content {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Центрируем содержимое по вертикали */
        padding-top: 20px; /* Уменьшаем отступ сверху */
    }
    
    .slide-text {
        grid-template-columns: 1fr; /* Убираем grid на мобильных */
        gap: 15px;
        padding-top: 20px; /* Уменьшаем отступ */
    }
    
    .slider-arrows {
        display: none;
    }
    
    .slider-nav {
        bottom: 20px; /* Поднимаем точки навигации выше */
    }
}

@media (max-width: 576px) {
    .bg-main {

      min-height: 450px;
    }
    
    .main-slider {
        height: calc(100% - 100px); /* Еще уменьшаем высоту слайдера */
    }
    
    .main-title-h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-image {
    }
    
    .slide-content {
        padding-top: 15px;
        justify-content: space-between; /* Равномерно распределяем пространство */
    }
    
    .slide-text {
        padding-top: 15px;
        gap: 10px;
    }
    
    .slider-nav {
        bottom: 55px;
    }
    
    /* Дополнительные исправления для очень маленьких экранов */
 
}
/*конец слайдера*/
a {transition: all 0.5s ease;}
html, body {
  overflow-x: hidden !important;
}
body {
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
    margin: 0;
    background:rgba(241, 244, 248, 1);
     font-family: "Open Sans", sans-serif;
}
.in-body header {padding-bottom:10px !important;}
.switcher {
  position: absolute;
  visibility: hidden;
  left: -9999px;
}
.slick-slide > div {
  padding: 0 8px;
}
.img-c  {height:87px;
  align-items: unset;}
.pagetitle-cat .title-c{
font-weight: 600;line-height: 1.2em;min-height: 37px;
font-size: 14px;text-decoration:none;
color:rgba(30, 30, 30, 1);
}
.container{
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.container-fluid{
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.note2 {font-size: 12px;color: #9b9b9b;}
.note2 a {color: #9b9b9b;}
.modal-title-f {font-weight: 300;font-size: 30px; margin-top: 0px;color: rgba(19, 11, 2, 1); text-align:center;margin-bottom:30px;}
.buttom-call {background:rgba(9, 120, 61, 1);color:#fff;
display:block;width:100%;
font-weight: 500;cursor:pointer;
font-size: 16px;
padding:16px 0px;border:0px;
text-align: center;transition: all 0.5s ease;
        -webkit-border-radius: 8px;
-moz-border-radius:8px;
border-radius:8px;   
text-decoration: none;
}
.form-supject {
  opacity: 0;
  display: none;
  pointer-events: none;
}
.opacity a {opacity:.4;}
.opacity a.current {opacity:1;}
.opacity a:hover {opacity:1;}
.catalog-menu {margin-top:40px;margin-bottom:40px;}
.pagetitle-cat a {text-decoration:none;transition: all 0.3s ease;}
.pagetitle-cat a:hover .title-c {color:rgba(13, 83, 149, 1);transition: all 0.3s ease;}
.product {
  position: relative;
  border: 1px solid rgba(88, 100, 137, 0.2);
  background: #fff;
  box-shadow: 0px 0px 34px 0px rgba(13, 83, 149, 0.1);
  font-weight: 600;
  font-size: 16px;max-width:370px;
  border-radius: 12px;
  width: 100%; /* Занимает всю доступную ширину ячейки */
  height: 150px; /* Уменьшаем высоту как вы просили */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  padding: 15px;
  box-sizing: border-box;
}

.product-name {
  color:rgba(9, 120, 61, 1);
  max-width: 60%; /* Текст занимает до 60% ширины */
  text-align: left;
  margin: 0;
  padding: 8px 12px;
  z-index: 2;
  font-size: 16px;
  line-height: 1.3;
  align-self: flex-start; /* Текст вверху слева */
}

.product img {
  width: 200px; /* Фиксированная ширина для прямоугольника */
  object-fit: contain; /* Сохраняем пропорции изображения */
  position: absolute;
  right: 15px; /* Выравниваем по правому краю */
  bottom: 15px; /* Размещаем внизу */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product:hover {
  border: 1px solid rgba(9, 120, 61, 1);
  box-shadow: 0px 0px 34px 0px rgba(9, 120, 61, 0.25);
  transition: all 0.3s ease;
}

.product:hover img {
  transform: scale(1.15) translateY(-5px);
}
.products-grid2 {
  grid-column: 1 / span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 66.666%; /* 2/3 ширины */
  margin: 0 auto;
}
/* Первые три карточки занимают колонки 1,2,3 */
.product:nth-child(1) {
  grid-column: 1; /* Первая колонка */
}

.product:nth-child(2) {
  grid-column: 2; /* Вторая колонка */
}

.product:nth-child(3) {
  grid-column: 3; /* Третья колонка */
}

/* Последние две карточки занимают колонки 2 и 3 во второй строке */
.product:nth-child(4) {
  grid-column: 2; /* Вторая колонка */
  grid-row: 2; /* Вторая строка */
}

.product:nth-child(5) {
  grid-column: 3; /* Третья колонка */
  grid-row: 2; /* Вторая строка */
}


/* Альтернативный вариант для центрирования последних двух карточек */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}


.position-img-abs {position:absolute;bottom:0px;}
.buttom-call:hover {background:rgba(9, 120, 61, .8);}
.input-cr {width:100%;height:40px;font-size: 18px;padding-left:20px;
border:1px solid rgba(9, 120, 61, 1);color:#000;
	   -webkit-border-radius: 8px;
-moz-border-radius:8px;
border-radius:8px;   margin-bottom:20px;
}
.row{
	margin-right: -15px;
	margin-left: -15px;
}
.row-flex{
	display: flex;
	flex-flow: row wrap;
}
.product img {max-width:200px;}


/*шапка*/
header {padding:30px 0px 60px 0px;}
.header-in {
background: rgba(255, 255, 255, 0.8);
box-shadow: 0px 0px 4px 0px rgba(13, 83, 149, 0.25);
backdrop-filter: blur(4px)
-webkit-border-radius: 999px;
  -moz-border-radius: 999px;
    border-radius: 999px;
    padding:12px 24px;
     display: flex;position:relative;
            justify-content: space-between;
            align-items: center;
    
}


        .logo-block {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .dealer-logo {
            font-size: 14px;
            color: #666;
            font-weight: normal;
            white-space: nowrap;
        }

        .main-logo {
            font-size: 24px;
            font-weight: bold;
            color: #d22;
        }

        .nav {
            display: flex;
            gap: 30px;
		
        }

        .nav a {
            text-decoration: none;
 
font-weight: 600;

font-size: 13px;
color:rgba(30, 30, 30, 1);

            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: #09783d;
        }

        .contact-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 5px;
        }

        .phone {

font-weight: 600;

font-size: 20px;
color:rgba(9, 120, 61, 1);

            text-decoration: none;
            white-space: nowrap;
        }

   

.callback-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 3px 8px 3px 24px;
   background:rgba(9, 120, 61, 1);
  
-webkit-border-radius: 32px;
  -moz-border-radius: 32px;
    border-radius: 32px;   
font-weight: 500;
text-decoration: none;
font-size: 14px;
color:#fff;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .callback-btn:hover {
            background-color:rgba(255, 255, 255, 1);
            color:#09783d;
        }

.callback-btn path {fill:#09783d}
.callback-btn:hover rect {fill:#09783d !important;}

.callback-btn:hover path {fill:rgba(255, 255, 255, 1)}

.section-main {padding:80px 0px 0px 0px;}
.main-title-h1 {
font-weight: 600;
font-size: 52px;
color:rgba(255, 255, 255, 1);
max-width:640px;
}
.img-main-big {background:url(../i/main-slide.png) no-repeat center;background-size: contain;width:100%;min-height:795px;}
/*Форма блок*/

.title-forms {
font-weight: 600;
font-size: 40px;max-width:400px;line-height: 1.1em;
color:rgba(9, 120, 61, 1);
}
.desc-forms {
font-weight: 400;
font-size: 20px;
color:rgba(9, 120, 61, 1);    
    
}

.text-products{
font-weight: 400;
font-size: 20px;
color:rgba(30, 30, 30, 1);
}
.section-products h2 {
  font-weight: 600;margin-top:0px;margin-bottom:0px;
  font-size: 40px;
  color: rgba(30, 30, 30, 1);
}
.section-products {padding:40px 0px 70px 0px;}
.products-title-grid {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.products-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  justify-items: center;
}


/*Каталог*/

.section-catalog h2 {
font-weight: 600;
font-size: 40px;
color:rgba(30, 30, 30, 1);    
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.items {background:#fff;padding:12px 12px 20px 12px;}
.desc-items-grid {  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;margin-bottom:40px;}
.link-catalog  {
display:table;
background:rgba(88, 137, 90, 1);
font-weight: 500;
font-size: 18px;text-decoration:none;
-webkit-border-radius: 32px;
  -moz-border-radius: 32px;
    border-radius: 32px;
color:#fff;margin:0 auto;padding:16px 33px;
   transition: all 0.5s ease; 
}


.link-catalog:hover {background:rgba(88, 137, 90, .9);cursor:pointer;}


.title-items{
font-weight: 600;
font-size: 20px;border-bottom:1px solid rgba(217, 217, 217, 1);
    padding-bottom:15px;margin-bottom:15px;
color:rgba(30, 30, 30, 1);
}
.link-about {border: 1px solid rgba(88, 137, 90, 1);display:table;margin:0 auto;
padding:8px 32px;
font-weight: 600;
font-size: 14px;text-decoration:none;
    -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
color:rgba(88, 137, 90, 1);

}
.link-about:hover {background:rgba(88, 137, 90, 1);color:#fff;}
.desc-i{color:rgba(88, 137, 90, 1);font-size: 12px; }
.desc-i div::first-child {
font-weight: 700;
}
.desc-i div:last-child {
font-weight: 400;
font-size: 11px;

}
/*УТП форма*/

.grid-forms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;align-items: end;

  margin-bottom: 30px;
}



/*о компнаии*/

.section-about-company {padding:100px 0px 60px 0px;}
.grid-company  {
      display: grid;
  grid-template-columns:1fr 1fr;
  gap: 20px;
       -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
background:#fff;    
}
.input-p {
border: 2px solid rgba(203, 210, 224, 1);
color:rgba(45, 54, 72, 1);
    height:48px;   -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;margin-bottom:20px;
    width:100%;
    padding-left:15px;
font-weight: 400;
font-size: 16px;    
}
.form-ytp {max-width:355px;margin-top:40px;}

.buttom-forms {background:rgba(9, 120, 61, 1);
color:#fff;    -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
font-weight: 500;border:0px;padding:16px 32px;
font-size: 18px;transition: all 0.5s ease;

}

.buttom-forms:hover {background:rgba(9, 120, 61, .9);cursor:pointer;}
.decs-forms {
font-weight: 400;
font-size: 20px;
color:rgba(9, 120, 61, 1);
    margin-top:30px;
    
}
.lef-copm-img img {-webkit-border-top-left-radius: 12px;
-webkit-border-bottom-left-radius: 12px;
-moz-border-radius-topleft: 12px;
-moz-border-radius-bottomleft: 12px;
border-top-left-radius: 12px;
border-bottom-left-radius: 12px;}
.right-comp {padding-top:60px;}
.grid-numbers  {
      display: grid;margin-top:100px;
  grid-template-columns:1fr 1fr;
  gap: 20px;
}
.number-t {
font-weight: 600;
font-size: 40px;
color:rgba(30, 30, 30, 1);
}
.number-d {
font-weight: 400;
font-size: 20px;
color:rgba(30, 30, 30, 1);
}
.text-comp{
font-weight: 400;
font-size: 16px;
color:rgba(30, 30, 30, 1);
}
.phone-c::before {background: url('../i/phone-c.svg');background-repeat: no-repeat;}
.phone-c::before {content:''; position:absolute; top:1px; left: -7px;margin-left:0px; display:inline-block; vertical-align:middle; width:24px; height:24px; line-height:24px;background-repeat:no-repeat;}
.phone-c{ padding-left:30px;position: relative;margin-bottom:10px;
font-weight: 400;text-decoration: none;display: block;
font-size: 20px;color:rgba(30, 30, 30, 1);
}

.mail-c::before {background: url('../i/mail-c.svg');background-repeat: no-repeat;}
.mail-c::before {content:''; position:absolute; top:1px; left: -7px;margin-left:0px; display:inline-block; vertical-align:middle; width:24px; height:24px; line-height:24px;background-repeat:no-repeat;}
.mail-c{ padding-left:30px;position: relative;margin-bottom:10px;
font-weight: 400;;text-decoration: none;display: block;
font-size: 20px;color:rgba(30, 30, 30, 1);
}

.address-c::before {background: url('../i/address-c.svg');background-repeat: no-repeat;}
.address-c::before {content:''; position:absolute; top:1px; left: -7px;margin-left:0px; display:inline-block; vertical-align:middle; width:24px; height:24px; line-height:24px;background-repeat:no-repeat;}
.address-c{ padding-left:30px;position: relative;
font-weight: 400;;text-decoration: none;display: block;
font-size: 20px;color:rgba(30, 30, 30, 1);
}



.phone-c2::before {background: url('../i/phone-c.svg');background-repeat: no-repeat;}
.phone-c2::before {content:''; position:absolute; top:1px; left: -7px;margin-left:0px; display:inline-block; vertical-align:middle; width:24px; height:24px; line-height:24px;background-repeat:no-repeat;}
.phone-c2{ padding-left:30px;position: relative;margin-bottom:10px;
font-weight: 400;text-decoration: none;display: block;
font-size: 20px;color:rgba(13, 83, 149, 1);
}

.mail-c2::before {background: url('../i/mail-c.svg');background-repeat: no-repeat;}
.mail-c2::before {content:''; position:absolute; top:1px; left: -7px;margin-left:0px; display:inline-block; vertical-align:middle; width:24px; height:24px; line-height:24px;background-repeat:no-repeat;}
.mail-c2{ padding-left:30px;position: relative;margin-bottom:10px;
font-weight: 400;;text-decoration: none;display: table;margin:0 auto;
font-size: 20px;color:rgba(13, 83, 149, 1);
}

.address-c2::before {background: url('../i/address-c.svg');background-repeat: no-repeat;}
.address-c2::before {content:''; position:absolute; top:1px; left: -7px;margin-left:0px; display:inline-block; vertical-align:middle; width:24px; height:24px; line-height:24px;background-repeat:no-repeat;}
.address-c2{ padding-left:30px;position: relative;
font-weight: 400;;text-decoration: none;display: block;
font-size: 16px;color:rgba(9, 120, 61, 1);
}


.grid-contact {
          display: grid;
  grid-template-columns:450px 1fr;
  gap: 20px; margin-top:40px;
    
}
.section-contacts h2 {
  font-weight: 600;
  font-size: 40px;
  color: rgba(30, 30, 30, 1);
}
.copyright {text-align: center;color:rgba(9, 120, 61, 1);}
footer {margin-top:70px;padding:35px 0px 22px 0px; box-shadow: 0px 0px 4px 0px rgba(13, 83, 149, 0.25);
backdrop-filter: blur(4px);background: #fff;
}


.nav-table {display:table;margin:0 auto;padding-top:15px;}
  .nav2 {
            display: flex;
            gap: 30px;
        }

        .nav2 a {
            text-decoration: none;
 
font-weight: 600;

font-size: 16px;
color:rgba(9, 120, 61, 1);

            transition: color 0.3s ease;
        }

        .nav2 a:hover {
            color:rgb(37, 117, 74);
        }



.grid-contact-c {
          display: grid;
  grid-template-columns:1fr 1fr 1fr;
  gap: 20px; margin-top:40px;
    align-items: center;
}

.grid-contact-c a {color:rgba(9, 120, 61, 1);}
.logo-margin0 {margin:0 auto;display: table;}

.dev {
    text-align:right;
}
.dev a {
    display: block;

}

.dev a img {
    display: inline-block;
    vertical-align: middle;
}

.dev a span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;line-height: 1.2em;
    text-align: left;
font-weight: 400;
font-size: 14px;
color:rgba(9, 120, 61, .45);
    position: relative;
    transition: .3s color;
}
 .dev a:hover {text-decoration:none;}
 .dev a:hover span {
    color: rgba(13, 83, 149, 1);
}

.breadcrumb {
  background-color:transparent;
  padding:10px 0 0;
  margin:0
}
.breadcrumb > li a {color:rgba(0, 0, 0, 1);}
.breadcrumb > li {
  position:relative;
  display:inline;color:rgba(0, 0, 0, 1);
}
.breadcrumb > li:first-child {
  padding:0 10px 0 0
}
.breadcrumb > li {
  padding:0 10px;

  font-weight: 400;
  font-size: 14px;
}
.breadcrumb > li + li::before {
  color:rgba(110,110,110,.6);
  position:absolute;
  content:"/ ";
  top:0;
  left:-4px;
  padding:0;
  display:inline-block
}
.breadcrumb > li {
  font-size:14px;
  font-weight:400
}
.breadcrumb > li a {
  color:rgba(0, 0, 0, 1);
  text-decoration:underline
}
.breadcrumb > li a:hover,
.breadcrumb > li a:focus {
  text-decoration:none
}


.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{
	float: left;
}
.col-xs-12{
	width: 100%;
}
.col-xs-11{
	width: 91.66666667%;
}
.col-xs-10{
	width: 83.33333333%;
}
.col-xs-9{
	width: 75%;
}
.col-xs-8{
	width: 66.66666667%;
}
.col-xs-7{
	width: 58.33333333%;
}
.col-xs-6{
	width: 50%;
}
.col-xs-5{
	width: 41.66666667%;
}
.col-xs-4{
	width: 33.33333333%;
}
.col-xs-3{
	width: 25%;
}
.col-xs-2{
	width: 16.66666667%;
}
.col-xs-1{
	width: 8.33333333%;
}
.col-xs-offset-12{
	margin-left: 100%;
}
.col-xs-offset-11{
	margin-left: 91.66666667%;
}
.col-xs-offset-10{
	margin-left: 83.33333333%;
}
.col-xs-offset-9{
	margin-left: 75%;
}
.col-xs-offset-8{
	margin-left: 66.66666667%;
}
.col-xs-offset-7{
	margin-left: 58.33333333%;
}
.col-xs-offset-6{
	margin-left: 50%;
}
.col-xs-offset-5{
	margin-left: 41.66666667%;
}
.col-xs-offset-4{
	margin-left: 33.33333333%;
}
.col-xs-offset-3{
	margin-left: 25%;
}
.col-xs-offset-2{
	margin-left: 16.66666667%;
}
.col-xs-offset-1{
	margin-left: 8.33333333%;
}
.col-xs-offset-0{
	margin-left: 0;
}
.col-xs-tac{
	text-align: center;
}
.col-xs-tar{
	text-align: right;
}
.col-xs-tal{
	text-align: left;
}
.col-xs-taj{
	text-align: justify;
}

.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after{
	display: table;
	content: " ";
}
.container:after,
.container-fluid:after,
.row:after{
	clear: both;
}
.container {
  margin-right:auto;
  margin-left:auto;
  padding-left:15px;
  padding-right:15px
}