@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body{
	background: #000;
}
.container{

	background: #000;
	 font-family: "Roboto", sans-serif;
/*  font-optical-sizing: auto;*/
  font-weight: 300;
  font-style: normal;

}
.menuobsh{
	background: background: rgba(0,0,0, 0.3);
}
header{

		/*background: rgba(0,0,0,0.2);*/

	/* padding:  1vw;*/
	 min-width: 98.5vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	

	min-height: 15vh;
	font-size: 16px;
}
.logo{
	width: 20vw;
}

nav div ul{
display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	min-width: 50vw;
	list-style: none;
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
	
	padding: 3vh 2vw;
	
}

nav div ul li{
	border-bottom: 0.25px solid #DCDCDC;
}
a{
	text-decoration: none;
	color: #fff;
	letter-spacing: 1px;
	
}
li{
	padding: 20px;

}
.rmenu{
	position: relative;
	cursor: pointer;
}
.viewm{
	display: none;
	 position: absolute;
      top: 4vh;      
      left: 0vw;
      z-index: 10;     
      
    
      background-color: rgba(0,0,0,0.8);
      border: 1px solid #ccc;
      border-radius: 5px;
   /*   box-shadow: 0 4px 6px rgba(255,255,255,0.1);*/
      padding: 10px;
      margin-top: 5px;
      min-width: 150px;
}
.rmenu:hover .viewm{
	display: block;
	transform: 0.4s;
	
}
h1{
	color: #fff;
	padding-top: 20vh;
	padding-left: 7vw;
	/*text-align: center;*/
	font-size: 45px; 
	  font-family: "Montserrat", sans-serif;
  /*font-optical-sizing: auto;*/
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  /*letter-spacing: 1.5px;*/
}
.pr{
	font-weight: 800;
	font-size: 34px;
}
.textColor{
	color: #AA1D42;
}
.scart{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color:#fff;
	margin-top: 4vh; 

}
.zag{
	height: 80vh;
	background-image: url(4.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	margin: 0;
	padding: 0;
}
.zagd{
	max-width: 40vw;
	background: rgba(0,0,0,0.5);
	height: 100%;
}
section{
	padding: 1vh 3vw;
	margin: 2vh;
	margin-top: 4vh;


}
section .imgCart{
	min-width: 40vw;
	height: auto;
	background-size:cover;
	/*background-size: 75%;
*/	background-position: center;
	background-repeat: no-repeat;

}
section .cart{
	width: 50vw;
}
section h2{
	/*max-width: 15vw;*/
	border-left: 2px solid #AA1D42;
	color: #fff;
	line-height: 1;
	margin: 2vh 0;
	padding: 1vh 1vw;
}
.cart p, .cart li{
	font-size: 14px;
	line-height: 1.4;
}
.cart ul li{
	margin-left: 2vw;
}
footer{
	min-height: 5vh;
	/*background-image: url(p.jpg);*/
	/*background: rgba(0,0,0,0.9); 
	background-repeat: no-repeat;*/
	/*background-size: cover;*/
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between; 
	padding:  1vw;
	 width: 98vw;
	 color: #fff;
	 align-items: flex-end;
	 font-weight: 300;
	 border-top: 0.1px solid #4b525c;
	 margin-top: 15vh;
}
.cont{
	display: flex;
	list-style: none;
	justify-content: space-between;
	width: 100%;
}
/*footer {
	text-align: bottom;
}*/
.logo img{
	width: 20vw;

}
nav ul li:hover{
	color:#AA1D42;
}
nav a:hover{
	color:#AA1D42;
}
footer p{
	margin: 2vh auto ;
	font-size: 8px;
}
footer ul li{
	font-size: 12px;
}
@media screen and (max-width: 768px) {
	.logo img{
		width: 80vw;
	}
  nav div ul {
    display: flex;
    flex-wrap: wrap; /* Разрешает перенос на новые строки */
  }
  
  nav div ul li {
    flex: 0 0 100%; /* Заставляет каждый пункт занимать 100% ширины контейнера */
  }
  .scart {
    flex-direction: column;
    margin-top: 1vh;
  }

  /* 2. Настраиваем текстовый блок, чтобы он занял всю ширину */
  section .cart {
    width: 100%;
    margin-bottom: 20px; /* Отступ между текстом и картинкой */
  }

  /* 3. Уменьшаем картинку */
  section .imgCart {
    min-width: 100%; /* Сбрасываем 40vw из десктопной версии и растягиваем на ширину экрана */
    /* Важный момент: так как картинка задана фоном (background-image), 
       в вертикальном положении она может "схлопнуться" до нуля. 
       Поэтому обязательно задаем ей явную высоту: */
    height: 300px; /* Можете изменить это значение (например, 250px или 400px), чтобы подобрать нужный размер */
    border-radius: 8px; /* По желанию: немного скруглить углы для красоты */
    background-size: contain;
    background-position: left;
  }
  section h2{
	/*max-width: 15vw;*/
	border-left: 2px solid #AA1D42;
	color: #fff;
	line-height: 1;
	margin: 1vh 0;
	padding: 1vh 1vw;
}
.zag .zagd{
	max-width: 100%;
}
.zag .zagd p{
	max-width: 100% !important;
}

}