  @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .animated-text {
            animation: fadeIn 2s ease-in-out;
        }
        	body {
	    max-width: 900px; /* Ограничиваем максимальную ширину */
    margin: 0 auto; /* Центрируем блок */
    border-radius: 25px;
    background-color: #fff; /* Светлый фон */
    border: 3px solid #003d7f  ; /* Цвет и толщина обводки */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Тень для глубины */
	}
	.montserrat-text {
		font-family: "Montserrat", sans-serif;
		font-weight: 200;
		font-style: normal;
		font-size: 20px;
	}
	.oswald-text {
	    color: #ff471a;
		font-family: "Oswald", sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 30px;
	}
	.orange-text {
		color: #ff471a;
		font-family: 'Russo One', sans-serif;
		font-size: 25px;
	}
	
	.moneserrat-text {
		font-family: 'Montserrat', sans-serif;
		font-size: 25px;
	}
	.black-text {
		color: #000000;
		font-family: 'Russo One', sans-serif;
		font-size: 25px;
	}
	
	.header-text {
	    font-family: 'Russo One', sans-serif;
	    color: #FFFFFF;
		font-size: 20px;
	}
	
	@media screen and (min-width: 1200px) {
		.orange-text {
		font-size: 40px;
		}
		
		.black-text {
		font-size: 40px;
		}
		
		.oswald-text {
		font-size: 40px;
		}
		
		.montserrat-text {
		font-size: 30px;
		}
	
	    .header-text {
	   font-size: 25px;
	    }

	}
	  .hidden {
            display: none;
        }
        
        .thin-borders {
			display: flex;
		}

		.bordered-element {
			position: relative;
		}

		.bordered-element::after {
			content: '';
			position: absolute;
			width: 100%;
			height: 1px;
			bottom: 0;
			left: 0;
			background-color: #000;
			opacity: 0.2;
		}

        .bg-custom { background-color: #003d7f  !important;
           border-radius: 20px;
        }
            .bg-custom-footer { background-color: #003d7f  !important;
           border-radius: 20px;
        }
                .custom-header {
            background-color: #000;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }
           .contact-info {
    max-width: 800px; /* Ограничиваем максимальную ширину */
    margin: 0 auto; /* Центрируем блок */
    padding: 20px; /* Внутренние отступы */
    background-color: #f8f9fa; /* Светлый фон */
    border: 1px solid #6c757d; /* Цвет и толщина обводки */
    border-radius: 8px; /* Закругление углов */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Тень для глубины */
}
  .table {
            border-radius: 15px; /* Закругленные углы таблицы */
            overflow: hidden; /* Скрываем лишние края */
        }
        .table th {
     background-color: #343a40;
    color: #ffffff;
    text-align: center;
        }
        .table td {
            height: 60px;
            text-align: center;
            vertical-align: middle;
            border-color: #ffffff; /* Цвет границ таблицы */
        }
        .today {
            background-color: #0c83ed; /* Тёмно-серый для выделения сегодняшнего дня */
            color: white;
            font-weight: bold;
            animation: pulse 1.5s infinite; /* Добавляем анимацию */
        }
        .working-day {
            background-color: #28a745; /* Зеленый для рабочих дней */
            color: white;
        }
        .weekend {
            background-color: #dc3545; /* Красный для выходных */
            color: white;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
          .typing {
            border-right: 2px solid;
            white-space: nowrap;
            overflow: hidden;
            animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: black; }
        }
        
         .service-card {
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.5s forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
                h2, h3 {
            color: #007bff;
        }
        .table thead th {
            background-color: #007bff;
            color: #ffffff;
        }
        .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
        }
        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #004085;
        }
.form-group {
    position: relative; /* Позволяет абсолютному позиционированию внутри элемента */
}

.suggestions-list {
    border: 1px solid #ccc;
    background-color: white;
    max-height: 150px; /* Высота подсказок */
    overflow-y: auto; /* Прокрутка при необходимости */
    position: absolute; /* Абсолютное позиционирование */
    z-index: 1000; /* На переднем плане */
    width: calc(100% - 1rem); /* Ширина равна ширине родительского элемента */
    top: 100%; /* Расположение под полем ввода */
    left: 0; /* Выровнять по левому краю */
    margin-top: 5px; /* Отступ от поля ввода */
    border-radius: 4px; /* Закругление углов */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Тень для лучшего визуального восприятия */
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0; /* Цвет при наведении */
}