@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-margin-top: 8.5rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: #27ae60;
  border-radius: 5rem;
}

section {
  padding: 2rem 9%;
}

.heading {
  text-align: center;
  padding-bottom: 2rem;
}

.heading span {
  font-family: 'Satisfy', cursive;
  font-size: 3rem;
  color: #27ae60;
}

.heading h3 {
  font-size: 3rem;
  color: #130f40;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 1.7rem;
  cursor: pointer;
  color: #fff;
  background: #27ae60;
  border-radius: 0.5rem;
}

.btn:hover {
  background: #130f40;
}

.home_header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 9%;
}

.home_header .home_logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: #130f40;
}

.home_header .home_logo i {
  padding-right: 0.5rem;
  color: #27ae60;
}

.home_header .home_navbar a {
  font-size: 1.7rem;
  margin: 0 1rem;
  color: #666;
}

.home_header .home_navbar a:hover {
  color: #27ae60;
}

.home_header .home_icons div {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  background: #f7f7f7;
  color: #130f40;
  border-radius: 0.5rem;
  margin-left: 0.3rem;
  cursor: pointer;
  text-align: center;
}

.home_header .home_icons div:hover {
  color: #fff;
  background: #27ae60;
}

#menu_btn {
  display: none;
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
    opacity: 0;
  }
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
    opacity: 0;
  }
}

.home_search_form_container {
  position: fixed;
  top: 8.5rem;
  left: 0;
  right: 0;
  height: calc(100vh - 8.5rem);
  background: #fff;
  display: none;
  z-index: 1000;
}

.home_search_form_container.active {
  display: block;
}

.home_search_form_container form {
  height: 7rem;
  border-bottom: 0.2rem solid #130f40;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: fadeUp 0.4s linear;
          animation: fadeUp 0.4s linear;
}

.home_search_form_container form input {
  height: 100%;
  width: 100%;
  font-size: 1.7rem;
  color: #130f40;
  text-transform: none;
  padding-right: 1rem;
}

.home_search_form_container form label {
  font-size: 3rem;
  cursor: pointer;
  color: #130f40;
}

.home_search_form_container form label:hover {
  color: #27ae60;
}

.home_shopping_cart_container {
  position: fixed;
  top: 8.5rem;
  left: 0;
  right: 0;
  height: calc(100vh - 8.5rem);
  background: #fff;
  overflow-y: scroll;
  padding-bottom: 8rem;
  z-index: 1000;
  display: none;
}

.home_shopping_cart_container.active {
  display: block;
}

.home_shopping_cart_container::-webkit-scrollbar {
  width: 1rem;
}

.home_shopping_cart_container::-webkit-scrollbar-track {
  background: #fff;
}

.home_shopping_cart_container::-webkit-scrollbar-thumb {
  background: #130f40;
  border-radius: 5rem;
}

.home_shopping_cart_container .title {
  font-size: 2.5rem;
  padding: 1rem;
  color: #130f40;
  border-bottom: 0.2rem solid rgba(0, 0, 0, 0.2);
  text-align: center;
}

.home_shopping_cart_container .home_products_container {
  border: 0.2rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  -webkit-animation: fadeUp 0.4s linear;
          animation: fadeUp 0.4s linear;
}

