@import url("https://fonts.googleapis.com/css2?family=Poppins: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&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body {
  background: #F4F4F4;
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  position: fixed;
  z-index: 4;
  -webkit-box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}
header .upper-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 10rem;
  border-bottom: 5px solid #2F4F1F;
}
header .upper-header nav {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
header .upper-header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
}
header .upper-header nav ul li {
  font-size: 2.5rem;
  font-weight: 275;
  text-transform: uppercase;
}
header .upper-header nav ul li a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .upper-header nav ul li a:hover {
  color: #2E8B57;
}
header .upper-header .logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .upper-header .logo img {
  width: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .upper-header .logo img:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .upper-header .icons {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
}
header .upper-header .icons a img {
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1;
}
header .upper-header .icons a svg {
  width: 3.5rem;
  height: 3.5rem;
}
header .upper-header .icons a svg path {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  fill: #000000 !important;
}
header .upper-header .icons a svg:hover path {
  fill: #2E8B57 !important;
}
header .upper-header .icons .cart {
  position: relative;
}
header .upper-header .icons .cart span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #2E8B57;
  font-size: 1.4rem;
  border-radius: 50%;
  padding: 0.5rem;
  aspect-ratio: 1;
  color: #ffffff;
  font-weight: bold;
}
header .upper-header .socials {
  display: none;
}
header .lower-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 1rem 10rem;
}
header .lower-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
header .lower-header ul li {
  max-width: 18rem;
  font-size: 1.8rem;
  padding: 0 1.5rem;
  font-weight: 275;
  text-align: center;
  line-height: 1.5;
}
header .lower-header ul li:first-child {
  padding-left: 0;
}
header .lower-header ul li a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-header ul li a:hover {
  color: #2E8B57;
}

.toggle {
  display: none;
}
.toggle .icons {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
}
.toggle .icons a img {
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1;
}
.toggle .icons a svg {
  width: 3.5rem;
  height: 3.5rem;
}
.toggle .icons a svg path {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  fill: #000000 !important;
}
.toggle .icons a svg:hover path {
  fill: #2E8B57 !important;
}
.toggle .icons .cart {
  position: relative;
}
.toggle .icons .cart span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #2E8B57;
  font-size: 1.4rem;
  border-radius: 50%;
  padding: 0.5rem;
  aspect-ratio: 1;
  color: #ffffff;
  font-weight: bold;
}
.toggle .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.toggle .logo img {
  width: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.toggle .logo img:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

main {
  width: 100%;
  height: 100dvh;
  padding: 5rem 10rem;
  padding-top: 23rem;
}
main .main-wrapper {
  width: 100%;
  height: 100%;
  padding: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
main .main-wrapper .main-txt {
  max-width: 65rem;
}
main .main-wrapper .main-txt h1 {
  font-size: 5rem;
  font-weight: 400;
  color: #ffffff;
}
main .main-wrapper .main-txt h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #ffffff;
}
main .main-wrapper .main-txt p {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 3px solid #ffffff;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 1rem 4rem;
  color: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  text-align: center;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

section {
  padding: 5rem 10rem;
}

#recommended {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#recommended h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
#recommended .swiper {
  width: 100%;
}
#recommended .swiper .swiper-slide {
  width: 100%;
  padding-bottom: 8rem;
}
#recommended .swiper .swiper-slide .product {
  width: 100%;
}
#recommended .swiper .swiper-slide .product img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  margin-bottom: 0.5rem;
}
#recommended .swiper .swiper-slide .product .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
#recommended .swiper .swiper-slide .product .options a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
#recommended .swiper .swiper-slide .product .options .gold {
  background: #EDDD9D;
}
#recommended .swiper .swiper-slide .product .options .silver {
  background: #D9D9D9;
}
#recommended .swiper .swiper-slide .product h3 {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  -webkit-transform: ease 0.3s all;
          transform: ease 0.3s all;
}
#recommended .swiper .swiper-slide .product h3:hover {
  color: #2E8B57;
}
#recommended .swiper .swiper-slide .product p {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
#recommended .swiper .swiper-slide .product hr {
  width: 12rem;
  color: #2F4F1F;
  background: #2F4F1F;
  height: 3px;
  border: none;
  margin-bottom: 0.5rem;
}
#recommended .swiper .swiper-slide .product .btn {
  width: 100%;
  color: #000000;
  border-color: #000000;
  text-align: center;
  padding: 1rem 4rem;
  -webkit-transform: ease 0.3s all;
          transform: ease 0.3s all;
}
#recommended .swiper .swiper-slide .product .btn:hover {
  color: #2E8B57;
  border-color: #2E8B57;
}
#recommended .swiper .swiper-slide .product .btn-2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #2F4F1F;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  padding: 1rem 2rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  display: inline-block;
}
#recommended .swiper .swiper-slide .product .btn-2:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#recommended .swiper .swiper-pagination {
  margin-top: 1rem;
  text-align: center;
}
#recommended .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#recommended .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #1a1a1a;
}

#banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
#banner .grid-img {
  width: 100%;
  aspect-ratio: 1;
}
#banner .grid-img img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .grid-txt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#banner .grid-txt h2 {
  font-size: 3.5rem;
}
#banner .grid-txt p {
  font-size: 2rem;
  margin: 4rem 0;
}
#banner .grid-txt .btn {
  background: #2F4F1F;
  color: #ffffff;
  border: none;
}

footer {
  width: 100%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10rem;
  border-bottom: 3px solid #2F4F1F;
  padding: 1rem 10rem;
}
footer .footer-content .footer-column {
  padding: 1rem 0;
}
footer .footer-content .footer-column h4 {
  font-size: 2rem;
  color: #2E8B57;
  font-weight: 500;
}
footer .footer-content .footer-column p {
  font-size: 1.8rem;
}
footer .footer-content .footer-column .socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.5rem;
  padding-top: 1rem;
}
footer .footer-content .footer-column .socials a {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #2E8B57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer-content .footer-column .socials a svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #ffffff;
}
footer .footer-content .footer-column img {
  width: 10rem;
}
footer .footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20rem;
  padding: 1rem 10rem;
}
footer .footer-row p {
  font-size: 2rem;
  display: inline;
}
footer .footer-row p svg {
  width: 2rem;
  fill: #2F4F1F;
}

.cookies {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}
.cookies p {
  font-size: 1.8rem;
}
.cookies a {
  color: #3E3A3B;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 2rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #2F4F1F;
  padding: 0.7rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 2rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #000000;
  padding: 0.7rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  cursor: pointer;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#products {
  width: 100%;
  min-height: 100dvh;
  padding-top: 24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  scroll-margin-top: 15rem;
}
#products h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
#products .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
#products .categories .btn {
  border-color: #2F4F1F;
  color: #2F4F1F;
  padding: 1rem;
  border-width: 2px;
}
#products .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#products .filters select {
  font-size: 1.8rem;
  background: none;
  border: 3px solid #000000;
  font-weight: 400;
  border: none;
  outline: none;
  cursor: pointer;
}
#products .products-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  margin: 3rem 0;
}
#products .products-wrapper .product {
  width: 100%;
}
#products .products-wrapper .product img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  margin-bottom: 0.5rem;
}
#products .products-wrapper .product .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
#products .products-wrapper .product .options a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
#products .products-wrapper .product .options .gold {
  background: #EDDD9D;
}
#products .products-wrapper .product .options .silver {
  background: #D9D9D9;
}
#products .products-wrapper .product h3 {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  -webkit-transform: ease 0.3s all;
          transform: ease 0.3s all;
}
#products .products-wrapper .product h3:hover {
  color: #2E8B57;
}
#products .products-wrapper .product p {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
#products .products-wrapper .product .btn {
  width: 100%;
  color: #000000;
  border-color: #000000;
  text-align: center;
  padding: 1rem 4rem;
  -webkit-transform: ease 0.3s all;
          transform: ease 0.3s all;
}
#products .products-wrapper .product .btn:hover {
  color: #2E8B57;
  border-color: #2E8B57;
}
#products .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0;
}
#products .pagination a {
  font-size: 2rem;
}
#products .pagination .a-p {
  font-weight: bold;
  color: #2E8B57;
}

.active {
  color: #2E8B57;
}

#category-header {
  width: 100%;
  min-height: 70dvh;
  background: url(img/ctg-example-bcg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#category-header .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 5rem 10rem;
  padding-top: 23rem;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#category-header .overlay h1 {
  font-size: 5rem;
  font-weight: 400;
  color: #ffffff;
  max-width: 65rem;
  margin-bottom: 2.5rem;
}

