body{
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	min-width: 320px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	/*background-image: url(../img/весна.jpg);*/
	background-blend-mode: overlay;
	background-size: cover;
	background-position: center;
	background-repeat: repeat;
	margin: 0; /* убираем стандартные отступы */
}

.background-overlay{
	background-color: #c9d5c340;
	/*background-image: url(../img/зима-фон-removebg.png);*/
	background-image: url(../img/зима-фон-removebg.png);
	background-size: contain;
	background-repeat: repeat;
	overflow-x: hidden;
	min-height: 1200px;
  display: flex;
  flex-direction: column;
}

.oshibka-404 img{
	height: 50%;
	width: 50%;
}

.oshibka-404 p{
	text-align: center;
}

header{
	padding-top: 30px;
}

.main-logo{
	display: flex;
	justify-content: center;
}

.main-logo img{
/*     border: 5px solid #fff;
padding: 5px; */
}

header h1{
	display: flex;
	justify-content: center;
}

h1 span{
	background-color: #94c974;
	padding: 5px 20px;
	color: #fff;
	border-radius: 20px;
}

/* Общие стили */
.header-navigation {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 20px;
}

.hamburger {
	display: none; /* Скрываем гамбургер по умолчанию */
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	align-self: flex-start; /* Гамбургер в левом верхнем углу */
}

.menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden; /* Скрываем переполнение для плавного эффекта */
	transition: max-height 0.3s ease-in-out; /* Плавная анимация высоты */
	text-align: center;
}

.header-navigation ul {
	display: flex;
	list-style: none;
	margin: 0 0 2px;
	padding: 0;
}

.header-navigation a {
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding: 5px 13px;
	display: inline-block;
	color: #000; /* Белый цвет текста для большого экрана */
}

.header-navigation a::before,
.header-navigation a::after,
.header-navigation a span::before,
.header-navigation a span::after {
	content: "";
	position: absolute;
	background-color: #000;
	transition: transform 0.3s ease-in-out;
}

/* Горизонтальные линии */
.header-navigation a::before,
.header-navigation a::after {
	width: 100%;
	height: 2px;
	left: 0;
	transform: scaleX(0);
}

.header-navigation a::before {
	top: 0;
}

.header-navigation a::after {
	bottom: 0;
}

/* Вертикальные линии */
.header-navigation a span::before,
.header-navigation a span::after {
	width: 2px;
	height: 100%;
	top: 0;
	transform: scaleY(0);
}

.header-navigation a span::before {
	left: 0;
}

.header-navigation a span::after {
	right: 0;
}

/* При наведении все линии появляются */
.header-navigation a:hover::before,
.header-navigation a:hover::after {
	transform: scaleX(1);
}

.header-navigation a:hover span::before,
.header-navigation a:hover span::after {
	transform: scaleY(1);
}

.black-time{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.black-time h2{
	text-align: center;
	line-height: 40px;
}


.nachala{
	font-size: 22px;
}

.text-danger{
	font-size: 40px;
	color: #e21f1f;
}

.form-container {
	width: 550px;
	padding: 10px;
	border-radius: 10px;
	background-color: #e21f1f;
}
.email-form {
	display: flex;
	background: #e21f1f; /* Red background */
	border-radius: 5px;
/*	overflow: hidden;*/
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border: 2px solid #fff;
}
.email-input {
	flex: 1;
	padding: 10px 15px;
	border: none;
	background: transparent;
	color: white;
	font-size: 16px;
	outline: none;
	border-right: 1px solid #fff;
}
.submit-btn {
	/*padding: 10px 20px;*/
	border: none;
	background: #e21f1f; /* Red background */
	color: white;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s;
}
.submit-btn:hover {
	background: #990000; /* Darker red on hover */
}
::placeholder {
	color: white;
	opacity: 0.7;
}

.text-center{
	margin-top: 40px;
	text-align: center;
	color: #e21f1f;
}


/*  */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #6b99d2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: none;
    color: #fff;
    font-weight: 600;
    z-index: 1000;
}

.popup .popup-content {
    text-align: center;
}

.hidden {
    display: none;
}

