* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --main-bg-color: #fff;
  --second-bg-color: #f5f5f5;
  --third-bg-color: #e3e3e3;
  --grey: #4b4b4b;
  --black: #000;
  --red: #c0392b;
  --top-header-size: 1.875rem;
  --mid-header-size: 5rem;
  --bottom-header-size: 3rem;
  --btn-bg: #000;
  --btn-border-color: #000;
  --btn-color: #fff;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  position: relative;
  background-color: var(--main-bg-color);
  overflow-x: hidden;
}

button {
  cursor: pointer;
}

a {
  display: inline-block;
  text-decoration: none;
  color: unset;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 84rem;
  margin: auto;
  padding: 0 1.25rem;
  position: relative;
}

.bg-second {
  background-color: var(--second-bg-color);
}

.bg-main {
  background-color: var(--main-bg-color);
}

.text-red {
  color: var(--red);
}

.mobile-menu {
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.25rem;
  display: none;
}

.mb-menu-close {
  display: none;
}

.top-header {
  height: 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header ul {
  display: flex;
}

.top-header a {
  font-size: 0.8rem;
}

ul.devided > li {
  margin-right: 0.625rem;
  padding-right: 0.625rem;
  border-right: 1px solid;
}

ul.devided > li:last-child {
  border-right: none;
}

/* dropdown */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-content {
  display: flex;
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.dropdown-content {
  /* display: flex; */
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 0.625rem);
  background-color: #fff;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

.dropdown-content > li > a {
  padding: 0.625rem;
}

.dropdown-content > li:hover {
  color: var(--red);
}
/* end dropdown */

.mid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  background-color: var(--main-bg-color);
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
}

.mb-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.search {
  width: 37.5rem;
  height: 2.5rem;
  position: relative;
}

.search input {
  height: 100%;
  width: 100%;
  font-size: 1rem;
  outline: 0;
  padding: 0 1.25rem;
  border-radius: 0.625rem;
  border: 0;
  background-color: var(--second-bg-color);
}

.search i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  cursor: pointer;
  font-size: 1.5rem;
}

.user-menu {
  display: flex;
  align-items: center;
}

.user-menu > li > a {
  font-size: 1.875rem;
  margin-left: 1rem;
}
.user-menu > li > a > i:hover {
  color: var(--red);
}
.bottom-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-menu {
  display: flex;
  height: var(--bottom-header-size);
}

.main-menu > li > a {
  display: flex;
  align-items: center;
  margin: 0 1.25rem;
  font-weight: 600;
  height: 100%;
  text-transform: uppercase;
}

.main-menu > li {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
}

.main-menu > li:hover {
  border-bottom: 2px solid var(--red);
}

/* mega menu */

.mega-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  background-color: var(--main-bg-color);
  width: 100%;
  top: calc(100% + 100px);
  z-index: 2;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mega-dropdown:hover .mega-content {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.mega-content h3 {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
}

.mega-content ul {
  display: flex;
  flex-direction: column;
}

.mega-content ul > li > a {
  font-weight: normal;
  padding: 0.625rem 0;
  border-bottom: 2px dashed #f5f5f5;
  transition: padding-left 0.2s ease-in-out;
  margin: 0 1.25rem;
  text-transform: capitalize;
}

.mega-content ul > li > a:hover {
  padding-left: 0.625rem;
}

.mega-content ul > li {
  border-bottom: 2px solid transparent;
}

.mega-content ul > li:hover {
  border-bottom: 2px solid var(--red);
}

/* end mega menu */

.box {
  padding: 1rem;
}

.hero {
  height: calc(100vh - (var(--mid-header-size) + var(--bottom-header-size)));
  padding: 0 1.25rem;
}

.product-slider,
.product-slider .container {
  height: 100%;
  position: relative;
}

.slide {
  height: 0;
  position: absolute;
  display: flex;
  inset: 0;
  overflow: hidden;
  visibility: hidden;
}

.slide.active {
  visibility: visible;
  height: 100%;
}

.slide .slide-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.slide-info-content h2 {
  font-size: 4.5rem;
  margin: 0.625rem 0 2.25rem;
}

.slide-info-content button {
  margin-top: 1.875rem;
}

.slide .img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  border: 2px solid var(--btn-border-color);
  background-color: var(--btn-bg);
  color: var(--btn-color);
  font-size: 1rem;
  width: unset;
  text-transform: uppercase;
}

.btn-primary:hover {
  transition: all 0.3s ease-in-out;
  background-color: var(--btn-color);
  color: var(--btn-bg);
}

