/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url(./fonts.scss);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:wght@400;500;700&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Jost:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400&family=Mulish:wght@200;300;400;500;600;700;800;900;1000&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@400;700&family=Rosario:wght@300;400;500;600;700&family=Rubik+Gemstones&display=swap");
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  color: #151f28;
}
.popup {
  position: fixed;
  top: 40%;
  width: 380px;
  height: 290px;
  border: 1px solid #151f28;
  border-radius: 8px;
  background-color: rgba(146, 146, 146, 0.397);
  z-index: 12;
  padding: 6px;
  transition: 0.5s;
  line-height: 1.3;
  box-shadow: 1px 1px 5px rgb(255, 255, 255);
  display: flex;
}
.popup__label {
  width: 10%;
  height: 10%;
}
/* .popup-link{
  width: 100%;
  height: 100%;
  z-index: 1;
} */
#popup__input {
  display: none;
}
#popup__input:checked + .popup {
  display: none;
}

.popup:hover {
  background-color: rgb(255, 255, 255);
  z-index: 12;
}
.popup__svg {
  cursor: pointer;
  display: flex;
  margin-left: auto;
}

.popup__text {
}
.popup__animation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.popup__img {
  max-width: 330px;
  position: absolute;
  top: 0;
  left: 0;
  animation: round 44s infinite;
  opacity: 0;
  z-index: 11;
}

@keyframes round {
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
}

.popup__img:nth-child(1) {
  animation-delay: 40s;
}
.popup__img:nth-child(2) {
  animation-delay: 36s;
}
.popup__img:nth-child(3) {
  animation-delay: 32s;
}
.popup__img:nth-child(4) {
  animation-delay: 28s;
}
.popup__img:nth-child(4) {
  animation-delay: 24s;
}
.popup__img:nth-child(6) {
  animation-delay: 20s;
}
.popup__img:nth-child(7) {
  animation-delay: 16s;
}
.popup__img:nth-child(8) {
  animation-delay: 12s;
}
.popup__img:nth-child(9) {
  animation-delay: 8s;
}
.popup__img:nth-child(10) {
  animation-delay: 4s;
}
.popup__img:nth-child(11) {
  animation-delay: 0;
}
.popup__img1 {
  position: relative;
  z-index: 10;
}
.popup__img1::after {
  content: "Комод из массива 85 000р";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
}

.hidden {
  display: none;
}

.input-menu {
  display: none;
}

.input-menu:checked + .window__menu {
  opacity: 1;
  visibility: visible;
}

.input-menu:checked + .window__menu .window__menu-aside {
  transform: translateX(0%);
}

