@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Grape+Nuts&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Work Sans", sans-serif;
}

ul {
  list-style: none;
}

body {
  background-image: url("../imgs/body_img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

header {
  background-image: url("../imgs/header_img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

nav .nav_top .container {
  padding: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav_top .container .icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: white;
  font-size: 20px;
}
nav .nav_top .container .icons i {
  cursor: pointer;
}
nav .nav_top .container .socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 200;
  color: white;
}
nav .nav_top .container .socials p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  cursor: pointer;
}
nav .nav_links .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
nav .nav_links .container li {
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.hero .container {
  padding: 155px 0px;
  text-align: center;
}
.hero .container h1 {
  font-size: 48px;
  font-weight: 400;
  color: white;
  font-family: "Abril Fatface", serif;
  margin-bottom: 10px;
}
.hero .container p {
  font-family: "Grape Nuts", cursive;
  font-size: 32px;
  font-weight: 400;
  color: white;
  margin-bottom: 80px;
}
.hero .container .hero_categorys .categorys_links {
  width: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0099a3;
}
.hero .container .hero_categorys .categorys_links li {
  padding: 10px 20px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.hero .container .hero_categorys .categorys_location {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(214, 217, 222, 0.5098039216);
}
.hero .container .hero_categorys .categorys_location li {
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 0px 50px;
  border-right: 1px solid white;
}

.products {
  background-color: rgba(255, 255, 255, 0.4039215686);
}
.products .container {
  padding: 150px 0px;
}
.products .container h1 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Grape Nuts", cursive;
  color: black;
  text-align: center;
  margin-bottom: 20px;
}
.products .container .products_boxs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.products .container .products_boxs .products_card {
  width: 280px;
  background-color: white;
  transition: all 0.3s ease;
}
.products .container .products_boxs .products_card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.342);
}
.products .container .products_boxs .products_card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .container .products_boxs .products_card .card_info {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products .container .products_boxs .products_card .card_info .card_info-left {
  width: 70%;
}
.products .container .products_boxs .products_card .card_info .card_info-left h2 {
  font-size: 24px;
  font-weight: 800;
  color: black;
  font-family: "Grape Nuts", cursive;
}
.products .container .products_boxs .products_card .card_info .card_info-left p {
  font-size: 12px;
  font-weight: 400;
}
.products .container .products_boxs .products_card .card_info .info_prices {
  width: 30%;
  position: relative;
}
.products .container .products_boxs .products_card .card_info .info_prices h1 {
  font-size: 20px;
  font-weight: 500;
  color: black;
}
.products .container .products_boxs .products_card .card_info .info_prices span {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 12px;
  font-weight: 200;
  color: black;
}

.videos {
  position: relative;
  overflow: hidden;
}
.videos video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
}
.videos .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.videos .container .click_play {
  opacity: 0.2;
  transition: all 0.3s ease;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.333);
  backdrop-filter: blur(6px);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: white;
}
.videos .container .click_play:hover {
  opacity: 1;
}
.videos .container .click_play .paused {
  display: none;
}
.videos .container .click_play.active .players {
  display: none;
}
.videos .container .click_play.active .paused {
  display: inline-block;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}/*# sourceMappingURL=main.css.map */