#sub-categories {
  padding: 5rem;
  padding-bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  scroll-margin-top: 15rem;
}
#sub-categories .btn {
  border-color: #2F4F1F;
  color: #2F4F1F;
  padding: 1rem;
  border-width: 2px;
}

#product {
  padding-top: 23rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#product .product-navigation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 300;
  color: #A39797;
}
#product .product-navigation a {
  color: #A39797;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#product .product-navigation a:hover {
  color: #2F4F1F;
}
#product .product-wrapper {
  margin: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10rem;
}
#product .product-wrapper .product-gallery {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
#product .product-wrapper .product-gallery a {
  width: 100%;
}
#product .product-wrapper .product-gallery a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
#product .product-wrapper .product-details {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
#product .product-wrapper .product-details h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
#product .product-wrapper .product-details h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
#product .product-wrapper .product-details hr {
  width: 100%;
  color: #A8A8A8;
  background: #A8A8A8;
  height: 2px;
  margin-bottom: 1rem;
}
#product .product-wrapper .product-details form {
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#product .product-wrapper .product-details form label {
  font-size: 2rem;
  padding-bottom: 1rem;
}
#product .product-wrapper .product-details form .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
#product .product-wrapper .product-details form .options .option {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#product .product-wrapper .product-details form .options .option input {
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
#product .product-wrapper .product-details form select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 2rem;
  font-size: 2rem;
  background: none;
  border: 2px solid #2F4F1F;
  cursor: pointer;
  margin-bottom: 2rem;
}
#product .product-wrapper .product-details form select option {
  cursor: pointer;
}
#product .product-wrapper .product-details form input[type=submit] {
  width: 100%;
  background: #2F4F1F;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#product .product-wrapper .product-details form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#product .product-wrapper .product-details .accordion {
  border-top: 0.1rem solid #ddd;
  margin: 3rem 0;
}
#product .product-wrapper .product-details .accordion .accordion-item {
  border-bottom: 0.1rem solid #ddd;
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-header .icon {
  font-size: 3rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-weight: 400;
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-header.active .icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
  padding: 0;
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-content p {
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-content table {
  width: 100%;
  border: 2px solid #000000;
  border-collapse: collapse;
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-content table th {
  font-weight: 500;
}
#product .product-wrapper .product-details .accordion .accordion-item .accordion-content table td, #product .product-wrapper .product-details .accordion .accordion-item .accordion-content table th {
  padding: 0.5rem;
  font-size: 1.8rem;
  border: 2px solid #000000;
  text-align: center;
}

.gold {
  background: #EDDD9D;
}

.silver {
  background: #D9D9D9;
}

.active-option {
  border: 3px solid #2E8B57;
}

#custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#custom .custom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15rem;
}
#custom .custom-wrapper .custom-gallery {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
}
#custom .custom-wrapper .custom-gallery a {
  width: 100%;
}
#custom .custom-wrapper .custom-gallery a img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#custom .custom-wrapper .custom-txt {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
#custom .custom-wrapper .custom-txt h2 {
  font-size: 3rem;
  color: #2E8B57;
  margin-bottom: 1rem;
}
#custom .custom-wrapper .custom-txt p {
  font-size: 2rem;
}
#custom .custom-wrapper .custom-txt ol {
  list-style-position: inside;
  font-size: 2rem;
  margin-bottom: 1rem;
}
#custom .custom-wrapper .custom-txt ul {
  font-size: 2rem;
  text-transform: uppercase;
}
#custom .custom-wrapper .custom-txt .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  margin: 3rem 0;
}
#custom .custom-wrapper .custom-txt .icons .icon {
  width: 10rem;
}
#custom .custom-wrapper .custom-txt .icons .icon img {
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 1;
}
#custom .custom-wrapper .custom-txt .icons .icon h3 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

#portfolio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#portfolio h2 {
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
#portfolio p {
  font-size: 2rem;
}
#portfolio .references {
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
#portfolio .references .reference h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #2F4F1F;
  margin-bottom: 1rem;
}
#portfolio .references .reference:nth-child(even) h3 {
  text-align: end;
}
#portfolio .references .reference:nth-child(even) .reference-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#portfolio .references .reference .reference-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5rem;
}
#portfolio .references .reference .reference-row .reference-gallery {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
#portfolio .references .reference .reference-row .reference-gallery a {
  width: 100%;
}
#portfolio .references .reference .reference-row .reference-gallery a img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#portfolio .references .reference .reference-row .reference-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#portfolio .references .reference .reference-row .reference-txt p {
  font-size: 2rem;
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact h2 {
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
#contact p {
  text-align: center;
  font-size: 2rem;
}
#contact form {
  width: 80%;
  margin: 3rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
