body {
  background-color: #808080b5;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
}

.listNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 200px;
}



.listNavItem a {
  padding: 20px;
}

.listNavItem a:hover {
  color: red;
}

.title {
  text-align: center;
 }

.order_form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin: 50px auto;
}

.input,
.button {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid grey;
}

.button {
  cursor: pointer;
}

.active {
  color: red;
}

.position {
  width: 560px;
  height: auto;
  margin: 20px auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}



.mb {
  margin-bottom: 15px;
}

.mt {
  margin-top: 15px;
}

.link {
  color: rgba(0, 0, 255, 0.662);
}

/*keyCRM*/
.gridKey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.row{
    display: flex;
    flex-direction: center;
    justify-content: space-evenly;
    max-width:100%;
    margin: 0 auto;
}

.col{
    width: 800px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}

.col pre {
  white-space: pre-wrap;
}