* {
  box-sizing: border-box;
}
*::before, *::after {
  content: "";
  position: absolute;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

button {
  outline: none;
  border: none;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

body {
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  margin: 0;
  padding: 0;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  font-family: "Roboto", sans-serif;
  color: black;
  background-color: #fff;
}

.tech-container {
  max-width: 1440px;
  padding: 0 30px;
  height: calc(var(--vh, 1vh) * 100);
}

.tech {
  width: 100%;
  max-height: 80px;
  position: fixed;
  padding: 0;
  height: 80px;
}
.tech .tech-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.tech .tech-header__top {
  width: 100%;
  height: 30px;
  background-color: rgb(5, 188, 82);
}
.tech .tech-header__bottom {
  width: 100%;
  height: 50px;
  background-color: black;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tech .tech-header__bottom-logo {
  margin-left: 20px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1.1px;
}
.tech .tech-sale {
  position: absolute;
  top: 0;
  left: 33%;
  height: 100%;
}
.tech .tech-sale__inner {
  background-color: red;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 100px;
}
.tech .tech-sale__inner p {
  font-weight: 800;
  color: white;
  font-size: 24px;
}

.tech-main {
  height: 100%;
  width: 100%;
}
.tech-main .tech-main__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  height: 100%;
}
.tech-main .tech-main__inner-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.tech-main .tech-main__inner-header h1 {
  font-size: 38px;
}
.tech-main .tech-main__inner-block {
  margin-top: 60px;
}
.tech-main .tech-main__inner-block-items {
  display: flex;
  width: 100%;
}
.tech-main .tech-main__inner-block-items li {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}
.tech-main .tech-main__inner-block-items li:last-child {
  margin-right: 0;
}
.tech-main .tech-main__inner-block-items li picture {
  margin-top: 40px;
  max-width: 300px;
  max-height: 300px;
}
.tech-main .tech-main__inner-block-items li picture img {
  width: 100%;
  height: 100%;
}
.tech-main .tech-main__inner-block-items li .tech-price {
  background-color: red;
  color: white;
  font-size: 22px;
  font-weight: 700;
  padding: 5px 15px;
}
.tech-main .tech-main__inner-block-items li a {
  margin-top: 30px;
  background-color: brown;
  color: white;
  padding: 10px 25px;
}

.tech-footer {
  width: 100%;
  background-color: rgb(5, 188, 82);
}
.tech-footer .tech-footer__menu {
  display: flex;
}
.tech-footer .tech-footer__menu ul {
  margin-left: 20px;
  margin-top: 10px;
}
.tech-footer .tech-footer__menu ul li {
  color: #fff;
  margin-bottom: 10px;
}

.error__message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.error__message h1 {
  font-size: 38px;
}
.error__message p {
  margin-top: 50px;
  font-weight: 700;
}

@media (max-width: 576px) {
  header .header__top {
    display: none;
  }
  header .header__bottom {
    background-color: rgb(5, 188, 82);
  }
  header .sale {
    position: static;
  }
  main .main__inner-header {
    margin-top: 20px;
  }
  main .main__inner-header h1 {
    font-size: 30px;
    line-height: 32px;
    text-align: center;
  }
  main .main__inner-block {
    margin-top: 30px;
  }
  main .main__inner-block-items li:first-child {
    margin-right: 10px;
  }
  main .main__inner-block-items li picture {
    max-height: 150px;
  }
  footer {
    position: fixed;
    bottom: 0;
  }
}

/*# sourceMappingURL=tech.css.map */