#menu {
  display: none;
  position: relative;
  cursor: pointer;
}
.window__menu {
  position: fixed;
  background-color: rgba(75, 75, 75, 0.301);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
.window__menu-aside {
  padding: 15px;
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  transform: translateX(100%);
  transition: 1s;
  background-color: #fff;
  box-shadow: -2px 0px 15px rgb(75, 75, 75);
}
.window__menu-nav {
  display: flex;
  flex-direction: column;
  line-height: 2;
  margin-left: auto;
}
.window__menu-link {
  font-size: 20px;
}
.label-menu {
  display: flex;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: auto;
}
.label-close {
  position: absolute;
  top: 35px;
  right: 10px;
}
.label-left-area {
  display: flex;
  width: 100%;
  height: 100%;
}

/* .header__logo{
  display: flex;
  align-items: center;
  max-width: 210px;
  align-content: center;
  font-size: 12px;
  gap: 2px;
  flex-direction: column;
  font-style: italic;
} */
.header {
  width: 100%;
  height: 150px;
  /* background-color: rgb(255, 243, 232); */
  display: flex;
  align-items: center;
}
.header__logo-promo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__logo {
  display: flex;
  align-items: center;
  align-content: center;
  font-size: 14px;
  gap: 8px;
}
.logo-box {
  border-left: 2px solid#151f28;
  margin-top: 50px;
  max-width: 500px;
  padding-left: 20px;
}
.logo {
  display: flex;
  align-items: center;
}
.header__logo-title {
  font-weight: 600;
  font-size: 14px;
}
.header__title {
  font-size: 20px;
  max-width: 500px;
}
.header__text {
  max-width: 600px;
  width: 100%;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  padding-left: 4px;
}

.wrapper {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav {
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #151f28;
}
.nav__link {
  padding: 5px;
  font-size: 14px;
  transition: 0.5s;
}
.nav__link:hover {
  background-color: #151f28;
  color: #fff;
}

.promo {
  /* background-image: url(../assets/img/img3.png); */
  background-position: top 0px right 140px;
  background-repeat: no-repeat;
  background-size: 500px;
  margin-top: 50px;
}
.promo .wrapper {
  gap: 30px;
  align-items: start;
}

.promo__link {
  /* margin: 0 auto; */
  margin-top: 100px;
  padding: 16px 50px;
  font-size: 18px;
  /* background-color: rgb(245, 210, 194); */
  transition: 0.5s;
  /* border: 1px solid rgb(245, 210, 194); */
  border: 1px solid rgb(2, 2, 2);
}
.promo__link:hover {
  box-shadow: 1px 1px 10px #151f286b;
}
.promo__img {
  width: 800px;
}
.cards {
  margin: 60px auto;
}
.cards .wrapper {
  max-width: 1170px;
  flex-wrap: wrap;
  row-gap: 40px;
}
.cards__title {
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 80px auto;
  font-weight: 600;
  font-size: 36px;
}
.card {
  cursor: pointer;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 350px;
  padding: 10px;
}

.card__img {
  max-width: 550px;
  max-height: 350px;
  width: 100%;
  height: 100%;
}

/* .card1 {
  background-image: url(../assets/img/imgkith.jpg);
  background-size: 550px 350px;
  background-repeat: no-repeat;
  position: relative;
} */
/* .card2 {
  background-image: url(../assets/img/imgbathroom.jpg);
  background-size: 550px 350px;
  background-repeat: no-repeat;
  position: relative;
} */

.card__title {
  font-weight: 500;
  font-size: 26px;
  padding: 12px;
  z-index: 3;
}
.card__title::after {
  display: block;
  content: "";
  height: 1px;
  width: 0%;
  background-color: #181818;
  transition: width 0.4s ease-in-out;
}
.card__title:hover:after,
.card__title:focus:after {
  width: 100%;
}

.about {
  margin-bottom: 30px;
  /* background-repeat: no-repeat;
  background-size: cover;
  background-position: top 20px left 30px; */
}

.about__title {
  max-width: 700px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 50px auto;
  font-weight: 600;
  font-size: 36px;
}

/* .about__item {
  max-width: 210px;
  width: 100%;
  height: 210px;
  background-color: #151f28;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  justify-content: space-between;
  box-shadow: 1px 1px 15px #151f286c;
} */
.about .wrapper {
  flex-direction: column;
}
.about__item {
  display: flex;
  align-items: center;
  max-width: 900px;
  width: 100%;
  gap: 10px;
  justify-content: center;
}
.about__subtitle {
  font-weight: 600;
  font-size: 28px;
  align-self: flex-start;
  padding: 10px 0px;
  color: #151f28;
}

.about__desc {
  line-height: 1.3;
  padding: 10px 0px;
  font-size: 17px;
  text-indent: 60px;
}

.about__item-img {
  max-width: 250px;
  width: 100%;
  max-height: 250px;
  height: 100%;
}
.about1 {
  background-image: url(../assets/icons/izmerenie.png);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: auto;
}
.about2 {
  background-image: url(../assets/icons/dostavka.png);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: auto;
}
.about3 {
  background-image: url(../assets/icons/rassrochka.png);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: auto;
}
.about4 {
  background-image: url(../assets/icons/gajka.png);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: auto;
}
.about5 {
  background-image: url(../assets/icons/garantiya.png);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: auto;
}

.design .wrapper {
  flex-direction: column;
}
.design {
}
.design__block {
  width: 100%;
  max-width: 1170px;

  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.design__title {
  font-size: 26px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 30px;
}
.design__img {
  max-width: 300px;
  width: 100%;
  float: left;
  margin: 20px;
}

.design__img-block {
  max-width: 300px;
  width: 100%;
  float: left;
  margin-right: 40px;
  margin-bottom: 10px;
}
.design__text {
  width: 100%;
  line-height: 1.3;
  font-size: 16px;
  text-indent: 60px;
  margin-top: 10px;
}

.design__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.design__desc {
  font-size: 13px;
  margin-left: 20px;
  font-weight: 600;
}
.design__photo-img {
  max-width: 280px;
  max-height: 373px;
}
.event .wrapper {
  flex-direction: column;
}
.event__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.event__subtitle {
  font-weight: 600;
  line-height: 1.5;
}
.event__img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.event__img::after {
  content: "";
  width: 100%;
  background: #36363693;
  height: 1px;
  bottom: 15px;
}
.event__img-item {
  max-width: 300px;
  width: 100%;
  height: 100%;
}
.event__text {
  width: 100%;
  margin: 10px auto;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #151f28e3;
}
.partners {
  margin-bottom: 20px;
}
.partners .wrapper {
  align-items: start;
  flex-wrap: wrap;
}
.partners__title {
  max-width: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 80px auto;
  font-weight: 600;
  font-size: 36px;
}
.partners__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.partners__logo {
  height: 50px;
  width: 200px;
}
.partners__item-text {
  max-width: 200px;
  font-size: 11px;
}
.vacancy {
  margin-bottom: 40px;
}
.vacancy .wrapper {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(21, 31, 40, 0.412);
}
.vacancy__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  max-width: 400px;
  padding: 15px;
  /* border: 1px solid rgba(21, 31, 40, 0.412); */
}
.vacancy__item + .vacancy__item {
}
.vacancy__item-title {
  font-size: 18px;
  font-weight: 600;
}
.vacancy__item-text {
  line-height: 1.5;
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 80px;
}
.footer .wrapper {
  align-items: center;
  justify-content: space-between;
}
.footer__box {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.footer .logo-box {
  margin-top: 0;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  max-width: 370px;
  width: 100%;
  gap: 10px;
}
.footer__item {
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 250px;
}
.social-icon {
  fill: #151f28;
}
.up {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid rgb(21, 31, 40);

  padding: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}
.up:hover {
  box-shadow: 1px 1px 10px #151f286b;
}
.footer__photo {
  width: 500px;
}

@media (max-width: 1190px) {
  .header {
    padding: 0px 10px;
  }
  .promo {
    padding: 0px 10px;
  }
  .promo .wrapper {
  }
  .about {
    padding: 0px 10px;
  }
}
@media (max-width: 1090px) {
  #menu {
    display: block;
  }
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .promo {
    background: none;
  }
  .promo .wrapper {
    flex-direction: column-reverse;
  }
  .promo__img {
    margin: 0 auto;
  }
  .promo__link {
    margin: 0 auto;
  }
  .promo__title {
    display: flex;
    flex-direction: column;
    align-self: center;
    text-align: center;
  }
  .promo__text {
    display: flex;
    align-self: center;
  }

  .cards .wrapper {
    max-width: 790px;
  }
  .about {
    max-width: 790px;
    margin: 0 auto;
  }
  .about__item {
    width: 190px;
  }
  .design__block {
    align-items: start;
    gap: 40px;
  }
  .partners {
    padding: 0px 10px;
    height: 100%;
  }
  .partners__item {
    width: 150px;
  }
  .partners__logo {
    width: 180px;
  }
  .partners .wrapper {
    padding-left: 10px;
    padding-right: 10px;
    gap: 10px;
    justify-content: center;
    margin-bottom: 120px;
  }
  .footer .wrapper {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 800px;
  }

  .footer__item {
    font-size: 14px;
  }
  .up {
    margin-bottom: 10px;
  }
}

@media (max-width: 960px) {
  .promo__img {
    display: none;
  }
  .about .wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cards {
    justify-content: center;
  }
  .partners__item {
    width: 150px;
  }
  .partners__logo {
    width: 150px;
  }
  .vacancy .wrapper {
    margin-bottom: 100px;
  }
  .footer__photo {
    max-width: 438px;
  }
}
@media (max-width: 725px) {
  .popup {
    max-width: 330px;
    top: 50%;
    left: 10%;
  }
  .popup__img {
    width: 100%;
  }
  .promo__title {
    font-size: 26px;
  }
  .promo__text {
    font-size: 24px;
  }
  .card {
    max-width: 450px;
  }
  .about {
    max-width: 625px;
  }
  .design__block {
    flex-direction: column;
  }
  .design__img {
    margin: 0 auto;
  }
  .partners .wrapper {
    margin-bottom: 140px;
  }
  .about__item {
    flex-wrap: wrap;
  }
  .footer__photo {
    max-width: 320px;
  }
  .up {
    margin: 0 auto;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    font-size: 10px;
  }

  .logo-box {
    max-width: 300px;
  }
  .header__logo {
    font-size: 11px;
  }
  .header__title {
    font-size: 10px;
  }
  .header__text {
    font-size: 12px;
  }
  .window__menu-aside {
    width: 50%;
  }
  .window__menu-link {
    font-size: 14px;
  }
  .promo .wrapper {
    height: 50px;
  }
  .promo__link {
    margin: 0 auto;
  }
  .card {
    width: 300px;
    height: 210px;
  }
  .about__title {
    text-align: center;
  }
  .about__item {
    width: 300px;
  }
  .partners__title {
    text-align: center;
  }
  .partners__item {
    width: 200px;
  }
  .partners__logo {
    width: 200px;
    margin: 0 auto;
  }

  .vacancy__item {
    max-width: 350px;
  }
}

@media (max-width: 425px) {
  .cards .wrapper {
    justify-content: center;
  }
  .cards__title {
    font-size: 24px;
    text-align: center;
  }
  .about__title {
    font-size: 24px;
  }
  .about {
    padding: 15px;
  }
  .partners__title {
    font-size: 24px;
  }
  .event__text {
    font-size: 16px;
  }
  .partners .wrapper {
    margin-bottom: 20px;
  }
  .partners__title {
    margin-top: 10px;
  }
  .footer .wrapper {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: -30px;
  }
  .footer__box {
  }
}
.max {
  display: flex;
flex-direction: row;
align-items: center;
gap: 5px;
}