@font-face {
  font-family: "PT Serif", serif;
  font-weight: 500;
  font-style: normal;
}

.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}

.pt-serif-regular-italic {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.pt-serif-bold-italic {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: italic;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000;
  background-color: #ffffff;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  font-family: "PT Serif", serif;
}

a {
  text-decoration: none;
  color: #000000;
}

p {
  margin: 0;
  padding: 0;
  font-size: 20px;
}

ul {
  list-style-type: none;
}

h1 {
  text-align: center;
}
/*Стили блока "Шапка"*/
.header {
  background-color: #0087b0;
  color: white;
  padding: 20px 55px;
  height: 175px;
  display: flex;
  flex-direction: column;
}

.top-panel {
  display: flex;
  flex-direction: row;
  margin: 10px 25px;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  justify-content: center;
}

.header-logo-image {
  width: 100px;
  height: 100px;
}

.header-contact-block {
  color: #ffffff;
  font-size: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-contact-image {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.header-contact-link {
  color: #ffffff;
  font-family: "PT Serif", serif;
}

.menu {
  margin-top: 5px;
}

.menu-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
}
.menu-list-link {
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: #ffffff;
}

.menu-list-link:hover {
  text-decoration-line: underline;
  text-decoration-style: solid;
  color: gold;
}

.search-block {
  margin-left: auto;
  margin-right: auto;
}

.search {
  width: 600px;
  height: 50px;
  border: none;
  border-radius: 10px;
  outline: none;
  padding-left: 15px;
  font-size: 20px;
}

/*Стили контента*/
.page-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 4px;
  height: fit-content;
  padding: 30px;
}

main {
  margin-left: 4px;
  background: #ffffff;
  width: 100%;
  padding: 15px;
}

.page-content-aside {
  width: 25%;
  padding-top: 15px;
  background: #ffffff;
}

.aside-content {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.aside-content-info {
  width: 213px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;

  font-family: "PT Serif", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

.catalog-title {
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  text-transform: uppercase;
  background-color: #0087b0;
  color: white;
  margin-top: 38px;
  padding-left: 10px;
}

.catalog-subtitle {
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 19px;
  text-transform: uppercase;
  color: #000;
  padding-left: 10px;
  margin-bottom: 14px;
  margin-top: 14px;
}

.catalog-list {
  padding-left: 10px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
}
.catalog-list-item {
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
  margin-bottom: 5px;
  white-space: pre-line;
  overflow-wrap: break-word;
}

.catalog-list-item:hover {
  color: #0087b0;
}

.catalog-list-item > a {
  display: block;
  width: 100%;
  font-family: "PT Serif", serif;
  white-space: pre-line;
  overflow-wrap: break-word;
}

.catalog-list-item > a:hover {
  color: #0087b0;
  white-space: pre-line;
  overflow-wrap: break-word;
}

.catalog-list-item > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 9px;
  margin-left: -15px;
}
.catalog-list-item:hover > a::before {
  background-color: #0087b0;
}

.cart-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.5em;
  justify-content: space-around;
  gap: 20px;
  column-count: 3;
}

.cart-list-components {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.1em;
  justify-content: flex-start;
  gap: 50px;
  margin-top: 50px;
}

.cart-list-item {
  width: 200px;
  padding: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  transition: 0.2s;
}

.cart-list-item:hover {
  transform: scale(1.05);
}

.not-item {
  border: none;
  cursor: auto;
}

.cart-list-item > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.cart-list-item-image {
  width: 150px;
  height: 150px;
  margin-right: auto;
  margin-left: auto;
}

.form-title {
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #000;
  margin-right: auto;
  margin-left: auto;
}

.form {
  width: 80%;
  margin-right: auto;
  box-sizing: border-box;
}

.form > input {
  width: 100%;
  height: 30px;
  margin-bottom: 11px;
  box-sizing: border-box;
  font-size: 20px;
}

.form > textarea {
  width: 100%;
  height: 159px;
  margin-bottom: 12px;
  box-sizing: border-box;
  resize: none;
  font-size: 20px;
}

.form-item {
  font-family: "PT Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 30px;
  color: #000;
  padding-left: 8px;
  outline: none;
}
.form-item:focus {
  border-color: gold;
}
.form > button {
  width: 250px;
  height: 60px;
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #0087b0;
  border: none;
  border-radius: 6px;
  margin-right: auto;
  margin-left: auto;
}

.form > button:hover {
  color: gold;
}

.about {
  width: 790px;
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.main-content-title {
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.main-content-subtitle {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 20px;
}

.main-content-subtitle > img {
  width: 25px;
  height: 25px;
  margin-right: 20px;
}

.main-content-subtitle > h3 {
  margin: 0;
  font-family: "PT Serif", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  text-align: left;
  color: #0087b0;
}

.main-content-list-item {
  font-size: 20px;
}

.main-content-block-header {
  display: flex;
  flex-direction: row;
}

.main-content-block-description {
  margin-top: 10px;
  margin-bottom: 10px;
}

.main-content-block-image {
  width: 300px;
}

.main-content-block-header-param {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}

.footer {
  text-align: center;
  font-size: 18px;

  background-color: #0087b0;
  color: white;
  padding: 25px 15px;
}

.footer-link {
  color: #ffffff;
}

/*Добавленные стили*/

.list-items {
  display: flex;
  flex-direction: column;
  border: 2px solid #0087b0;
  padding: 0;
  margin: 0;
}

.list-item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  border: 1px solid #0087b0;
  padding: 0;
  margin: 0;
}

.list-item-image-block {
  border-right: 1px solid #0087b0;
}
.list-item-image {
  width: 100px;
  height: 100px;
  padding: 10px;
}

.list-item-title {
  width: 100%;
  font-size: 20px;
  color: #0087b0;
}

.list-item-features {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #0087b0;
  width: 100%;
  padding: 2px 2px 2px 10px;
}
p.list-item-feature {
  width: 100%;
  font-size: 14px;
}
