* {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
body {
  background: url(/imeges/2.jpg);
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  z-index: 1;
  background: #000000ee;
  border-bottom: 2px solid #ff8400;
}
.header .menuOpen {
  position: absolute;
  right: 20px;
  font-size: 3rem;
  color: rgb(255, 94, 0);
  cursor: pointer;
  display: none;
}
.header .links .menuClose {
  font-size: 2.5rem;
  color: rgb(255, 94, 0);
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 20px;
  display: none;
}
.header .links {
  display: flex;
  width: 100%;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
}
.header .links img {
  height: 80px;
}
.header .links ul {
  display: flex;
  align-items: center;
}
.header .links ul li {
  position: relative;
  color: aquamarine;
}
.header .links ul .zvonok {
  margin-right: 30px;
}
.header .navend {
  margin-right: 20px;
}
.header .links ul li img {
  height: 60px;
  width: auto;
}
.header .links ul li .pozvonit {
  left: 130px;
  cursor: pointer;
}
.header .links ul li a {
  color: aquamarine;
}
@media (max-width: 800px) {
  .header .links ul li {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 80px;
  }
  .header .menuOpen {
    display: block;
  }
  .header .links ul .rabdni {
    display: none;
  }
  .header .links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    padding-top: 50px;
    /* gap: 30px; */
    background-image: linear-gradient(
      135deg,
      rgb(136, 221, 255) 5%,
      rgb(51, 51, 51) 80%,
      rgb(25, 0, 255)
    );
    flex-direction: column;
    justify-content: center;
    transition: 0.3s linear;
    z-index: 100;
  }
  .header.showMenu .links {
    left: 0;
  }
  .header .links .menuClose {
    display: block;
  }
  .header .links ul {
    flex-direction: column;
  }
  .header .links ul li {
    padding: 20px 0;
    margin-inline: auto;
  }
  .header .links ul .whatsapp1 {
    margin-inline: auto;
  }
}
@media (max-width: 425px) {
  .header {
    height: 60px;
  }
}