#contact form .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
#contact form input {
  width: 100%;
  padding: 0.5rem;
  font-size: 2rem;
  background: none;
  outline: none;
  border: none;
  border-bottom: 2px solid #ADB5BD;
}
#contact form input::-webkit-input-placeholder {
  color: #ADB5BD;
}
#contact form input::-moz-placeholder {
  color: #ADB5BD;
}
#contact form input:-ms-input-placeholder {
  color: #ADB5BD;
}
#contact form input::-ms-input-placeholder {
  color: #ADB5BD;
}
#contact form input::placeholder {
  color: #ADB5BD;
}
#contact form textarea {
  width: 100%;
  min-height: 15rem;
  padding: 0.5rem;
  font-size: 2rem;
  background: none;
  outline: none;
  border: 2px solid #ADB5BD;
  resize: vertical;
}
#contact form textarea::-webkit-input-placeholder {
  color: #ADB5BD;
}
#contact form textarea::-moz-placeholder {
  color: #ADB5BD;
}
#contact form textarea:-ms-input-placeholder {
  color: #ADB5BD;
}
#contact form textarea::-ms-input-placeholder {
  color: #ADB5BD;
}
#contact form textarea::placeholder {
  color: #ADB5BD;
}
#contact form .row-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.5rem;
}
#contact form .row-checkbox input {
  width: 2rem;
  height: 2rem;
}
#contact form label {
  font-size: 2rem;
  color: #ADB5BD;
}
#contact form input[type=date] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#contact form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #2F4F1F;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  padding: 1rem 8rem;
  cursor: pointer;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -ms-flex-item-align: end;
      align-self: end;
  border: none;
}
#contact form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#contact .contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
  margin: 0 auto;
}
#contact .contact-details h2 {
  font-size: 3rem;
  text-transform: uppercase;
  text-align: start;
  margin-bottom: 1rem;
  color: #2F4F1F;
}
#contact .contact-details .contact-row {
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10rem;
}
#contact .contact-details .contact-row .contact-map {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}
#contact .contact-details .contact-row .contact-map iframe {
  width: 100%;
  min-height: 20rem;
}
#contact .contact-details .contact-row .contact-info {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
#contact .contact-details .contact-row .contact-info .info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
}
#contact .contact-details .contact-row .contact-info .info svg {
  width: 4rem;
  height: 4rem;
}
#contact .contact-details .contact-row .contact-info .info p {
  font-size: 2rem;
  color: #2E8B57;
}
#contact .contact-details .contact-row .contact-info .socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
}
#contact .contact-details .contact-row .contact-info .socials a {
  background: #ffffff;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .contact-details .contact-row .contact-info .socials a svg {
  width: 3rem;
  height: 3rem;
}

#about {
  padding: 0;
  padding-top: 18rem;
  min-height: calc(100dvh - 25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 5rem 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#about .about-txt h2 {
  font-size: 3rem;
  color: #2F4F1F;
  margin-bottom: 1rem;
}
#about .about-txt p {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#about .about-txt h4 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
#about .about-txt .socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
}
#about .about-txt .socials a {
  background: #ffffff;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#about .about-txt .socials a svg {
  width: 3rem;
  height: 3rem;
}

#rules {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100dvh;
}
#rules .rules-wrapper {
  max-width: 144rem;
  margin: 0 auto;
}
#rules .rules-wrapper h2 {
  margin-bottom: 5rem;
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
}
#rules .rules-wrapper h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
#rules .rules-wrapper p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

