* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

.body {
  height: 100%;
  min-width: 320px;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/*npx sass --watch scss:css*/
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #D3D3C6;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1440px;
  margin: 0 auto;
}

.headerTextContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  color: #585C69;
  text-transform: uppercase;
  font-size: 12px;
  background-color: #F9F8D5;
  padding: 10px 0;
  gap: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.company-name {
  font-weight: 700;
}

.highlight-letter {
  color: #585C69;
}

.phoneLine {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

.phoneLink,
.phoneNumber {
  color: #585C69;
  font-size: 22px;
  text-decoration: none;
}

.phoneLink:hover,
.phoneNumber:hover {
  color: #F9F8D5;
}

.icon {
  width: 100px;
  height: auto;
  fill: currentColor;
}

.logoBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}

/*
.rowDirection {
  @include mixins.flex(row, flex-start, center);
  gap: 20px;
}
*/
.phone,
.telegramPicture,
.viberPicture {
  fill: currentColor;
  width: 22px;
  height: 22px;
}

.phoneBox,
.telegramBox,
.viberBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}

.icon_wrapper {
  display: flex;
  gap: 20px;
}

.menu-button {
  display: inline-flex;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 1001;
}

.menu-button .icon-cross {
  display: none;
  transform: translate(20px, 50x);
}

.menu-button.is-open .icon-cross {
  display: block;
}

.menu-button.is-open .icon-burger {
  display: none;
}

.nav_wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D3D3C6;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.nav_wrapper.is-open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
}

.navList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0;
}

.nav_Link {
  font-weight: 700;
  color: #585C69;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 90%, #585C69 90%, #585C69 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position-x: right;
  transition: background-size 300ms ease-in-out;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 24px;
  padding: 10px 0;
  text-decoration: none;
}
.nav_Link:hover {
  background-size: 100% 100%;
  background-position-x: left;
}

@media (max-width: 320px) {
  .headerTextContainer {
    font-size: 12px;
  }
  .phoneBox,
  .telegramBox,
  .viberBox,
  .logoBox {
    display: none;
  }
  .phoneNumber {
    font-size: 20px;
  }
}
@media (min-width: 321px) and (max-width: 480px) {
  .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .headerTextContainer,
  .phoneLine {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .logoBox {
    display: none;
  }
  .phoneNumber {
    font-size: 23px;
  }
  .menu-button {
    display: inline-flex;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .headerTextContainer,
  .phoneLine {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .headerTextContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: #585C69;
    font-size: 24px;
  }
  .phoneLine {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nav_wrapper {
    display: none;
  }
  .nav_wrapper.is-open {
    display: flex;
  }
  .menu-button {
    display: inline-flex;
  }
}
@media (min-width: 769px) {
  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .headerTextContainer {
    flex-direction: row;
    width: auto;
    background-color: transparent;
    font-size: clamp(14px, 1.5vw, 16px);
  }
  .company-name {
    display: inline;
    margin: 0 5px;
  }
  .phoneLine {
    width: auto;
  }
  .menu-button {
    display: none;
  }
  .nav_wrapper {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    opacity: 1;
    transform: none;
  }
  .navList {
    flex-direction: row;
    gap: 20px;
  }
  .nav_Link {
    font-size: 16px;
    width: auto;
    padding: 0;
  }
  .icon:hover,
  .phone:hover {
    color: #F9F8D5;
  }
}
.hero {
  background-color: #D3D3C6;
  background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/768_background_hero@1x.webp");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 320px) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/360_background_hero@1x.webp");
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #D3D3C6;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 700;
  }
}
@media (max-width: 320px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 320px) and (min-resolution: 192dpi) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/360_background_hero@2x.webp");
  }
}
@media (min-width: 321px) and (max-width: 480px) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/480_background_hero@1x.webp");
  }
}
@media (min-width: 321px) and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 321px) and (max-width: 480px) and (min-resolution: 192dpi) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/480_background_hero@2x.webp");
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/768_background_hero@1x.webp");
  }
}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 481px) and (max-width: 768px) and (min-resolution: 192dpi) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/768_background_hero@2x.webp");
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/768_background_hero@1x.webp");
  }
}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 769px) and (max-width: 1024px) and (min-resolution: 192dpi) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/768_background_hero@2x.webp");
  }
}
@media (min-width: 1025px) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/Big_background_hero@1x.webp");
  }
}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 1025px) and (min-resolution: 192dpi) {
  .hero {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url("../img/Big_background_hero@2x.webp");
  }
}

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