@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
body {
  margin: 0;
  padding: 0;
  bottom: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
  body.lock {
    overflow: hidden;
  }
}
body ul, body li {
  list-style: none;
}
body a {
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 10px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  font-family: "Roboto Mono", monospace;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #CADBC8;
  z-index: 2;
}
.header_body {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
}
.header_logo {
  flex: 0 0 60px;
  position: relative;
  z-index: 3;
}
.header_logo img {
  max-width: 100%;
}
.header_burger {
  display: none;
}
.header_list {
  display: flex;
  position: relative;
  z-index: 2;
}
.header_list li {
  margin: 0px 0px 0px 40px;
}
.header_link {
  color: black;
  text-transform: uppercase;
  font-size: 18px;
}
.header_link:hover {
  color: red;
}
.header_link:active {
  color: green;
}
@media (max-width: 768px) {
  .header_body {
    height: 50px;
  }
  .header_logo {
    flex: 0 0 40px;
  }
  .header_link {
    font-size: 25px;
  }
  .header_burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 3;
    cursor: pointer;
  }
  .header_burger span {
    position: absolute;
    background-color: black;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    transition: all 0.3s ease 0s;
  }
  .header_burger::before, .header_burger::after {
    content: "";
    background-color: black;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
  }
  .header_burger::before {
    top: 0;
  }
  .header_burger::after {
    bottom: 0;
  }
  .header_burger.active::before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header_burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header_burger.active span {
    transform: scale(0);
  }
  .header_menu {
    position: fixed;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #B0BBBF;
    padding: 70px 10px 20px 10px;
    margin: 0 auto;
    transition-duration: 0.6s;
  }
  .header_menu.active {
    top: 0;
  }
  .header_list {
    display: block;
  }
  .header_list li {
    margin: 0px 0px 20px 0px;
  }
}
.header .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 10px;
}

html, body {
  height: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

h6 {
  text-align: center;
  font-size: 20px;
  margin: 5px 0px;
}

.img_bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px 0px 40px 0px;
}
@media (max-width: 767px) {
  .main {
    margin-top: 100px;
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .main {
    margin: 80px 0px 30px 0px;
    padding: 10px;
  }
}

section {
  padding: 20px;
  width: 1180px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  top: 100px;
}

.cart {
  padding: 20px;
  width: 33%;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .cart {
    width: 50%;
    padding: 20px;
  }
}
@media (max-width: 820px) {
  .cart {
    width: 100%;
    padding: 5px;
  }
}
.cart_center {
  overflow: hidden;
  position: relative;
  padding: calc(100% - 10px) 0 0 0;
  width: 100%;
  height: 0;
  box-sizing: border-box;
}

.cart_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cart_img img {
  width: 100%;
  height: 70%;
}

.cart_text {
  position: absolute;
  top: 0;
  left: 100%;
  padding: 2px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: 0.5s;
  background: #CADBC8;
  opacity: 0.95;
}
.cart_center:hover .cart_text {
  left: 0;
}
.cart_text h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .cart_text h1 {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .cart_text h1 {
    font-size: 15px;
  }
}
@media (max-width: 820px) {
  .cart_text h1 {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .cart_text h1 {
    font-size: 14px;
  }
}
.cart_text p {
  text-align: center;
  font-size: 14px;
  font-style: italic;
}
@media (max-width: 1200px) {
  .cart_text p {
    font-size: 15px;
  }
}
@media (max-width: 820px) {
  .cart_text p {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .cart_text p {
    font-size: 14px;
  }
}
@media (max-width: 391px) {
  .cart_text p {
    font-size: 10px;
  }
}

footer {
  width: 100%;
  height: 80px;
  background-color: #CADBC8;
}
@media (max-width: 767px) {
  footer {
    height: 70px;
  }
}

.icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .icons {
    gap: 40px;
  }
}

.icons img {
  width: 40px;
  margin-top: 20px;
  padding: 0px 0px 5px 0px;
  cursor: pointer;
  border-bottom: 2px solid #CADBC8;
}
@media (max-width: 767px) {
  .icons img {
    width: 30px;
  }
}

.icons img:hover {
  border-color: green;
}/*# sourceMappingURL=style.css.map */