body {
    background-color: #000;
    color: white;
    font-family: 'GetVoIP Grotesque', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    position: relative;
}

.logo img {
    height: 60px; /* Исходный размер логотипа */
}

.center-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.call-button {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

.call-button i {
    margin-right: 10px;
}

.phone-number {
    margin-left: 200px; 
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

.email {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

.email a {
    color: white;
    text-decoration: none;
}
.language-switcher {
    position: absolute;
    left: 400px; /* Подстройте положение */
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.lang-option {
    margin: 0 5px;
    cursor: pointer;
    font-weight: bold;
}

.lang-option:hover {
    text-decoration: underline;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.content {
    max-width: 1500px;
    font-size: 40px;
    color: #888;
}

.glow-on-hover {
    width: 300px;
    height: 60px;
    border: none;
    outline: none;
    color: #fff;
    background: #888;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1; /* Всегда видимая прозрачность */
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.image-container img {
    width: 550px;
    filter: drop-shadow(0px 4px 10px rgba(255, 255, 255, 0.5));
}

/* Медиазапрос для мобильных устройств */
@media only screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    .language-switcher {
        position: static;
        transform: none;
        margin-top: 10px;
        font-size: 14px;
    }
    .center-container {
        position: static;
        transform: none;
        margin: 10px 0;
    }
    
    .call-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .phone-number {
        margin-left: 10px;
        font-size: 16px;
        margin-top: 10px;
    }
    
    .email {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 10px;
    }
    
    .hero {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .content {
        font-size: 24px;
        max-width: 100%;
    }
    
    .glow-on-hover {
        width: 100%;
        max-width: 300px;
        height: 50px;
        font-size: 16px;
        margin-top: 30px;
    }
    
    .image-container img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        margin-top: 30px;
    }
}

        .partners {
    overflow: hidden;
    background: #000;
    padding: 20px 0;
    position: relative;
    margin-top: 120px;
  }
  
  .logos {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
  }
  
  .logos img {
    height: 60px;
    display: inline-block;
    filter: grayscale(100%) brightness(50%);
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

  /* Дублируем содержимое для бесконечного скролла */
  .scroll-wrapper {
    display: flex;
  }

  .scroll-wrapper .logos {
    flex-shrink: 0;
  }
  .statistics {
    background-color: #111;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
    margin-top: 160px;
    filter: drop-shadow(0px 4px 10px rgba(255, 255, 255, 0.5));
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    padding: 20px;
    border-radius: 15px;
    flex: 1 1 30%;
    max-width: 250px;
}

.stat-item h2 {
    font-size: 38px;
    color: #fff;
    margin: 0;
}

.stat-item p {
    font-size: 18px;
    color: #999;
}
.innovation-section {
    margin: 50px auto;
    max-width: 1200px;
}

.container-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.rounded-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-container:hover {
    transform: scale(0.95); /* Уменьшение контейнера до 95% */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Добавление тени при наведении */
}

.rounded-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 10px;
    color: white;
    padding: 5px 10px;
    font-size: 26px;
    border-radius: 5px;
    font-weight: bold;
}

.hero1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.content1 {
    max-width: 1000px;
    font-size: 20px;
    color: #888;
}

.image-container1 img {
    width: 550px;
    filter: drop-shadow(0px 4px 10px rgba(255, 215, 0, 0.7));
}

/* Медиазапрос для мобильных устройств */
@media only screen and (max-width: 768px) {
    .innovation-section {
        margin: 20px auto;
        max-width: 100%;
        padding: 0 10px;
    }

    .container-grid {
        flex-direction: column;
        gap: 15px;
    }

    .rounded-container {
        height: 250px;
    }

    .overlay-text {
        font-size: 18px;
        padding: 4px 8px;
        top: 5px;
    }

    .hero1 {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .content1 {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .image-container1 img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

        footer {
            background: #000;
            padding: 50px 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .footer-column h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            font-size: 22px;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            font-size: 22px;
        }
        
        .footer-column ul li a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 22px;
        }
        
        .footer-column ul li a:hover {
            color: #fff;
        }
        
        .contact-icons {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .contact-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 70px;
            background: #222;
            border-radius: 10px;
            transition: background 0.3s;
        }
        
        .contact-icons a:hover {
            background: #444;
        }
        
        .contact-icons img {
            width: 42px;
            height: 42px;
        }
        
        .contact-info {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .contact-info a {
            color: #ff9800;
            text-decoration: none;
        }
        
        .footer-buttons {
            display: flex;
            gap: 10px;
        }
        
        .footer-buttons button {
            padding: 10px 15px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 22px;
            transition: background 0.3s;
        }
        
        .btn-orange {
            background: #ff9800;
            color: #fff;
        }
        
        .btn-orange:hover {
            background: #e68900;
        }
        
        .btn-blue {
            background: #2196F3;
            color: #fff;
        }
        
        .btn-blue:hover {
            background: #1976D2;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            font-size: 12px;
            color: #777;
        }
        
        .payment-icons img {
            width: 50px;
            margin: 0 5px;
        }
        .mobile-adapted {
    color: #fff;
    max-width: 800px;
    font-size: 60px;
}

/* Медиазапрос для экранов шириной 768px и меньше */
@media only screen and (max-width: 768px) {
    .mobile-adapted {
        font-size: 36px;   /* уменьшенный размер шрифта */
        max-width: 100%;   /* использовать всю ширину экрана */
        margin: 0 auto;    /* центрирование, если необходимо */
        padding: 0 15px;   /* внутренние отступы для комфортного чтения */
    }
}
.mobile-adapted1 {
    color: #fff;
    max-width: 1600px;
    font-size: 60px;
}

/* Медиазапрос для экранов шириной 768px и меньше */
@media only screen and (max-width: 768px) {
    .mobile-adapted1 {
        font-size: 36px;   /* уменьшенный размер шрифта */
        max-width: 100%;   /* использовать всю ширину экрана */
        margin: 0 auto;    /* центрирование, если необходимо */
        padding: 0 15px;   /* внутренние отступы для комфортного чтения */
    }
}
.mobile-adapted2 {
    color: #fff;
    max-width: 1600px;
    font-size: 60px;
}

/* Медиазапрос для экранов шириной 768px и меньше */
@media only screen and (max-width: 768px) {
    .mobile-adapted2 {
        font-size: 36px;   /* уменьшенный размер шрифта */
        max-width: 100%;   /* использовать всю ширину экрана */
        margin: 0 auto;    /* центрирование, если необходимо */
        padding: 0 15px;  
         /* внутренние отступы для комфортного чтения */
    }
}