.home_shopping_cart_container .home_products_container .home_box_container {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box {
  border-radius: 0.5rem;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box .fa-times {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #130f40;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box .fa-times:hover {
  color: #27ae60;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box img {
  height: 8rem;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box .content h3 {
  font-size: 2rem;
  color: #130f40;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box .content span {
  font-size: 1.5rem;
  color: #666;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box .content span.price {
  color: #27ae60;
  font-size: 1.7rem;
}

.home_shopping_cart_container .home_products_container .home_box_container .home_box .content input {
  width: 8rem;
  padding: 0.5rem 1.2rem;
  font-size: 1.5rem;
  color: #130f40;
  margin: 0.7rem 0;
}

.home_shopping_cart_container .home_cart_total {
  margin-top: 2rem;
  border: 0.2rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  -webkit-animation: fadeUp 0.4s linear 0.4s backwards;
          animation: fadeUp 0.4s linear 0.4s backwards;
}

.home_shopping_cart_container .home_cart_total .home_box {
  padding: 1.5rem;
}

.home_shopping_cart_container .home_cart_total .home_box h3 {
  color: #130f40;
  font-size: 2rem;
  padding-bottom: 0.5rem;
}

.home_shopping_cart_container .home_cart_total .home_box h3 span {
  color: #27ae60;
}

.home_login_form_container {
  position: fixed;
  top: 8.5rem;
  left: 0;
  right: 0;
  height: calc(100vh - 8.5rem);
  background: #fff;
  z-index: 1000;
  padding: 0 2rem;
  display: none;
}

.home_login_form_container.active {
  display: block;
}

.home_login_form_container form {
  margin: 2rem auto;
  max-width: 40rem;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  border: 0.2rem solid rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 0.5rem;
  -webkit-animation: fadeUp 0.4s linear;
          animation: fadeUp 0.4s linear;
}

.home_login_form_container form h3 {
  padding-bottom: 1rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #130f40;
}

.home_login_form_container form .home_box {
  margin: 0.7rem 0;
  border-radius: 0.5rem;
  background: #f7f7f7;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  color: #130f40;
  text-transform: none;
  width: 100%;
}

.home_login_form_container form .remember {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.home_login_form_container form .remember label {
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.home_login_form_container form .btn {
  margin: 1rem 0;
  width: 100%;
  text-align: center;
}

.home_login_form_container form p {
  padding-top: 1rem;
  font-size: 1.5rem;
  color: #666;
}

.home_login_form_container form p a {
  color: #27ae60;
  display: inline-block;
}

.home_login_form_container form p a:hover {
  color: #130f40;
}

.home_login_form_container form p a::after {
  display: block;
  content: '';
  border-bottom: solid 0.3rem #130f40;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
}

.home_login_form_container form p a:hover::after {
  -webkit-transform: scaleX(100%);
          transform: scaleX(100%);
  color: #130f40;
}

.home_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.home_page .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.home_page .content span {
  font-size: 2rem;
  color: #27ae60;
}

.home_page .content h3 {
  font-size: 4rem;
  color: #130f40;
  padding-top: 1rem;
}

.home_page .content p {
  font-size: 1.5rem;
  color: #666;
  line-height: 2;
  padding: 1rem 0;
}

.home_page .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  margin: 2rem 0;
  pointer-events: none;
}

.home_page .image .home_bg_img {
  width: 100%;
  margin-top: 5rem;
}

.home_page .home_parallax_img {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 80vw;
}

.home_category {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  padding-bottom: 5rem;
}

.home_category .home_box {
  padding: 2rem;
  text-align: center;
  border-radius: 0.5rem;
  background: #f7f7f7;
}

.home_category .home_box:hover {
  background: #27ae60;
}

.home_category .home_box:hover h3 {
  color: #fff;
}

.home_category .home_box img {
  height: 7rem;
}

.home_category .home_box h3 {
  font-size: 1.8rem;
  color: #130f40;
}

.home_about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  background: #f7f7f7;
}

.home_about .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.home_about .image img {
  width: 100%;
}

.home_about .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.home_about .content span {
  font-family: 'Satisfy', cursive;
  font-size: 3rem;
  color: #27ae60;
}

.home_about .content .title {
  font-size: 3rem;
  padding-top: 0.5rem;
  color: #130f40;
}

.home_about .content p {
  padding: 1rem 0;
  line-height: 2;
  font-size: 1.5rem;
  color: #666;
}

.home_about .content .icons_container {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.home_about .content .icons_container .icon {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30rem;
          flex: 1 1 30rem;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.home_about .content .icons_container .icon h3 {
  font-size: 1.5rem;
  color: #130f40;
}

.grid_new {
  width: 80%;
  margin: auto;
  text-align: center;
}

.grid_new h3 {
  color: #27ae60;
}

.grid_new .abcd {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
  background-color: #130f40;
}

.grid_new .news_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5rem;
  background-color: #130f40;
  height: 600px;
}

.grid_new .news_container .box_father1 {
  border: #27ae60 1px solid;
  height: 100%;
}

.grid_new .news_container .box_father2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  height: 100%;
}

.grid_new .news_container .box_father2 .box_child {
  border: #27ae60 1px solid;
}

.home_popular .home_box_container {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.home_popular .home_box_container .home_box {
  border-radius: 0.5rem;
  position: relative;
  background: #f7f7f7;
  padding: 2rem;
  text-align: center;
}

.home_popular .home_box_container .home_box .fa-heart {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #666;
  cursor: pointer;
}

.home_popular .home_box_container .home_box .fa-heart:hover {
  color: #27ae60;
}

.home_popular .home_box_container .home_box .image {
  margin: 1rem 0;
}

.home_popular .home_box_container .home_box .image img {
  height: 15rem;
}

.home_popular .home_box_container .home_box .content h3 {
  font-size: 2rem;
  color: #130f40;
}

.home_popular .home_box_container .home_box .content .stars {
  padding: 1rem;
  font-size: 1.5rem;
}

.home_popular .home_box_container .home_box .content .stars i {
  color: gold;
}

.home_popular .home_box_container .home_box .content .stars span {
  color: #666;
}

.home_popular .home_box_container .home_box .content .price {
  font-size: 2rem;
  color: #130f40;
}

.home_popular .home_box_container .home_box .content .price span {
  font-size: 1.5rem;
  color: #666;
  text-decoration: line-through;
}

.home_banner .home_row_banner {
  background: url(../image/row-banner.png) no-repeat;
  height: 50rem;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0.5rem;
}

.home_banner .home_row_banner .content {
  position: absolute;
  top: 50%;
  left: 7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home_banner .home_row_banner .content span {
  font-family: 'Satisfy', cursive;
  font-size: 4rem;
  color: #27ae60;
  color: #130f40;
}

.home_banner .home_row_banner .content h3 {
  font-size: 6rem;
  color: red;
  text-transform: uppercase;
}

.home_banner .home_row_banner .content p {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.home_banner .home_grid_banner {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.home_banner .home_grid_banner .home_grid {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 55rem;
}

.home_banner .home_grid_banner .home_grid:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.home_banner .home_grid_banner .home_grid img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home_banner .home_grid_banner .home_grid .content {
  position: absolute;
  top: 2rem;
  padding: 0 2rem;
}

.home_banner .home_grid_banner .home_grid .content.center {
  text-align: center;
  width: 100%;
}

.home_banner .home_grid_banner .home_grid .content.center span {
  color: #666;
}

.home_banner .home_grid_banner .home_grid .content.center h3 {
  color: #130f40;
}

.home_banner .home_grid_banner .home_grid .content span {
  font-size: 2.5rem;
  color: #fff;
}

.home_banner .home_grid_banner .home_grid .content h3 {
  font-size: 3rem;
  color: #fff;
  padding-top: 0.5rem;
}

.home_menu .home_box_container {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(40rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 1.5rem;
}

.home_menu .home_box_container .home_box {
  border-radius: 0.5rem;
  background: #f7f7f7;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.home_menu .home_box_container .home_box:hover {
  background: #130f40;
}

.home_menu .home_box_container .home_box:hover .content h3 {
  color: #fff;
}

.home_menu .home_box_container .home_box img {
  height: 20rem;
}

.home_menu .home_box_container .home_box .content h3 {
  font-size: 2rem;
  color: #130f40;
  padding-bottom: 0.5rem;
}

.home_menu .home_box_container .home_box .content .price {
  font-size: 1.5rem;
  color: #27ae60;
}

.home_order .icons_container {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.home_order .icons_container .icon {
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  background: #f7f7f7;
}

.home_order .icons_container .icon img {
  height: 10rem;
}

.home_order .icons_container .icon h3 {
  font-size: 1.5rem;
  color: #130f40;
  margin-top: 0.5rem;
}

.home_order form {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 0.5rem;
}

.home_order form .home_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home_order form .home_flex .inputBox {
  width: 49%;
  padding: 0.8rem 0;
}

.home_order form .home_flex .inputBox span {
  font-size: 1.5rem;
  color: #666;
}

.home_order form .home_flex .inputBox input, .home_order form .home_flex .inputBox textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  text-transform: none;
  color: #130f40;
}

.home_order form .home_flex .inputBox textarea {
  height: 100%;
  resize: none;
}

.home_order form .home_flex .inputBox .home_map {
  margin-top: 0.5rem;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
}

.home_blogs .home_box_container {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.home_blogs .home_box_container .home_box {
  overflow: hidden;
  border-radius: 0.5rem;
}

.home_blogs .home_box_container .home_box:hover .image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.home_blogs .home_box_container .home_box:hover .image h3 {
  left: 1.5rem;
}

.home_blogs .home_box_container .home_box .image {
  height: 25rem;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.home_blogs .home_box_container .home_box .image h3 {
  position: absolute;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 1rem;
  left: -100%;
  color: #130f40;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
}

.home_blogs .home_box_container .home_box .image h3 i {
  padding-right: 0.5rem;
  color: #27ae60;
}

.home_blogs .home_box_container .home_box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home_blogs .home_box_container .home_box .content {
  padding: 1.5rem 2rem;
  background: #f7f7f7;
}

.home_blogs .home_box_container .home_box .content .tags {
  padding-bottom: 1rem;
}

.home_blogs .home_box_container .home_box .content .tags a {
  font-size: 1.5rem;
  color: #130f40;
}

.home_blogs .home_box_container .home_box .content .tags a i {
  color: #27ae60;
}

.home_blogs .home_box_container .home_box .content h3 {
  font-size: 2rem;
  color: #130f40;
}

.home_blogs .home_box_container .home_box .content p {
  font-size: 1.3rem;
  color: #666;
  padding: 1rem 0;
  line-height: 2;
}

.home_footer {
  background: #f7f7f7;
}

.home_footer .newsletter {
  text-align: center;
  margin-bottom: 2rem;
}

.home_footer .newsletter h3 {
  font-size: 2.5rem;
  color: #130f40;
  padding-bottom: 1rem;
}

.home_footer .newsletter form {
  margin: 1rem auto;
  max-width: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}

.home_footer .newsletter form input[type="email"] {
  height: 100%;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  color: #130f40;
  text-transform: none;
}

.home_footer .newsletter form input[type="submit"] {
  padding: 0 2rem;
  font-size: 1.5rem;
  color: #fff;
  background: #27ae60;
  cursor: pointer;
}

.home_footer .newsletter form input[type="submit"]:hover {
  background: #130f40;
}

.home_footer .home_box_container {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.home_footer .home_box_container .home_box h3 {
  font-size: 2rem;
  color: #130f40;
  padding: 1rem 0;
}

.home_footer .home_box_container .home_box p {
  font-size: 1.5rem;
  color: #666;
  padding: 1rem 0;
}

.home_footer .home_box_container .home_box a {
  font-size: 1.5rem;
  color: #666;
  display: block;
  padding: 1rem 0;
}

.home_footer .home_box_container .home_box a:hover {
  color: #27ae60;
}

.home_footer .home_box_container .home_box a:hover i {
  padding-right: 2rem;
}

.home_footer .home_box_container .home_box a i {
  padding-right: 0.5rem;
  color: #27ae60;
}

.home_footer .bottom {
  padding-top: 1rem;
  text-align: center;
}

.home_footer .bottom .share {
  margin: 1.5rem 0;
}

.home_footer .bottom .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  border-radius: 0.5rem;
  margin: 0 0.3rem;
  color: #fff;
  background: #27ae60;
}

.home_footer .bottom .share a:hover {
  background: #130f40;
}

.home_footer .bottom .credit {
  font-size: 1.2rem;
  color: #130f40;
  padding: 1rem;
}

.home_footer .bottom .credit span {
  color: #27ae60;
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .home_header {
    padding: 2rem;
  }
  section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #menu_btn {
    display: inline-block;
  }
  .home_header .home_navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 0.2rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.2rem solid rgba(0, 0, 0, 0.2);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .home_header .home_navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .home_header .home_navbar a {
    font-size: 2rem;
    margin: 2rem;
    display: block;
  }
  .home_page .home_parallax_img {
    top: 0;
    right: 0;
    width: 130%;
  }
  .home_order form .home_flex .inputBox {
    width: 100%;
  }
}

@media (max-width: 1540px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }
  .heading h3 {
    font-size: 2rem;
  }
  .home_header .home_navbar a {
    font-size: 1.2rem;
  }
  .home_header .home_icons div {
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
    background: #f7f7f7;
    color: #130f40;
  }
  .home_search_form_container {
    top: 7.8rem;
  }
  .home_search_form_container form label {
    font-size: 2rem;
  }
  .home_shopping_cart_container {
    top: 7.8rem;
  }
  .home_shopping_cart_container .title {
    font-size: 1.5rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container {
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box {
    gap: 1.5rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box .fa-times {
    font-size: 1rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box .fa-times:hover {
    color: #27ae60;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box img {
    height: 7rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box .content h3 {
    font-size: 1.3rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box .content span {
    font-size: 1.1rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box .content span.price {
    font-size: 1.4rem;
  }
  .home_shopping_cart_container .home_products_container .home_box_container .home_box .content input {
    width: 6rem;
    font-size: 1rem;
  }
  .home_shopping_cart_container .home_cart_total .home_box h3 {
    font-size: 1.2rem;
  }
  .home_login_form_container {
    top: 7.8rem;
  }
  .home_login_form_container form h3 {
    font-size: 1.5rem;
  }
  .home_login_form_container form .home_box {
    font-size: 1rem;
  }
  .home_login_form_container form .remember label {
    font-size: 1rem;
  }
  .home_login_form_container form p {
    font-size: 1rem;
  }
  .home_login_form_container form p a::after {
    border-bottom: solid 0.2rem #130f40;
  }
  .home_page .content span {
    font-size: 1.5rem;
  }
  .home_page .content h3 {
    font-size: 2.5rem;
  }
  .home_page .content p {
    font-size: 1.2rem;
  }
  .home_category {
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: (minmax(10rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1.5rem;
  }
  .home_about .content span {
    font-family: 'Satisfy', cursive;
    font-size: 2rem;
    color: #27ae60;
  }
  .home_about .content .title {
    font-size: 2rem;
  }
  .home_about .content p {
    font-size: 1.2rem;
  }
  .home_about .content .icons_container .icon {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    gap: 2rem;
  }
  .home_about .content .icons_container .icon h3 {
    font-size: 1.2rem;
  }
  .home_popular .home_box_container {
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
  }
  .home_popular .home_box_container .home_box .fa-heart {
    font-size: 2rem;
  }
  .home_popular .home_box_container .home_box .image img {
    height: 10rem;
  }
  .home_popular .home_box_container .home_box .content h3 {
    font-size: 1.5rem;
  }
  .home_popular .home_box_container .home_box .content .stars {
    font-size: 1.2rem;
  }
  .home_popular .home_box_container .home_box .content .price {
    font-size: 1.5rem;
  }
  .home_popular .home_box_container .home_box .content .price span {
    font-size: 1rem;
  }
  .home_banner .home_row_banner {
    height: 35rem;
  }
  .home_banner .home_row_banner .content h3 {
    font-size: 4rem;
  }
  .home_banner .home_row_banner .content p {
    font-size: 1.5rem;
  }
  .home_banner .home_grid_banner {
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
  }
  .home_banner .home_grid_banner .home_grid {
    height: 35rem;
  }
  .home_banner .home_grid_banner .home_grid .content span {
    font-size: 1.5rem;
  }
  .home_banner .home_grid_banner .home_grid .content h3 {
    font-size: 2rem;
  }
  .home_menu .home_box_container {
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
  }
  .home_menu .home_box_container .home_box img {
    height: 15rem;
  }
  .home_menu .home_box_container .home_box .content h3 {
    font-size: 1.5rem;
  }
  .home_menu .home_box_container .home_box .content .price {
    font-size: 1.5rem;
  }
  .home_order .icons_container .icon img {
    height: 7rem;
  }
  .home_order .icons_container .icon h3 {
    font-size: 1.2rem;
  }
  .home_order form .home_flex .inputBox span {
    font-size: 1.2rem;
  }
  .home_order form .home_flex .inputBox input, .home_order form .home_flex .inputBox textarea {
    font-size: 1rem;
  }
  .home_blogs .home_box_container .home_box .image h3 {
    font-size: 1.2rem;
  }
  .home_blogs .home_box_container .home_box .content .tags a {
    font-size: 1.3rem;
  }
  .home_blogs .home_box_container .home_box .content h3 {
    font-size: 1.5rem;
  }
  .home_blogs .home_box_container .home_box .content p {
    font-size: 1.1rem;
  }
  .home_footer .newsletter h3 {
    font-size: 2rem;
  }
  .home_footer .newsletter form input[type="email"] {
    font-size: 1.2rem;
  }
  .home_footer .newsletter form input[type="submit"] {
    font-size: 1.2rem;
  }
  .home_footer .home_box_container {
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
  }
  .home_footer .home_box_container .home_box h3 {
    font-size: 1.5rem;
  }
  .home_footer .home_box_container .home_box p {
    font-size: 1.2rem;
  }
  .home_footer .home_box_container .home_box a {
    font-size: 1.2rem;
  }
  .home_footer .bottom .share a {
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
  }
  .home_footer .bottom .credit {
    font-size: 1rem;
  }
}

@media (max-width: 1280px) {
  .home_page .home_parallax_img {
    top: 0;
    right: 0;
    width: 100%;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .home_shopping_cart_container .home_cart_total .home_box {
    text-align: center;
  }
  .home_shopping_cart_container .home_cart_total .home_box .btn {
    width: 100%;
  }
  .home_page .content h3 {
    font-size: 3rem;
  }
  .home_page .content p {
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=style.css.map */