*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  background-color: #fff;
  margin-top: 70px;
  background-color: rgba(62, 62, 63, 0.233);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: white;
  z-index: 20;
}

.header .header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 95%;
  margin: 0 auto;
}

.header .header__container .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.header .header__container .logo img {
  width: 50px;
  height: auto;
  margin-right: 15px;
}

.header .header__container .logo h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  color: #000;
  cursor: pointer;
}

.header .header__container .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 400px;
}

.header .header__container .navigation ul li {
  list-style-type: none;
  position: relative;
}

.header .header__container .navigation ul li ::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: blue;
  bottom: -22px;
  display: none;
}

.header .header__container .navigation ul li :hover {
  border-bottom: 2px solid black;
}

.header .header__container .navigation ul li a {
  text-decoration: none;
  font-size: 20px;
  color: #000;
  padding-bottom: 22px;
  font-weight: bold;
  letter-spacing: .8px;
}

.hero {
  position: relative;
}

.hero .image {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 10, 0.7))), url("../static/chimney.jfif");
  background-image: linear-gradient(rgba(0, 0, 10, 0.7)), url("../static/chimney.jfif");
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.hero .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero .text h1 {
  margin-bottom: 30px;
}

.chimneys {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 55px;
  padding: 20px 0;
}

.chimneys img {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  -webkit-box-shadow: -1px 1px 6px 0px rgba(0, 0, 0, 0.75);
          box-shadow: -1px 1px 6px 0px rgba(0, 0, 0, 0.75);
  border-radius: 3px;
}

.chimneys img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  cursor: pointer;
}

@media screen and (max-width: 1765px) {
  .chimneys {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 1314px) {
  .chimneys {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 1020px) {
  .hero .text {
    width: 100%;
  }
}

@media screen and (max-width: 860px) {
  .chimneys {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 680px) {
  .header .navigation {
    display: none;
  }
  .hero .text h1 {
    font-size: 30px;
  }
  .hero .text h2 {
    font-size: 15px;
  }
}

@media screen and (max-width: 440px) {
  .chimneys img {
    width: 300px;
  }
}
/*# sourceMappingURL=style.css.map */