* {
  margin: 1;
  padding: 1;
  box-sizing: border-box;
}
body {
  background-color: white;
  font-weight: 400;
  font-style: normal;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
header {
  background-color: #7f6c66;
}
.a_nav {
  color: white;
  text-decoration: none;
}
.nav-item {
  list-style: none;
}
.navbar {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}
.nav-logo {
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 50px;
}

.nav-link {
  font-size: 19px;
  transition: 0.5s ease;
  color: white;
  text-decoration: none;
}
.nav-link:hover {
  color: darkcyan;
}
.hamburger {
  cursor: pointer;
  display: none;
}
.span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

@media (width < 1500px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: #272727;
    width: 100%;
    transition: 0.3s;
  }
  .nav-item {
    margin: 15px 0;
  }
  .nav-menu.active {
    left: 0;
  }
}

/* общее */
.box {
  width: 100%;
}
.nice-text-shadow {
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 14px;
color: grey;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
letter-spacing: 2px;
}
.btn {
background: blue;
font-size: 14px;
border: none;
padding: 8px 10px 8px 10px;
border-radius: 5px;
color: white;
}
.txt{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: green;
}

/* таблица */
table {
border-spacing: 0 10px;
font-family: 'Open Sans', sans-serif;
font-weight: bold;
}
th {
padding: 10px 20px;
background: #56433D;
color: #F9C941;
border-right: 2px solid;
font-size: 0.9em;
}
th:first-child {
text-align: left;
}
th:last-child {
border-right: none;
}
td {
vertical-align: middle;
padding: 10px;
font-size: 14px;
text-align: justify;
border-top: 2px solid #56433D;
border-bottom: 2px solid #56433D;
border-right: none;/*2px solid #56433D;*/
/*border-left: 2px solid #56433D;*/ /*не было*/
}
td:first-child {
border-left: 2px solid #56433D;
border-right: none;
}
td:last-child {
border-right: 2px solid #56433D;
}
td:nth-child(2){
text-align: left;
}

/* Аккордеон */

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* margin: 0 auto; */
}
.accordion-item {
  margin-bottom: 15px;
}
.accordion__block {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.accordion__block:hover {
  background-color: #ddd;
}
.accordion__h3 {
font-size: 14px;
}
.plus {
  font-size: 2rem;
}
.accordion__content {
  padding: 20px;
  background-color: #ddd;
  display: none;
}
.accordion__content p {
  font-size: 20px;
  color: #111;
}

.accordion__block.active {
  background-color: #007bff;
  color: #fff;
}
.accordion__content.active {
  display: block;
}
.plus.rotate {
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}