.popup-content button{
    background-color: #ffffff;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}

/*  */





main{
	display: flex;
	flex-direction: column;
	align-items: center;
}

main h1{
    text-align: center;
    max-width: 700px;
}

.tags, .tag-list{
    max-width: 750px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tags a{
    background-color: #ffffff;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    padding: 3px 7px;
    font-size: 15px;
    margin-left: 10px;
    margin-bottom: 5px;
    border: 2px solid #6b99d2;
    color: #3b75be;
}

.text-danger-2{
	color: #e21f1f;
}

.list-shop{
	display: flex;
	width: 733px;
	flex-wrap: wrap;
	justify-content: space-around;
	list-style: none;
	padding: 0;
}

.list-item{
    width: 150px;
    text-align: center;
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	align-items: center;
}

.list-shop .banner{
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
}

.banner img{
    width: 100%;
}


.list-item  a{
	text-decoration: none;
}

.list-item .shop-img{
	background-color: #fff;
	display: flex;
	width: 153px;
	justify-content: center;
	margin-bottom: 5px;
	padding: 7px 3px;
}

.list-item .shop-name{
	text-align: center;
	color: #000;
}

.store-content {
    max-width: 750px;
    padding: 0 25px;
    line-height: 25px;
}

.logo-store img{
    width: 100%;
}

.store-content p{
    text-align: justify;
}


.store-link {
    background-color: #f34d65;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

.store-link:hover {
    background-color: #e2394e;
}



/**/

/**/



.container-footer {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.tag-footer{
    margin: 0 auto;
}


.tag-footer-2{
    margin: 0 auto;
}

.footer-f {
  margin-top: auto;
}

.content-box {
	margin-top: 20px;
	background: rgb(211 232 200);
	border-radius: 25px 25px 0 0;
	padding: 15px;
}

.content {
	text-align: justify;
}

.left-align {
	text-align: left;
}

.center-align {
	text-align: center;
}

.toc {
	font-size: 20px;
}

.toc a {
	color: inherit;
	text-decoration: none;
}

.highlight {
	color: #008000;
}

.strong-text {
	font-weight: bold;
}

.section-title {
	font-size: 14px;
	font-weight: bold;
}

.container-footer a {
	color: #e21f1f;
	text-decoration: none;
}

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


.site-footer {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
	background-color: #d3e8c8;
}

.container-footer strong,
.container-footer h2{
	color: #e21f1f;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.copyright {
	text-align: center;
	font-size: 14px;
	color: #666;
}

.copyright a {
	color: #e21f1f;
	text-decoration: none;
}

.copyright a:hover {
	text-decoration: underline;
}

.date {
	color: #0000009e;
	font-weight: bold;
}


.social{
	margin-left: 40px;
	display: flex;
	list-style: none;
}


.social-item {
	font-size: 40px;
	margin-right: 10px;
	color: #fff;
}

.social-item i{
	color: #94c974;
}




.social-item i {
    color: #6b99d2 !important;
}


h1 span {
    background-color: #6b99d2!important;
}


#time .circle {
    --clr: #6b99d2!important;
}


.content-box {
    background: rgb(107 153 210 / 43%) !important;
}

.site-footer {
    background: rgb(107 153 210 / 43%) !important;
}





/* Медиа-запрос для экранов меньше 1000px */


@media (max-width: 1000px) {
	.main-logo{
		flex-direction: column;
		align-items: center;
	}

	.social{
		margin-left: 0;
	}


	header h1{
		font-size: 25px;
	}
	
	.hamburger {
		display: flex;
		justify-content: center;
		width: 100%;
		font-size: 56px;
		color: #000; /* Убедимся, что иконка видна на темном фоне, если есть */
	}

		.hamburger-activ {
		display: flex;
		justify-content: center;
		width: 100%;
		font-size: 56px;
		color: #000; /* Убедимся, что иконка видна на темном фоне, если есть */
	}

	.menu {
		display: block; /* Меняем на block для работы с max-height */
		max-height: 0; /* Изначально меню скрыто */
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		background-color: #f5f5f5; /* Светлый фон для мобильного меню */
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
		z-index: 1000;
	}

	.menu.active {
		max-height: 850px;
		text-align: center;
	}

	/* Объединяем все элементы в один список */
	.header-navigation ul {
		display: block; /* Убираем flex, делаем вертикальный список */
		margin: 0;
	}

	.header-navigation ul li {
		display: block; /* Каждый элемент на новой строке */
		margin: 0;
	}

	.header-navigation a {
		color: #000; /* Черный текст для мобильного меню */
		display: block; /* Ссылки занимают всю ширину */
		padding: 15px 20px;
		border-bottom: 1px solid #ddd; /* Разделитель между пунктами */
	}

	/* Убираем лишние границы у последнего элемента */
	.header-navigation ul:last-child li:last-child a {
		border-bottom: none;
	}

	.social {
	    margin-left: -24px;
	    margin-top: 0;
	    display: none;
	}

		.social-mobil{
		display: flex;
		margin-top: 20px;
	}

	.header-navigation {
	    margin-top: -30px;
	}
	.black-time {
	    margin-top: -20px;
	}

	.text-center {
	    margin-top: 0;
	}
}

@media (min-width: 1001px) {
		.social-mobil{
		display: none;
	}
}


@media (max-width: 590px) {
	header h1 span{
		text-align: center;
	}

	header h1 {
	  font-size: 22px;
	}

	.text-danger {
	  font-size: 35px;
	}

	.form-container {
	  width: 450px;
	}
	.social-mobil{
		display: flex;
	}

	.nachala{
		text-align: center;
		font-size: 16px;
		height: 22px;
		margin-bottom: 12px;
		padding: 0 41px;
	}

	.black-time h2{
		margin-bottom: -20px;
	}
}

@media (max-width: 740px) {
	.list-shop {
	     width: 100%;
	}
}

@media (max-width: 480px) {
	.form-container {
	  width: 380px;
	}
	.text-center {
		font-size: 20px;
		padding: 0 51px;
	}
}

@media (max-width: 380px) {
	.form-container {
	  width: 370px;
	}

	.form-container .submit-btn{
		font-size: 9px;
	}
	    
	 header h1 span {
        font-size: 23px;
    }
}

@media (max-width: 700px) {
    .background-overlay {
        background-image: none;
    }
}











