@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.icon-text {
  display: flex;
  align-items: center;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: flex-end;
  gap: 2rem;
  padding: 1rem 3rem;
  font-size: 2rem;
  font-weight: 600;
}
.header img {
  max-height: 3.6em;
}
.header__nav {
  display: flex;
  margin-inline: auto;
  margin-block: 0;
  list-style-type: none;
  gap: 4em;
}
.header__nav a {
  text-decoration: none;
}
.header__nav li {
  color: #000;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0 atuo;
  padding: 0.25em 0.5rem;
  border: 0.1rem solid #000;
  border-radius: 0.5em;
  background-color: #ececec;
  cursor: default;
}
.header__nav li:hover {
  background-color: #cecece;
}
.header__phone {
  color: #000;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0.25em 0.5rem;
  border: 0.1rem solid #000;
  margin-left: auto;
  margin-bottom: 0;
  border-radius: 0.5em;
  background-color: #ececec;
  text-decoration: none;
  cursor: pointer;
}
.header__phone:hover {
  background-color: #cecece;
}
.header svg {
  min-width: 2em;
  min-height: 2em;
  fill: #000;
}
.header .icon-text {
  gap: 0.25em;
}

section {
  padding: 0 5rem;
  padding-top: 5rem;
}

.hero {
  padding-top: 0;
  display: flex;
  width: 100vw;
  height: 50rem;
  border-top: 0.2rem solid #ff0000;
  border-bottom: 0.2rem solid #ff0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background-image: url("/images/hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.hero h1 {
  font-size: clamp(4rem, 7vw, 6rem);
  text-shadow: 0 0 1rem #000;
  font-weight: 900;
}
.hero h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-shadow: 0 0 0.8rem #000;
  font-weight: 700;
}

.about {
  padding-bottom: 5rem;
  border-bottom: solid 1px #868686;
}
.about__wrapper {
  display: flex;
  max-width: 110rem;
  margin: 0 auto;
  flex-direction: row;
  gap: clamp(1rem, 6vw, 10rem);
  color: #1a1a1a;
}
.about__wrapper ul {
  margin-bottom: 2rem;
  margin-top: 0;
  padding-left: 1.5rem;
}
.about__wrapper__content {
  flex: 1;
}

.gallery {
  padding-bottom: 5rem;
}
.gallery__wrapper {
  max-width: 110rem;
  margin: 0 auto;
}
.gallery__wrapper__images {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.gallery__wrapper__images img {
  min-width: 34.5rem;
  min-height: 23rem;
  border-radius: 1.5rem;
}

.quality {
  background-color: #1b1c1d;
  color: #fff;
}
.quality__wrapper {
  display: flex;
  max-width: 110rem;
  margin: 0 auto;
  padding-bottom: 5rem;
  flex-direction: row;
  gap: clamp(1rem, 6vw, 10rem);
}
.quality__wrapper__content {
  flex: 1;
}

.clients {
  display: flex;
  padding-bottom: 5rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.clients a:nth-child(1) img {
  height: 9rem;
}
.clients a:nth-child(2) img {
  height: 2.5rem;
}
.clients a:nth-child(3) img {
  height: 5rem;
}
.clients a:nth-child(4) img {
  height: 7rem;
}

footer {
  background-color: #1b1c1d;
  color: #fff;
  padding: 3rem 2rem;
}
footer .footer-wrapper {
  display: flex;
  margin: 0 auto;
  flex-direction: row;
  justify-content: center;
  gap: 5rem;
}
footer .footer-wrapper h3 {
  color: #ff695e;
}
footer .footer-wrapper a {
  color: #99c9ff;
}
footer .footer-wrapper a:visited {
  color: #c099ff;
}

@media (max-width: 1300px) {
  .header {
    font-size: 1.5rem;
  }
  .header__nav {
    gap: 1em;
  }
}
@media (max-width: 840px) {
  .header__nav {
    display: none;
  }
}
@media (max-width: 700px) {
  .about__wrapper,
  .quality__wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}/*# sourceMappingURL=style.css.map */