    .counter-section {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
	padding: 30px 0px 50px 0px; 
    }

    .counter-item {
      background: white;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      padding: 15px 15px;
      width: calc(33.333% - 20px);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .counter-label {
      font-size: 0.7rem;
      margin-bottom: 0px;
      line-height: 1.4;
      color: #444;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .counter-digit-wrapper {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .counter-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #4D7AE1;
      font-weight: 600;
      line-height: 1;
    }

    .more-link {
      margin-top: 10px;
      color: #2980b9;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.7rem;
    }

    .more-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .counter-item {
        width: 100%;
        max-width: 340px;
      }
      .counter-number {
        font-size: 2.5rem;
      }
      .counter-digit-wrapper {
        height: 70px;
      }
    }





.slider_box
  {
   margin-bottom:50px;
  }

#new_slaider h2
  {
   line-height: 1;
   font-size: 1.5rem;
   font-family: "Montserrat-Bold";
   padding-bottom:15px;
  }

      #new_slaider .buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: space-between;
            padding-top: 20px;
            text-align: center;

        }


/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    #new_slaider .buttons {
        justify-content: center; /* центрируем кнопки */
    }
    
    /* Если кнопки должны быть в колонку */
    #new_slaider .buttons {
        flex-direction: column;  /* ставим в колонку */
        align-items: center;     /* центрируем по горизонтали */
    }
    
    /* Чтобы кнопки не растягивались на всю ширину */
    #new_slaider .buttons .btn {
        width: auto;           /* или фиксированная ширина, например 200px */
        min-width: 200px;      /* минимальная ширина для мобильных */
    }
}



        #new_slaider .btn {
	   font-family: "Montserrat";
            padding: 12px 24px;
            border: 2px solid #4a7cfa;
            color: #4a7cfa;
            font-weight: bold;
            border-radius: 0px;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        #new_slaider .btn:hover {
            background: #4a7cfa;
            color: white;
        }




        #new_slaider .slider-container {
            flex: 1;
            position: relative;
            width: 100%;
        }

        #new_slaider .slider {
            width: 100%;
            --height: 400px;
            --aspect-ratio: 1 / 1;
	    padding-bottom:30px;
            overflow: hidden;
            position: relative;
            --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        #new_slaider .slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        #new_slaider .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fff;
        }

        #new_slaider .slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s;
        }

        #new_slaider .slide img:hover {
            transform: scale(1.02);
        }

        .dots {
            position: absolute;

            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: #4a7cfa;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .slider {
                --height: 300px;
            }

            .text-block h1 {
                font-size: 24px;
            }

	    .counter-label {
      		font-size: 1rem;
      		}	


        }