body {
  font-size: 20px;
  font-family: Monaco serif;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
li,
ol,
a {
  padding: 0;
  list-style: none;
  text-decoration: none;
}

.title {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.information {
  width: 1260px;
  display: block;

  border-radius: 8px;
  color: white;
  padding: 10px;
  margin-top: 10px;

  background-color: rgb(66, 66, 66);
}

.box {
  margin-left: 25px;
}

.body {
  background-color: #dfdfdf
}

.container {
  width: 1600px;
  margin-left: auto;
  margin-right: auto;

  padding: 170px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f9f9fd;
  text-align: left;
}

.button {
  text-align: center;

  border-radius: 8px;
  padding: 15px 2px;
  width: 150px;
  height: 50px;
  border: 1px solid black;

}

.icon {
  display: inline-block;
  margin-right: 6px;
  width: 12px;
  height: 20px;

  background-color: red;
  border-radius: 2px;

  /* выравнивание элемента по центру строки,только для строчных и строчно-болочных элементов */
  vertical-align: middle;
}

.button__link {
  /* display: inline-block; */
  vertical-align: top;
  text-align: center;
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: black;
}

/* ================ / button============== */

/* ========== flex ========== */
.box__one {
  display: flex;
  margin: 0;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  text-align: center;

  background-color: #658baa;
  border: 1px dashed black;
  border-radius: 8px;
}

.img {
  display: block;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.box__item {
  width: 70px;
  height: 50px;

  border: 1px solid black;
  padding-top: 15px;

  margin: 15px;
  margin-right: 15px;

  color: white;
  background-color: rgba(150, 100, 54, 10);

  border-radius: 8px;
}

.box__item:nth-child(2n+1) {
  background-color: blue;
}

/* =============== 2 ================== */

.two {

  border: 1px solid black;

  justify-content: center;
  background-color: tomato;

}

/* =============== 3 ================== */

.three {
  height: 220px;

  justify-content: space-around;
  align-items: center;

  background-color: gray;

}

/* =============== 4 ================== */


.four {
  flex-direction: column;

  justify-content: space-between;
}

/* =============== order ================== */


.order {
  order: -1;
}

/* =============== align-self ================== */

.six {
  height: 120px;
  align-items: flex-start;
}

.order-one {
  align-self: flex-end;
}

/* =============== flex-wrap ================== */

.seven {
  padding: 0;
  height: 200px;
  flex-wrap: wrap;
  gap: 20px;
}

.eght {
  flex-wrap: wrap;
  height: 400px;
  align-content: flex-end;
  margin-bottom: 30px;

}

/* ========== nine ============= */
.nine {
  flex-wrap: wrap;
  height: 300px;
  margin-top: 30px;

  gap: 20px;
  flex-basis: 200px;
  flex-grow: 2;
}

.nine-one {
  flex-grow: 2;
}

.nine-two {
  flex-grow: 3;
}

.nine-thee {
  flex-grow: 2;
}

/* ========== ten ============= */

.ten {
  height: 200px;
}

.ten--item {
  align-self: flex-end;

}

/* ======================== */
.news__ul {
  display: flex;
  flex-wrap: wrap;

  margin-top: 50px;
  margin-bottom: 50px;

}

/* calc((100% - кол - во маржинов в строке * значение маржина) / кол-во элементов в строке ) */
.news__li {
  width: calc((100% - 30px) / 3);
  margin-right: 10px;
  margin-bottom: 20px;
}

.news__li:nth-child(4) {
  margin-right: 0;
}


.news__p {
  margin-bottom: 10px;
}

/* ================== */
.position {
  height: 400px;
  border: 1px solid black;
  border-radius: 8px;

  /* relative - необходимо указать родительскому блоку, чтобы объекты позиционировались относительно родительского блока, без указания свойства "relative" будет позиционироваться оносительно тега body */
  position: relative;
}

.box {
  color: white;
  text-align: center;
  display: inline-block;
  width: 150px;
  height: 150px;
  margin: 10px;
  border-radius: 8px;
  background-color: gray;
}

.absolute {
  text-align: center;

  position: absolute;
  bottom: 30px;
  border: 3px solid #e75613;
}


.fixed {
  bottom: 10px;
  border: 3px solid #2714ca7a;
  position: fixed;
  z-index: 1;
}

.relative {
  position: relative;
  left: 30px;
  border: 3px solid #e2c51e;
  z-index: 999;
}

.static {
  position: static;
  border: 3px solid #73AD21;
}

.sticky {
  border: 3px solid #0abeeb;
  position: sticky;
  width: 50%;
  float: right;
  top: 10px;
}