#blog {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#blog .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0;
}
#blog .pagination a {
  font-size: 2rem;
}
#blog .pagination .a-p {
  font-weight: bold;
  color: #2E8B57;
}
#blog .blog-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  width: 80%;
  margin: 0 auto;
}
#blog .blog-articles .blog-article {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5rem;
}
#blog .blog-articles .blog-article .blog-article-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#blog .blog-articles .blog-article .blog-article-img img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .blog-articles .blog-article .blog-article-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
#blog .blog-articles .blog-article .blog-article-txt h2 {
  font-size: 3rem;
  color: #2F4F1F;
  margin-bottom: 0.5rem;
}
#blog .blog-articles .blog-article .blog-article-txt hr {
  width: 12rem;
  color: #2F4F1F;
  background: #2F4F1F;
  height: 3px;
  border: none;
  margin-bottom: 0.5rem;
}
#blog .blog-articles .blog-article .blog-article-txt span {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
#blog .blog-articles .blog-article .blog-article-txt p {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#blog .blog-articles .blog-article .blog-article-txt .btn {
  color: #ffffff;
  border: none;
  background: #2F4F1F;
  text-align: center;
  padding: 1rem 4rem;
  font-size: 2rem;
  -webkit-transform: ease 0.3s all;
          transform: ease 0.3s all;
}

#article {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 23rem;
}
#article span {
  font-size: 1.8rem;
}
#article h1 {
  font-size: 4rem;
  color: #2F4F1F;
  margin-bottom: 0.5rem;
}
#article hr {
  width: 12rem;
  color: #2F4F1F;
  background: #2F4F1F;
  height: 3px;
  border: none;
  margin-bottom: 0.5rem;
}
#article h2 {
  font-size: 3rem;
  color: #2F4F1F;
  margin-bottom: 1rem;
}
#article p {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#article .article-hero-img {
  width: 100%;
  max-height: 40dvh;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 2rem 0;
}
#article .article-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 2rem 0;
}
#article .article-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-heading {
  font-size: 2.5rem !important;
  color: #2F4F1F !important;
  font-weight: bold !important;
}

.recommended-blog {
  width: 80%;
  margin: 0 auto;
}

#cart {
  width: 100%;
  padding-top: 23rem;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#cart .cart-navigation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 2.5rem;
  color: #A39797;
  margin-bottom: 3rem;
}
#cart .cart-navigation a {
  font-size: 2.5rem;
  color: #A39797;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#cart .cart-navigation a:hover {
  color: #2F4F1F;
}
#cart .cart-navigation .step-active {
  color: #2F4F1F;
}
#cart .cart-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10rem;
}
#cart .cart-content .cart-table {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 0;
}
#cart .cart-content .cart-table .back {
  font-size: 2rem;
  color: #A39797;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#cart .cart-content .cart-table .back:hover {
  color: #2F4F1F;
}
#cart .cart-content .cart-table .table-container {
  width: 100%;
  overflow-x: auto;
}
#cart .cart-content .cart-table h4 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #2F4F1F;
}
#cart .cart-content .cart-table p {
  font-size: 2rem;
  margin: 2rem 0;
}
#cart .cart-content .cart-table p a {
  color: #2F4F1F;
  font-weight: bold;
}
#cart .cart-content .cart-table table {
  min-width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #A39797;
  margin: 1rem 0;
}
#cart .cart-content .cart-table table tr {
  border-bottom: 1px solid #A39797;
}
#cart .cart-content .cart-table table tr td {
  padding: 0.5rem 1rem;
  font-size: 2rem;
}
#cart .cart-content .cart-table table tr td input[type=number] {
  padding: 0.5rem;
  width: 5ch;
  font-size: 2rem;
}
#cart .cart-content .cart-table table tr td img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
#cart .cart-content .cart-table table tr td a {
  font-size: 2rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#cart .cart-content .cart-table table tr td a:hover {
  color: #2F4F1F;
}
#cart .cart-content .cart-table table tr td a svg {
  width: 3rem;
  height: 3rem;
}
#cart .cart-content .cart-table table tr .stock {
  color: #2F4F1F;
}
#cart .cart-content .cart-table table tr .outofstock {
  color: red;
}
#cart .cart-content .cart-table table tr .nowrap {
  white-space: nowrap;
}
#cart .cart-content .cart-table .form-container {
  width: 100%;
  background: #ffffff;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 3rem 0;
}
#cart .cart-content .cart-table .form-container h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 1rem 0;
}
#cart .cart-content .cart-table .form-container .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#cart .cart-content .cart-table .form-container .row .column {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1%;
}
#cart .cart-content .cart-table .form-container .row .column label {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#cart .cart-content .cart-table .form-container .row .column label span {
  color: red;
  margin-left: 0.5rem;
}
#cart .cart-content .cart-table .form-container .row .column input, #cart .cart-content .cart-table .form-container .row .column select {
  background: #E0DDDE;
  border: none;
  padding: 0.5rem;
  font-size: 2rem;
  outline: none;
  width: 100%;
}
#cart .cart-content .cart-table .form-container p {
  font-size: 1.8rem;
  margin: 1rem 0;
}
#cart .cart-content .cart-table .form-container .checkbox-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0% 1%;
}
#cart .cart-content .cart-table .form-container .checkbox-row input {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
#cart .cart-content .cart-table .form-container .checkbox-row p {
  font-size: 1.8rem;
}
#cart .cart-content .cart-sidebar {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #2F4F1F;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#cart .cart-content .cart-sidebar form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#cart .cart-content .cart-sidebar form input {
  width: 100%;
  padding: 1rem;
  font-size: 2rem;
  text-align: center;
  margin: 1rem;
}
#cart .cart-content .cart-sidebar form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  padding: 1rem 4rem;
  border: 3px solid #ffffff;
  color: #ffffff;
  background: none;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#cart .cart-content .cart-sidebar form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#cart .cart-content .cart-sidebar .summary {
  margin-top: 2rem;
}
#cart .cart-content .cart-sidebar .summary h3 {
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #ffffff;
}
#cart .cart-content .cart-sidebar .summary hr {
  width: 100%;
  color: #ffffff;
  background: #ffffff;
  height: 3px;
  border: none;
  margin: 0.5rem 0;
}
#cart .cart-content .cart-sidebar .summary .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#cart .cart-content .cart-sidebar .summary .row .heading {
  text-transform: uppercase;
}
#cart .cart-content .cart-sidebar .summary .row p {
  font-size: 2rem;
  color: #ffffff;
}
#cart .cart-content .cart-sidebar .summary .total {
  font-weight: bold;
}
#cart .cart-content .cart-sidebar .summary p {
  font-size: 2rem;
  color: #ffffff;
}
#cart .cart-content .cart-sidebar .summary .btn {
  margin: 0 auto;
  margin-top: 2rem;
}