.btn-nav{
  padding: 0.3rem;
}
.slide-controll {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: 0;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  padding: 0.625rem;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide-controll:hover {
  background-color: var(--btn-bg);
  color: var(--btn-color);
}

.slide-next {
  right: -5rem;
}

.slide-prev {
  left: -5rem;
}

.product-slider:hover .slide-next {
  right: 3.125rem;
}

.product-slider:hover .slide-prev {
  left: 3.125rem;
}

/* slide animation */
.top-down {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .top-down {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* end slide animation */

.trans-delay-0-2 {
  transition-delay: 0.2s;
}
.trans-delay-0-4 {
  transition-delay: 0.4s;
}

.trans-delay-0-6 {
  transition-delay: 0.6s;
}

.trans-delay-0-8 {
  transition-delay: 0.8s;
}

.promotion {
  padding: 1rem;
}

.promotion [class*="col-"] {
  padding: 1rem;
}

.promotion-box {
  display: flex;
  background-color: var(--third-bg-color);
  position: relative;
}

.promotion-box .text {
  flex-grow: 1;
  padding: 1.25rem;
}

.promotion-box .text h3 {
  font-size: 1.5rem;
}

.promotion-box .text button {
  margin-top: 1.875rem;
}

.promotion-box img {
  padding-bottom: 1rem;
  width: 12rem;
  transition: transform 0.3s ease-in-out;
}

.promotion-box:hover img {
  transform: scale(1.1);
}

.section {
  padding: 3.5rem 0;
}

.section-header,
.section-footer {
  text-align: center;
  margin: 5rem 0 4.5rem;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 2.5rem;
}

.sp-item-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
}

.sp-item-description {
  margin-bottom: 4rem;
  text-align: justify;
}

footer {
  padding: 4rem 0;
}

.footer-head {
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

footer ul li {
  margin-bottom: 0.625rem;
}

.contact-header {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.875rem;
  font-size: 2.5rem;
}

.contact-socials {
  display: flex;
  justify-content: center;
}

.contact-socials a {
  font-size: 1.875rem;
  margin: 0 0.625rem;
}

.contact-socials a:hover {
  color: var(--grey);
}

.menu li a {
  text-transform: capitalize;
  transition: transform 0.3s ease-in-out;
}

.menu li a:hover {
  color: var(--red);
  transform: translateX(0.625rem);
}

.send {
  position: relative;
  margin-top: 1.25rem;
}

.send input {
  width: 100%;
  height: 3.125rem;
  outline: 0;
  border: 0;
  padding: 0 1.875rem;
}

.send button {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  outline: 0;
  border: 0;
  background-color: var(--red);
  color: var(--btn-color);
  padding: 0.625rem;
  text-transform: uppercase;
}

.send button:hover {
  background-color: var(--black);
}

.mb-menu-toggle {
  font-size: 1.5rem;
}

.breadcumb {
  font-weight: 600;
  padding-left: 1.25rem;
}

.breadcumb a {
  text-transform: capitalize;
}
.breadcumb a:hover {
  color: var(--red);
}
.breadcumb span {
  margin: 0 1rem;
}
.filter-toggle-box {
  display: none;
}

/* responsive */

@media only screen and (max-width: 1280px) {
  .mobile-menu {
    display: flex;
  }

  .header-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow-x: auto;
    position: fixed;
    top: 0;
    right: 100%;
    background-color: var(--main-bg-color);
    z-index: 99;
    transition: right 0.3s ease-in-out;
  }

  .header-wrapper.active {
    right: 0;
  }

  .logo {
    font-size: 1.875rem;
  }

  .mb-menu-close {
    display: block;
    position: absolute;
    right: 43px;
    top: 18px;
    z-index: 99;
    font-size: 1.5rem;
  }

  .top-header {
    display: none;
  }

  .mid-header {
    display: flex;
    flex-direction: column;
    padding: 0 1.25rem;
    height: unset;
  }

  .mid-header > * {
    margin-top: 1rem;
  }

  .search {
    width: 100%;
  }

  .bottom-header {
    justify-content: flex-start;
  }

  .main-menu {
    flex-direction: column;
    height: unset;
  }

  .main-menu a {
    padding: 0.625rem 0;
  }

  .mega-dropdown > a > i {
    display: none;
  }

  .mega-content {
    position: relative;
    opacity: 1;
    visibility: visible;
    box-shadow: unset;
    background-color: transparent;
    padding-left: 45px;
  }

  .mega-content h3 {
    font-size: 1rem;
    padding: 5px 0;
    margin: unset;
  }

  .mega-content ul > li > a {
    padding: 5px 0;
  }

  .mega-content .img-row {
    display: none;
  }

  .hero {
    height: calc(
      80vh -
        (
          var(--top-header-size) + var(--mid-header-size) +
            var(--bottom-header-size)
        )
    );
    margin-bottom: 60px;
  }

  .slide {
    flex-direction: column-reverse;
  }

  .slide > .slide-info,
  .slide > .img {
    width: 100%;
  }

  .slide > .img > img {
    max-width: 18.75rem;
  }

  .slide-info-content p {
    display: none;
  }

  .slide-info-content button {
    margin-top: unset;
  }

  .slide-next,
  .product-slider:hover .slide-next {
    right: 40%;
  }

  .slide-prev,
  .product-slider:hover .slide-prev {
    left: 40%;
  }

  .slide-next,
  .slide-prev {
    bottom: -4.5px;
    transform: unset;
    top: unset;
  }

  .sp-item-slide-info {
    padding-right: 2.25rem;
  }
  .filter-toggle-box {
    display: block;
  }

  .filter-col {
    position: fixed;
    width: 100%;
    background-color: var(--main-bg-color);
    z-index: 98;
    left: 100%;
    height: 80vh;
    overflow-y: scroll;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: left 0.2s ease-in-out;
  }

  .filter-col.active {
    left: 0;
  }

  .pagination {
    justify-content: center;
  }
}

@media only screen and (max-width: 73.125rem) {
  .hero {
    height: calc(
      70vh -
        (
          var(--top-header-size) + var(--mid-header-size) +
            var(--bottom-header-size)
        )
    );
    margin-bottom: 60px;
  }

  .slide-info-content h2 {
    margin: unset;
    font-size: 40px;
  }

  .promotion {
    padding-top: 45px;
  }

  .promotion-box {
    height: unset;
  }
}
