    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      overflow-x: hidden;
    }
.header{
  
    height: 120px;
}

.gif{position: absolute; 
	left: 0;
	top: 40px;}

.gif img{width: 160px;}
h2 {
    text-align: center;
}
    .block {
      height: 100vh;
      /*display: flex;*/
      align-items: center;
      justify-content: center;
      position: relative;
    }
#contact{
height: auto;
}
   .block:nth-child(odd) {
      background: #f0f0f0;
    }

    .block:nth-child(even) {
      background: #d0d0d0a1;
    }


/* Контейнер виджета счетчиков */
.counter-widget {
    display: flex;
    justify-content: space-around;
	margin-top: 10px;
    flex-wrap: wrap;
    text-align: center;
    padding: 0 20px;
}

/* Стили для отдельных счетчиков */
.counter-item {
    background: #fff;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(20% - 20px); /* Делает каждый счетчик адаптивным */
    transition: transform 0.3s ease;
    text-align: center;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.count {
    font-size: 48px;
    font-weight: bold;
    color: #1a237e;
    line-height: 1;
    margin-bottom: 10px;
    transition: transform 0.5s ease-in-out;
}

/* Иконки счетчиков */
.counter-item i {
    font-size: 50px;
    color: #1a237e;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Стили текста под иконками */
.counter-item p {
    font-size: 19px;
    font-weight: bold;
    color: #1a237e;
    line-height: 1;
    margin-bottom: 5px;
}




/* Стили для анимации */
@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

/* Анимация увеличения числа */
.count.animate {
    animation: scaleUp 0.6s ease forwards;
    color: #f44336;
}




/* Стили для шапки */
.header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    flex-wrap: wrap;
}

/* Общий стиль кнопок */
.contact-buttons {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
	margin-top: 45px;
}

.contact-buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

/* Цвета кнопок */
.instagram { background: #E4405F; }
.telegram { background: #0088cc; }
.whatsapp { background: #25D366; }
.email { background: #D44638; }
.phone { background: #34b7f1; }

/* Анимация при наведении */
.contact-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.company-info {
    display: flex;
    flex-direction: column; /* Вертикальное расположение для мобильных устройств */
    align-items: center; /* Центрирование содержимого */
    padding: 20px; /* Отступы вокруг блока */
    max-width: 1200px; /* Максимальная ширина блока */
    margin: 0 auto; /* Центрирование блока */
}

.image-block {
    display: flex;
    justify-content: center; /* Центрирование изображения */
    width: 100%; /* Ширина блока изображения */
}

.small-image {
	width: 100%;
    max-width: 500px;
    height: auto;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.text-center{
	text-align: center;
    letter-spacing: 1px;
    color: #131b67;
}

.text-block {
    text-align: left; /* Выравнивание текста влево */
    width: 100%; /* Ширина текстового блока */
}

.text-block h2 {
    font-size: 24px; /* Размер заголовка */
    margin-bottom: 10px; /* Отступ снизу */
}

.text-block p {
	font-size: 18px;
    color: #1a237e;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}




footer {
        background-color: #42466a;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        font-family: Arial, sans-serif;
		    }

    .footer-column {
        flex: 1;
        padding: 10px;
        min-width: 250px;
    }

    .footer-column h4 {
        margin-bottom: 15px;
		color: #ffc600;
		 letter-spacing: 1px;
    }

    .footer-column p,
    .footer-column a {
	margin: 5px 0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    }

    .footer-column a:hover {
        text-decoration: underline;
    }

    .social-icon {
        margin-right: 10px;
    }

    .address-icon {
        margin-right: 5px;
    }















/* Адаптивность */
@media (min-width: 768px) {
    .company-info {
        flex-direction: row; /* Горизонтальное расположение для больших экранов */
    }

    .image-block, .text-block {
        flex: 1; /* Каждому блоку даем равную ширину */
    }

    .image-block {
        margin-right: 20px; /* Отступ между блоками */
    }
}
   /* Стили для кнопки чата */
        .chat-widget {
            position: fixed;
            bottom: 10px;
            right: 10px;
            z-index: 1000;
        }

        .chat-button {
			background-color: #1a237e;
    		color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
			border: 1px solid #d0d0d05e;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .chat-button:hover {
        	background-color: #FFC107;
    		color: #1a237e;
        }

        /* Стили для контейнера с кнопками */
        .chat-options {
            position: absolute;
            bottom: 70px;
            right: 0;
            display: none;
            flex-direction: column;
            gap: 10px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .chat-option {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 16px;
            color: black;
            padding: 10px;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .chat-option:hover {
            background: #f1f1f1;
        }

        .chat-option img {
            width: 25px;
            height: 25px;
        }
/* Мобильная адаптация */
@media (max-width: 768px) {
	#projects{
	 height: 125vh;
	}
	#servises{
    height: 125vh;
}
	#home{
	height: 125vh;
	}
	#about{height: 125vh;}
	.header {
		height: 135px;}
	
    .email, .phone {
        padding: 5px 5px !important;
    }
	
	.gif{top: 80px;}
	.gif img{width: 100px;}
	
    /* Делаем соцсети круглыми */
    .contact-buttons a.instagram,
    .contact-buttons a.telegram,
    .contact-buttons a.whatsapp {
		width: 36px;
        height: 36px;
        padding: 0px;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
    }

    /* Прячем подписи у соцсетей */
    .contact-buttons a.instagram span,
    .contact-buttons a.telegram span,
    .contact-buttons a.whatsapp span {
        display: none;
    }
	
	    .contact-buttons {
       	flex-direction: row-reverse;
        align-items: center;
        gap: 10px;
    }
	
	.counter-item p {
    line-height: 1;
}
	
    .counter-widget {
        flex-direction: column;
        align-items: center;
		margin-top: 0;
    }

    .counter-item {
        flex: 1 1 100%;
        margin: 9px 0;
		width: 100%;
		padding: 22px;
    }

    .count {
        font-size: 40px;
    }

    .counter-item i {
        font-size: 60px;
        float: left;
		height: 70px;
    }
	
	.company-info {
        flex-direction: column; /* Вертикальное расположение для мобильных устройств */
        padding: 10px; /* Меньшие отступы */
    }

    .small-image {
        width: 100%;
        max-width: 300px;
        border: 1px solid black;
        border-radius: 15px;
    }

    .text-block h2 {
        font-size: 20px; /* Уменьшенный размер заголовка */
    }

    .text-block p {
        font-size: 15px;
        line-height: 1.4em;
    }
	
	
	
}
