body {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.container {
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.list {
  list-style: none;
}

.link {
  text-decoration: none;
  color: inherit;
}

/* heder */
.head {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  background-color: darkred;
  transition: 0.25s ease-in-out;
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .head__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.active {
  box-shadow: -2px 7px 15px 1px white;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navigate__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-shadow: 1px 1px 2px black;
}

@media screen and (min-width: 1200px) {
  .logo {
    margin-right: 100px;
  }
}
.profix-logo {
  width: 175px;
}

@media screen and (min-width: 1200px) {
  .profix-logo {
    width: 200px;
  }
}
.nav {
  display: none;
  color: white;
  padding: 0px;
}

@media screen and (min-width: 768px) {
  .nav {
    display: flex;
    gap: 20px;
    margin-right: 80px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .nav {
    display: flex;
    gap: 50px;
    margin-right: 180px;
    font-size: 18px;
  }
}
.nav__item:hover,
.nav__item:focus {
  transition: 250ms;
  transform: scale(1.1);
  color: black;
  font-size: 18px;
  text-shadow: 1px 1px 2px #333333, 0 0 1em white, 0 0 0.2em white;
}

.current {
  padding-bottom: 5px;
  border-bottom: thick double #333333;
}

.online:hover {
  transition: 250ms;
  transform: scale(1.1);
  text-shadow: 1px 1px 2px white;
}

.online__wrapper {
  display: none;
}

@media screen and (min-width: 768px) {
  .online__wrapper {
    display: block;
  }
}
.logo-shop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 1px 1px 2px #333333;
}

.online-shop {
  width: 35px;
}

.shop {
  color: white;
}

/* hero */
.hero {
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      to right,
      rgba(47, 48, 58, 0.4),
      rgba(47, 48, 58, 0.4)
    ),
    url(/img/hero.jpg);
  text-align: center;
  border-bottom: 5px solid darkred;
}

@media screen and (min-width: 480px) {
  .hero {
    height: 750px;
  }
}
.hero__title {
  padding-top: 265px;
  max-width: 800px;
  font-size: 26px;
  line-height: 1.36;
  letter-spacing: 0.03em;
  margin: 0 auto;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px #333333;
  margin-bottom: 200px;
}

@media screen and (min-width: 480px) {
  .hero__title {
    font-size: 44px;
  }
}
/* gallery */
.galery {
  display: none;
}

@media screen and (min-width: 1200px) {
  .galery {
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.gallery__titel {
  font-size: 44px;
  line-height: 1.36;
  letter-spacing: 0.03em;
  margin: 0 auto;
  color: darkred;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px #333333;
  padding-bottom: 20px;
}

.galery__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.img1 {
  width: 386px;
  height: 200px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #333333;
}

.img2 {
  width: 640px;
  height: 200px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #333333;
}

.img3 {
  width: 540px;
  height: 200px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #333333;
}

/* brand */
.brand {
  padding: 30px 20px;
  background-color: white;
  border-top: thick double darkred;
}

.brand__list {
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.brand__item img {
  width: 140px;
}

.brand__link {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.brand__link:hover,
.brand__link:focus {
  transform: scale(1.3);
}

/* footer */
.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #333333;
  border-top: 5px solid darkred;
}

.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .footer__info {
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
  }
}
.footer__profix-logo {
  display: block;
  margin: 0px auto;
  width: 150px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .footer__profix-logo {
    display: inline;
  }
}
.adressblok {
  font-style: normal;
  margin: 0px auto;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .adressblok {
    text-align: start;
  }
}
.adressblok__contacts {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: white;
  font-size: 16px;
}

.adressblok__contact:hover,
.adressblok__contact:focus {
  color: darkred;
  text-shadow: 1px 1px 2px #333333, 0 0 2em white, 0 0 0.3em white;
}

.footer__titel {
  font-weight: 700;
  line-height: 1.143;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 35px;
  text-align: center;
}

.socialblock__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0px;
}

.socialblock__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.socialblock__link:hover,
.socialblock__link:focus {
  background-color: darkred;
  box-shadow: 0px 0px 5px white;
}

.socialblock__icon {
  fill: #fff;
}

.subscribe__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.subscribe__input {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.03em;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 12px 12px;
}

.subscribe__btn-send {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.88;
  background-color: darkred;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.06em;
  padding: 8px 28px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.subscribe__btn-send:hover,
.subscribe__btn-send:focus {
  box-shadow: 0px 0px 5px white;
}

.subscribe__icon {
  fill: #fff;
  margin-left: 8px;
}

/* fromus */
.fromus {
  margin-top: 100px;
  margin-bottom: 50px;
}

@media screen and (min-width: 1200px) {
  .fromus {
    margin-top: 120px;
  }
}
.fromus__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.fromus__img {
  width: 310px;
  height: 200px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #333333;
}

@media screen and (min-width: 1200px) {
  .fromus__img {
    width: 380px;
    height: 225px;
  }
}
.fromus__text {
  text-indent: 2em;
}

/* brand */
.card {
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 150px;
  margin-bottom: 50px;
}

.card__list {
  width: 378px;
  border: 1px solid rgb(146, 143, 143);
  border-radius: 8px;
  box-shadow: 2px 2px 15px black;
}

.card__list:hover,
.card__list:focus {
  box-shadow: 0px 1px 1px rgba(139, 0, 0, 0.12),
    0px 4px 4px rgba(139, 0, 0, 0.06), 1px 4px 6px rgba(139, 0, 0, 0.16);
}

.card__title {
  padding: 0px 24px;
}

.card__name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  text-align: center;
}

.card__brand {
  width: 281px;
}

.overley__box {
  position: absolute;
  font-size: 11px;
  top: 0;
  left: 0;
  border-radius: 8px;
  line-height: 1.55;
  letter-spacing: 0.03em;
  padding: 15px 10px;
  width: 358px;
  height: 230px;
  color: white;
  background-color: darkred;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card__link {
  color: inherit;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
  margin-top: 15px;
  text-align: center;
}

.card__button {
  display: block;
  width: 170px;
  margin: 0 auto;
  color: #fff;
  padding: 5px 15px;
  background-color: darkred;
  border-radius: 5px;
  box-shadow: 2px 2px 5px black;
}

.card__focus {
  display: block;
}

.card__block {
  position: relative;
  overflow: hidden;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: lightgray;
  border-radius: 8px;
}

.overley:hover .overley__box,
.overley:focus .overley__box {
  opacity: 1;
  transform: translateY(0%);
}

/* katalog */
.katalog {
  margin-top: 100px;
  margin-bottom: 50px;
}

@media screen and (min-width: 480px) {
  .katalog {
    margin-top: 150px;
  }
}
.katalog__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.katalog__items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.katalog__img {
  width: 250px;
  height: 320px;
  padding: 20px;
  box-shadow: 2px 2px 5px black;
  margin-bottom: 30px;
}

@media screen and (min-width: 480px) {
  .katalog__img {
    width: 300px;
    height: 400px;
    margin-bottom: 50px;
  }
}
.katalog__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 30px;
  color: #fff;
  padding: 5px 15px;
  background-color: darkred;
  border-radius: 5px;
  box-shadow: 2px 2px 5px black;
  transition: 250ms;
}

.katalog__button:hover,
.katalog__button:focus {
  box-shadow: -2px -2px 5px black;
}

/* sale */
.map {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  width: 250px;
}

@media screen and (min-width: 480px) {
  .map {
    width: 420px;
  }
}
@media screen and (min-width: 768px) {
  .map {
    width: 730px;
  }
}
@media screen and (min-width: 1200px) {
  .map {
    width: 820px;
  }
}
.map__box {
  display: flex;
  justify-content: center;
}

.diller {
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
}

.diller__logo {
  width: 145px;
  transition: transform 250ms;
}

.diller__logo:hover,
.diller__logo:focus {
  transform: scale(1.2);
}

/* contacts */
.contacts {
  width: 100%;
}

.contact__items {
  margin-top: 100px;
  margin-bottom: 50px;
  gap: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1200px) {
  .contact__items {
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.contactsblok {
  font-style: normal;
}

.contactsblok__contacts {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: black;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 480px) {
  .contactsblok__contacts {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .contactsblok__contacts {
    text-align: start;
  }
}
.contactsblok__titel {
  margin-bottom: 30px;
}

.contact__map {
  box-shadow: 1px 1px 7px black;
  display: none;
}

@media screen and (min-width: 1200px) {
  .contact__map {
    display: block;
  }
}
.contact__img {
  width: 280px;
  height: 185px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #333333;
  margin-top: 20px;
}

@media screen and (min-width: 480px) {
  .contact__img {
    width: 330px;
    height: 200px;
  }
}
.navigate__mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile__menu {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile__current {
  color: darkred;
  padding-bottom: 5px;
  border-bottom: thick double #333333;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile__container {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgb(252, 253, 253);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .mobile__container {
    display: none;
  }
}
.mobile__container.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateX(0%);
}

@media screen and (min-width: 768px) {
  .mobile__icon-open {
    display: none;
  }
}
.mobile__container-block {
  position: relative;
  max-width: 480px;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.mobile__container-block .mobile__menu {
  position: absolute;
  top: 14px;
  right: 40px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile__nav {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.175;
  letter-spacing: 0.02em;
  color: #212121;
  margin-bottom: auto;
}

.mobilenav__item {
  padding-top: 10px;
}

.mobilenav__item:hover,
.mobilenav__item:focus {
  transition: 250ms;
  transform: scale(1.1);
  color: black;
  font-size: 18px;
  text-shadow: 1px 1px 2px #333333, 0 0 1em white, 0 0 0.2em white;
}

.mobile__item-mail {
  height: 150px;
  font-size: 25px;
}

.mobilelogo-shop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 32px;
  text-shadow: 1px 1px 5px #333333;
}

.mobileshop {
  color: darkred;
} /*# sourceMappingURL=style.css.map */
