.offcanvas__logo_link img {
  width: 150px;
}

.offcanvas__logo.main__logo--style2 {
  margin-right: 0;
}

.offcanvas__close--btn {
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.product__card {
  height: 100%;
}

.product__card--content {
  display: flex;
  flex-direction: column;
  max-height: 40%;
  height: 100%;
}

.product__card--content a {
  margin-top: auto;
}

.product__card img {
  width: 80%;
  margin: 0 auto;
}

.breadcrumb__content--menu {
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 991.98px) {
  .products-grid {
    max-width: 100%;
  }

  .product__card--content {
    max-height: 45%;
  }

  .featured__product--thumbnail__img {
    height: 300px;
  }

  .featured__product--section {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .product__card--content {
    max-height: 55%;
  }

  .main__footer .col-md-6 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 575.98px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product__card--content {
    max-height: auto;
    height: auto;
  }

  .home2__slider--items__bg.one {
    background-image: none;
    background-color: #f6f6f8;
  }

  .product__variant--list {
    flex-direction: column;
    row-gap: 10px;
  }
}

.remove {
  display: none;
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  left: 0%;
  width: 100%;
  max-width: 100%;
  padding: 25px;
  background-color: #f6f6f8;
  border-radius: 4px;
  z-index: 9999
}

#cookPopup p {
  margin: 0;
  text-align: center;
}

.cookPopup_btn {
  padding: 7px 15px;
  cursor: pointer;
  border: 0;
  background: var(--secondary-color);
  border-radius: 4px;
  color: #fff
}

.cookPopup_btn:hover {
  background: #212121;
}

@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}

@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }

  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}

.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}

.cookPopup_desc {
  font-size: 16px
}

.show {
  display: flex !important
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
  color: var(--second-color);
}
.thanks p.thanks-text {
  color: var(--first-color);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}