* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #fafafa;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

h2 {
  margin: 10px 20px 20px 20px;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.9rem;
  color: #ef383a;
}

nav .nav {
  position: fixed;
  top: 0;
  transform: translateY(-100%);
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  transition: 0.5s;
  z-index: 98;
}
nav .nav--active {
  transform: translateY(0);
}
nav .nav-logo {
  margin: 3rem;
}
nav .nav-logo .nav-logo_text {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
}
nav .nav-logo .nav-logo_text span {
  color: #ef383a;
}
nav .nav-links {
  list-style: none;
}
nav .nav-links .nav-links_link {
  position: relative;
  padding: 10px;
  margin: 20px;
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
nav .nav-links .nav-links_link a {
  padding: 15px 30px;
  color: #fff;
}
nav .nav-links .nav-links_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ef383a;
  z-index: -1;
}
nav .nav-bars {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99;
}
nav .nav-bars i {
  padding: 10px;
  font-size: 4rem;
  color: #fff;
  transition: 0.5s;
}
nav .nav-bars--active {
  color: #000 !important;
}

header {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/heder.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}
header .header-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header .header-text h1 {
  font-size: 4.5rem;
  margin: 30px 0;
  text-transform: uppercase;
  color: #fff;
}
header .header-text h1 span {
  color: #ef383a;
}
header .header-text a {
  padding: 15px 30px;
  border: 1px solid #fff;
  border-radius: 25px;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
}
header .header-text a:hover {
  background-color: #fff;
  color: #000;
}
header .header-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

main section {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 20px;
  background-color: #fff;
}
main section p {
  margin-bottom: 15px;
  font-size: 1.8rem;
}
main section li i {
  font-size: 1.8rem;
}
main .about-us .about-us-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
main .about-us .about-us-gallery img {
  height: 100%;
  max-width: 100%;
}
main .offer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
main .offer .offer-product {
  background-color: #fafafa;
  border-radius: 15px;
  overflow: hidden;
}
main .offer .offer-product .offer-product_img {
  padding: 10px;
}
main .offer .offer-product .offer-product_img img {
  max-width: 100%;
  height: 250px;
  border-radius: 7.5px;
}
main .offer .offer-product .offer-product-text h3 {
  font-size: 1.7rem;
  text-align: center;
  color: #000;
}
main .offer .offer-product .offer-product-text p {
  margin-top: 10px;
  font-size: 1.65em;
  text-align: center;
  color: #ef383a;
}
main .offer .offer-product-link {
  padding: 15px 30px;
  border: 1px solid #000;
  border-radius: 25px;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #000;
}
main .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main .contact .open-hours {
  margin: 10px;
  text-align: center;
}
main .contact .open-hours h3 {
  font-size: 2.2rem;
}
main .contact ul {
  width: 100%;
  height: 100%;
  border-radius: 12.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fafafa;
}
main .contact ul li {
  margin: 10px;
}
main .contact ul li p {
  margin: 0;
}
main .contact ul li p a {
  padding: 10px;
  color: #ef383a;
}
main .contact ul li p a:hover {
  text-decoration: underline;
}

footer {
  position: relative;
  height: 20vh;
  margin-top: 30px;
  background-image: url(../img/heder.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed;
  background-size: cover;
}
footer .footer-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

@media (min-width: 800px) {
  main .offer {
    gap: 3%;
  }
  main .offer .offer-product {
    max-width: 30%;
    border: 2px solid #fafafa;
    transition: 0.3s;
  }
}
@media (min-width: 1280px) {
  html {
    scroll-padding-top: 10vh;
  }
  h2 {
    font-size: 4rem;
  }
  nav .nav {
    transform: translateY(0);
    height: 10vh;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    border-bottom: 1px solid #ef383a;
    transition: 0.5s;
    z-index: 98;
  }
  nav .nav-logo {
    margin: 3rem;
  }
  nav .nav-logo .nav-logo_text {
    position: relative;
    padding: 10px 20px;
    font-size: 4rem;
    transition: 0.3s;
    z-index: 1;
  }
  nav .nav-logo .nav-logo_text span {
    transition: 0.2s;
  }
  nav .nav-logo .nav-logo_text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #ef383a;
    transition: 0.3s;
    z-index: -1;
  }
  nav .nav-logo .nav-logo_text:hover::before {
    width: 100%;
  }
  nav .nav-logo .nav-logo_text:hover {
    color: #fff;
  }
  nav .nav-logo .nav-logo_text:hover span {
    color: #000;
  }
  nav .nav-links {
    list-style: none;
    display: flex;
  }
  nav .nav-links .nav-links_link {
    background-color: #fafafa;
  }
  nav .nav-links .nav-links_link a {
    transition: 0.3s;
  }
  nav .nav-links .nav-links_link::before {
    transition: 0.3s;
  }
  nav .nav-links .nav-links_link:hover a {
    color: #000;
  }
  nav .nav-links .nav-links_link:hover::before {
    width: 3px;
  }
  nav .nav-bars {
    display: none;
  }
  header {
    margin-top: 10vh;
    height: 90vh;
  }
  header .header-text h1 {
    font-size: 8rem;
  }
  main section {
    border-radius: 25px;
  }
  main section p {
    font-size: 2rem;
  }
  main .about-us .about-us-gallery {
    justify-content: space-between;
    flex-direction: row;
  }
  main .about-us .about-us-gallery img {
    max-width: 49%;
    margin-top: 10px;
    border-radius: 12.5px;
    box-shadow: 1px 1px 10px #fafafa;
    transition: 0.3s;
  }
  main .about-us .about-us-gallery img:hover {
    transform: scale(1.01);
  }
  main .offer {
    gap: 3%;
  }
  main .offer .offer-product {
    max-width: 30%;
    border: 2px solid #fafafa;
    transition: 0.3s;
  }
  main .offer .offer-product a {
    width: 100%;
    height: 100%;
    display: inline-block;
  }
  main .offer .offer-product .offer-product_img {
    min-width: 100%;
    height: 300px;
    padding: 0;
    overflow: hidden;
  }
  main .offer .offer-product .offer-product_img img {
    height: 100%;
    transition: 0.3s;
  }
  main .offer .offer-product .offer-product-text {
    margin: 10px;
  }
  main .offer .offer-product:hover {
    box-shadow: 0 7px 10px 5px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
  }
  main .offer .offer-product:hover img {
    transform: scale(1.2);
  }
  main .offer .offer-product-link {
    margin-top: 30px;
    transition: 0.3s;
  }
  main .offer .offer-product-link:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
  }
  main .offer-product-bottom {
    margin-top: 3%;
  }
}/*# sourceMappingURL=style.css.map */