@media (min-width: 2560px) {
  html {
    font-size: 12.5px;
  }
}
@media (max-width: 1600px) {
  header .upper-header {
    padding: 1rem 10rem;
  }
  header .upper-header nav ul li {
    font-size: 2.2rem;
  }
  header .lower-header {
    padding: 1rem 10rem;
  }
  section {
    padding: 10rem;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 9px;
  }
  header .upper-header {
    padding: 1rem 8rem;
  }
  header .upper-header nav ul {
    gap: 1.5rem;
  }
  header .upper-header nav ul li {
    font-size: 2rem;
  }
  header .upper-header .icons {
    gap: 1.5rem;
  }
  header .upper-header .icons a img {
    width: 3rem;
    height: 3rem;
  }
  header .upper-header .icons a svg {
    width: 3rem;
    height: 3rem;
  }
  header .lower-header {
    padding: 1rem 8rem;
  }
  header .lower-header ul li {
    max-width: 18rem;
    font-size: 1.6rem;
    padding: 0 1rem;
  }
  main {
    padding: 5rem 8rem;
    padding-top: 23rem;
  }
  main .main-wrapper {
    padding: 5rem;
  }
  main .main-wrapper .main-txt {
    max-width: 60rem;
  }
  main .main-wrapper .main-txt h1 {
    font-size: 4rem;
  }
  #category-header .overlay {
    padding: 5rem 8rem;
    padding-top: 23rem;
  }
  #category-header .overlay h1 {
    font-size: 4rem;
  }
  section {
    padding: 4rem 8rem;
  }
  footer .footer-content {
    padding: 1rem 8rem;
  }
  footer .footer-row {
    padding: 1rem 8rem;
  }
  #product {
    padding-top: 23rem;
  }
  #product .product-wrapper {
    gap: 8rem;
  }
  #product .product-wrapper .product-gallery {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #product .product-wrapper .product-details {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #custom .custom-wrapper {
    gap: 10rem;
  }
  #about .about-txt {
    padding: 5rem 8rem;
  }
}
@media (max-width: 1366px) {
  html {
    font-size: 8.5px;
  }
  header .upper-header {
    padding: 1rem 6rem;
  }
  header .lower-header {
    padding: 1rem 6rem;
  }
  main {
    padding: 5rem 6rem;
    padding-top: 23rem;
  }
  #category-header .overlay {
    padding: 5rem 6rem;
    padding-top: 23rem;
  }
  section {
    padding: 3rem 6rem;
  }
  #banner {
    gap: 3rem;
  }
  footer .footer-content {
    padding: 1rem 6rem;
    gap: 5rem;
  }
  footer .footer-row {
    padding: 1rem 6rem;
    gap: 5rem;
  }
  #about .about-txt {
    padding: 5rem 6rem;
  }
}
@media (max-width: 1024px) {
  #banner {
    grid-template-columns: repeat(2, 1fr);
  }
  #banner .grid-txt {
    grid-column: span 2;
  }
  #products .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
  #product .product-wrapper {
    gap: 5rem;
  }
  #product .product-wrapper .product-gallery {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #product .product-wrapper .product-details {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #custom .custom-wrapper {
    gap: 5rem;
  }
  #blog .blog-articles {
    width: 100%;
  }
  #blog .blog-articles .blog-article {
    gap: 3rem;
  }
  #article {
    width: 100%;
  }
  .recommended-blog {
    width: 100%;
  }
  #cart .cart-content {
    gap: 5rem;
  }
}
@media (max-width: 1000px) {
  .toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 5rem;
    background: #ffffff;
    width: 100%;
    position: fixed;
    z-index: 5;
    -webkit-box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #2F4F1F;
  }
  .toggle .icons {
    gap: 2rem;
  }
  .toggle .icons a img {
    width: 3.5rem;
    height: 3.5rem;
  }
  .toggle .icons a svg {
    width: 3.5rem;
    height: 3.5rem;
  }
  .toggle .icons .toggler svg {
    width: 4.5rem;
    height: 4.5rem;
  }
  header {
    width: 42rem;
    height: 100dvh;
    position: fixed;
    top: 0;
    right: 0;
  }
  header .upper-header {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: none;
    padding-top: 14rem;
    padding-bottom: 4rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  header .upper-header nav {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  header .upper-header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  header .upper-header nav ul li {
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 2px dotted #2F4F1F;
  }
  header .upper-header nav ul li a {
    font-size: 2.5rem;
  }
  header .upper-header .logo {
    display: none;
  }
  header .upper-header .icons {
    display: none;
  }
  header .upper-header .socials {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  header .upper-header .socials a {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #2E8B57;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .upper-header .socials a svg {
    width: 3.5rem;
    height: 3.5rem;
    fill: #ffffff;
  }
  header .lower-header {
    display: none;
  }
  .active-menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .not-active-menu {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  main {
    padding: 5rem;
    padding-top: 14rem;
  }
  #category-header .overlay {
    padding: 5rem;
    padding-top: 14rem;
  }
  section {
    padding: 2.5rem 5rem;
  }
  footer .footer-content {
    padding: 1rem 5rem;
    gap: 2.5rem;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  footer .footer-content .footer-column:nth-child(2) {
    display: none !important;
  }
  footer .footer-content .footer-column:nth-child(3) {
    display: none !important;
  }
  footer .footer-row {
    padding: 1rem 5rem;
    gap: 2.5rem;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  #products {
    padding-top: 14rem;
  }
  #product {
    padding-top: 14rem;
  }
  #product .product-wrapper {
    gap: 3rem;
  }
  #product .product-wrapper .product-gallery {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #product .product-wrapper .product-details {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #custom .custom-wrapper {
    gap: 3rem;
  }
  #about {
    padding-top: 9rem;
  }
  #about .about-txt {
    padding: 5rem 5rem;
  }
  #blog .blog-articles {
    width: 100%;
  }
  #blog .blog-articles .blog-article {
    gap: 3rem;
  }
  #blog .blog-articles .blog-article .blog-article-img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #blog .blog-articles .blog-article .blog-article-txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #article {
    padding-top: 14rem;
  }
  #article .article-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  #cart {
    padding-top: 14rem;
  }
  #cart .cart-content {
    width: 100%;
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cart .cart-content .cart-table {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #cart .cart-content .cart-table .form-container .cart-form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cart .cart-sidebar {
    width: 100%;
    margin-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  #products .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #product .product-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #product .product-wrapper .product-gallery {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #product .product-wrapper .product-details {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #custom .custom-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #custom .custom-wrapper .custom-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  #portfolio h2 {
    font-size: 3rem;
  }
  #portfolio .references .reference:nth-child(even) .reference-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #portfolio .references .reference .reference-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  #portfolio .references .reference .reference-row .reference-gallery {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #portfolio .references .reference .reference-row .reference-txt {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #contact form {
    width: 100%;
  }
  #contact form .row {
    gap: 2.5rem;
  }
  #contact .contact-details {
    width: 100%;
  }
  #contact .contact-details .contact-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .about-txt {
    padding: 5rem 5rem;
  }
  #blog .blog-articles .blog-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #blog .blog-articles .blog-article .blog-article-img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: none;
  }
  #blog .blog-articles .blog-article .blog-article-txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 425px) {
  .toggle {
    padding: 1rem 3rem;
  }
  .toggle .icons {
    gap: 1.5rem;
  }
  .toggle .logo img {
    width: 10rem;
  }
  header {
    width: 100%;
  }
  header .upper-header {
    padding-top: 12rem;
  }
  main {
    padding: 0rem;
    padding-top: 7.7rem;
  }
  #category-header {
    min-height: 50dvh;
  }
  #category-header .overlay {
    padding: 3rem;
    padding-top: 12rem;
  }
  section {
    padding: 3rem;
  }
  .btn {
    border-width: 2px;
  }
  #recommended h2 {
    margin-bottom: 3rem;
  }
  #recommended .swiper .swiper-slide {
    padding-bottom: 6rem;
  }
  #banner {
    gap: 1.5rem;
  }
  #banner .grid-txt h2 {
    font-size: 3rem;
  }
  #banner .grid-txt p {
    margin: 2rem 0;
  }
  footer .footer-content {
    padding: 1rem 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  footer .footer-content .footer-column {
    width: 100%;
  }
  footer .footer-row {
    padding: 1rem 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .cookies {
    width: 100%;
  }
  #products .categories {
    gap: 1rem;
  }
  #products .products-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  #sub-categories {
    padding: 3rem;
    padding-bottom: 0;
    gap: 1.5rem;
    scroll-margin-top: 10rem;
  }
  #product {
    padding-top: 12rem;
    padding-bottom: 0;
  }
  #product .product-navigation {
    font-size: 1.6rem;
  }
  #product .product-wrapper {
    margin-top: 2rem;
    margin-bottom: 0;
  }
  #product .product-wrapper .product-details h1 {
    font-size: 3rem;
  }
  #custom .custom-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #custom .custom-wrapper .custom-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  #custom .custom-wrapper .custom-txt .icons {
    gap: 2.5rem;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-bottom: 0;
  }
  #custom .custom-wrapper .custom-txt .icons .icon {
    width: 10rem;
  }
  #portfolio {
    padding-bottom: 0;
  }
  #portfolio p {
    text-align: center;
  }
  #contact form {
    width: 100%;
  }
  #contact form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact form .row-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact form input[type=submit] {
    -ms-flex-item-align: center;
        align-self: center;
  }
  #contact form input[type=date] {
    width: 100%;
  }
  #contact form label {
    text-align: center;
  }
  #about .about-txt {
    padding: 3rem;
  }
  #blog .blog-articles {
    gap: 3rem;
  }
  #blog .blog-articles .blog-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #blog .blog-articles .blog-article .blog-article-img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #blog .blog-articles .blog-article .blog-article-txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #cart {
    padding-top: 12rem;
  }
  #cart .cart-navigation {
    font-size: 1.6rem;
  }
  #cart .cart-navigation a {
    font-size: 1.6rem;
  }
  #cart .cart-content .cart-table .back {
    font-size: 1.6rem;
  }
  #cart .cart-content .cart-table .table-container p {
    font-size: 1.6rem;
  }
  #cart .cart-content .cart-table .table-container table tr td {
    font-size: 1.6rem;
    padding: 0.5rem 0.8rem;
  }
  #cart .cart-content .cart-table .table-container table tr td a {
    font-size: 1.6rem;
  }
  #cart .cart-content .cart-table .table-container table tr td input {
    font-size: 1.6rem;
  }
  #cart .cart-content .cart-table .table-container table tr td svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  #cart .cart-content .cart-table .table-container table tr td img {
    width: 5rem;
    height: 5rem;
  }
}