

*, *::after, *::before {
	margin: 0;
	padding: 0;
}
.ibm-plex mono-thin {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: normal;
}

.ibm-plex mono-extralight {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: normal;
}

.ibm-plex mono-light {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: normal;
}

.ibm-plex mono-regular {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex mono-medium {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex mono-semibold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: normal;
}

.ibm-plex mono-bold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: normal;
}
.unbounded-<uniquifier> {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.header{
   background-image: url(back.png);
   height: 100vh;
   background-repeat: no-repeat;
   background-size: cover;
   font-family: "IBM Plex Mono", monospace;
.body {
	font-family: "IBM Plex Mono", monospace;
}

.container-2 {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 10px;

	display: flex;
	justify-content: space-between;
}
.contact{
	padding: 15px 58px;
	border-radius: 30px;
	background-color: #00FFFB;
	max-height: 150px;
	margin: auto 0;
	margin-right: 100px;
	cursor: pointer;
}
.logo {
	margin: 0px;
	padding: 10px;
}
.logo-img {
	max-height: 140px;
	min-height: 40px;
	width: 100%;
}

.text {
	font-family: "Unbounded", sans-serif;
	text-align: center;
	color: #00FFFB;
}
.opis {
	padding: 0px;
	text-align: center;
}
.zaglavie {
	max-width: 1500px;
	margin: 0 auto;
	color: white;
}
.item_link {
	display: flex;
	margin: 0 auto;

}
ul{
	list-style-type: none;
}
.menu {
	display: flex;

}
* {
  text-decoration: none;
}
.container {
  padding-top: 50px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.button{
	padding: 15px 58px;
	border-radius: 60px;
	background-color: #39F5F2;
	max-height: 300px;
	min-height: 100px;
	min-width: 250px;
	margin: auto 0;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	color: #1C1A1C;
	font-size: 20px;
	line-height: 20px;
	font-family: "IBM Plex Mono", monospace;
	font-weight: bolt;
}
.button:hover {
	background-color: #D8143A;
	transition: 1s;
}
.opis{
	color: #FCFCFC;
	max-width: 900px;
	margin: 0 auto;
	font-family: "Poiret One", sans-serif;
}
.modal{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: #ecececcf;
	animation-name: showModal;
	animation-duration: 0.4;
}
.content{
	background-color: #fff;
	padding: 120px;
	border-radius: 30px;
	background-color: #1C1A1C;;
	color:#FCFCFC; 
	animation-name: showContent;
	animation-duration: 0.4s;
}
@keyframes showModal {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes showContent {
	from {
		margin-bottom: -1000px;
	}
	to {
		margin-bottom: 0px;
	}
}
.card {
	background-color: whitesmoke;
  width: 225px;
  min-height: 300px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* Размещаем элементы в колонку */
  border-radius: 4px;
  transition: 0.2s;
  position: relative;
}

/* При наведении на карточку - меняем цвет тени */
.card:hover {
  box-shadow: 4px 8px 16px rgba(255, 102, 51, 0.2);
}

.card__top {
  flex: 0 0 220px; /* Задаем высоту 220px, запрещаем расширение и сужение по высоте */
  position: relative;
  overflow: hidden; /* Скрываем, что выходит за пределы */
}

/* Контейнер для картинки */
.card__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Встраиваем картинку в контейнер card__image */
  transition: 0.2s;
}

/* При наведении - увеличиваем картинку */
.card__image:hover > img {
  transform: scale(1.1);
}

/* Размещаем скидку на товар относительно изображения */
.card__label {
  padding: 4px 8px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #ff6633;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.card__bottom {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto; /* Занимаем всю оставшуюся высоту карточки */
  padding: 10px;
}

.card__prices {
  display: flex;
  margin-bottom: 10px;
  flex: 0 0 50%; /* Размещаем цены равномерно в две колонки */
}

.card__price::after {
  content: "₽";
  margin-left: 4px;
  position: relative;
}

.card__price--discount {
  font-weight: 700;
  font-size: 19px;
  color: #414141;
  display: flex;
  flex-wrap: wrap-reverse;
}

.card__price--discount::before {
  content: "Со скидкой";
  font-weight: 400;
  font-size: 13px;
  color: #bfbfbf;
}

.card__price--common {
  font-weight: 400;
  font-size: 17px;
  color: #606060;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}

.card__price--common::before {
  content: "Обычная";
  font-weight: 400;
  font-size: 13px;
  color: #bfbfbf;
}

.card__title {
	text-align: center;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  color: #414141;
}

.card__title:hover {
  text-align: center;
  color: #ff6633;
}

.card__add {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 17px;
  color: #70c05b;
  padding: 10px;
  text-align: center;
  border: 1px solid #70c05b;
  border-radius: 4px;
  cursor: pointer; /* Меняем курсор при наведении */
  transition: 0.2s;
  margin-top: auto; /* Прижимаем кнопку к низу карточки */
}

.card__add:hover {
  border: 1px solid #ff6633;
  background-color: #ff6633;
  color: #fff;
}
.cards {
  display: grid;
  /* Автоматически заполняем на всю ширину grid-контейнера */
  grid-template-columns: repeat(auto-fill, 225px);
  width: 100%;
  max-width: 1000px; /* Ширина grid-контейнера */
  justify-content: center;
  justify-items: center; /* Размещаем карточку по центру */
  column-gap: 15px; /* Отступ между колонками */
  row-gap: 15px; /* Отступ между рядами */
  margin: 0 auto;
}
.tip {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	color: white;
	margin-bottom: 25px;
}
.row {
	color: white;
	text-align: center;
	margin-bottom: 2rem;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
.forma{
	margin-left: 20rem;
	align-items: center;
	max-width: 1200px;
}
.forma .box {

	width: 100%;
	margin: 1rem 0rem 1rem;
	border-radius: 0.5rem;
	padding: 0.8rem;
}
.butn {
	margin-left: 500px;
	padding: 1rem 3rem;
	border-radius: 1.5rem;
	box-shadow: 0.5rem 1rem rgba(255, 255, 255, 0);
	align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Выпадающий контент (скрыт по умолчанию) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
}

/* Ссылки внутри выпадающего */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Изменить цвет выпадающих ссылок при наведении */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Показать выпадающее меню при наведении */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Изменить цвет фона кнопки выпадающего списка, когда отображается содержимое выпадающего списка. */
.dropdown:hover .dropbtn {
  background-color: skyblue;
}
.brend {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.button2{
	padding: 15px 38px;
	border-radius: 60px;
	background-color: rgba(0, 255, 251, 0.7);
	max-height: 300px;
	margin: auto 0;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	color: #1C1A1C;
	font-size: 15px;
	line-height: 20px;
	font-family: "IBM Plex Mono", monospace;
	font-weight: bolt;
}
.svag {

	padding: 15px 58px;
	border-radius: 30px;
	max-height: 150px;
	margin: auto 0;
	margin-right: 100px;
	cursor: pointer;
}
.row {
	color: white;
}