:root {
  --color-black: #26150a;
  --color-white: #fff;
  --color-text: #d0d0d0;
  --color-bg: #100700;
  --color-orange: #ff8400
}

*,
:after,
:before {
  box-sizing: inherit
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth
}

body,
html {
  max-width: 100%
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-black);
  color: var(--color-text);
  font-family: Montserrat, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-width: 320px;
  position: relative;
  text-rendering: optimizeLegibility
}

img,
picture {
  display: block;
  height: auto;
  max-width: 100%
}

a {
  color: var(--color-white);
  text-decoration: none;
  transition: all .3s ease-in-out
}

a:hover {
  color: var(--color-orange)
}

h1 {
  color: #fff;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  margin-top: 0
}

h2,
h3 {
  color: #fff;
  font-size: 21px;
  line-height: 31px;
  margin-bottom: 20px;
  margin-top: 0
}

h4{
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px;
  width: 1055px
}

.header {
  padding: 10px 0 0
}

.header__btn {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 15px
}

.header__logo {
  display: block;
  flex-shrink: 0;
  margin: 0 auto 10px;
  width: 150px
}

.header__logo img {
  width: 100%;
}

.header__bottom {
  background: var(--color-bg);
  border-radius: 40px;
  padding: 7px
}

.header__text,
.header__title {
  color: #fff;
  text-align: center
}

.header__text {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 20px
}

.btn {
  align-items: center;
  border-radius: 100px;
  display: flex;
  font-size: 24px;
  justify-content: center;
  line-height: 36px;
  padding: 13px 40px;
  width: -moz-max-content;
  width: max-content
}

.btn-orange {
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
  color: #fff
}

.btn-orange:hover {
  background: hsla(0, 0%, 100%, 0);
  color: var(--color-orange)
}

.btn-border {
  border: 1px solid var(--color-orange);
  color: var(--color-orange)
}

.btn-border:hover {
  background: var(--color-orange);
  color: #fff
}

.content-center,
.content-center img {
  border-radius: 40px
}

.content-center img {
  margin: 0 auto;
  transition: transform .3s ease, box-shadow .3s ease
}

.content-center:hover img {
  box-shadow: 0 8px 12px rgba(0, 0, 0, .2);
  transform: scale(1.01)
}

.table-responsive {
  margin-bottom: 25px;
  overflow-x: auto;
  width: 100%
}

.table-responsive table {
  border-collapse: collapse;
  width: 100%
}

.table-responsive table td {
  border: 1px solid var(--color-text);
  padding: 10px
}

.content {
  padding-bottom: 30px;
  padding-top: 15px
}

.footer {
  font-size: 12px;
  line-height: 18px;
  padding-bottom: 40px;
  padding-top: 10px
}

.not-found{
  padding: 100px 0;
  text-align: center;
}

.not-found p,
.not-found h1 {
  text-align: center;
}

.not-found h1{
  font-size: 100px;
  line-height: 1;
  margin-bottom: 30px;
}

.not-found .btn {
  margin: 0 auto;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  list-style: none;
  margin: 0 0 20px;
  padding: 0 0 20px
}

.breadcrumbs__row{
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  list-style: none;
}

.rating{
  display: flex;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-info .name{
  color: #fff;
  font-weight: 700;
  top: 0;
}

.item{
  border: 1px solid #fff;
  padding: 10px;
  margin-bottom: 15px;
}

.reviews{
  margin: 20px 0;
}

@media screen and (max-width:992px) {
  .header {
    position: relative;
    z-index: 1000
  }

  .header__title {
    font-size: 40px;
    line-height: 60px
  }

  .header__text {
    font-size: 24px;
    line-height: 36px
  }

  .btn {
    padding: 10px;
    width: 95%;
  }
}