a:hover {
  text-decoration: none;
}

.lie {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body {
  font-family: Roboto, sans-serif;
}

.slider .swiper-slide {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider .swiper-button, .slider .swiper-button-next, .slider .swiper-button-prev {
  background: none;
  color: #D25B5B;
}
.slider-btn {
  padding: 15px 30px;
  font-size: 12px;
  text-transform: capitalize;
  color: #323232;
  font-weight: lighter;
  border: 2px solid #323232;
  transition: 0.5s;
}
.slider-btn:hover {
  background-color: #323232;
  color: #fff;
}
.slider .count {
  position: relative;
  width: 60px;
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.slider .count .num {
  padding: 10px 0;
  border-top: 2px solid #dedede;
  width: 40px;
  border-bottom: 2px solid #dedede;
}
.slider .count .line {
  height: 2px;
  position: absolute;
  bottom: calc(50% - 11px);
  width: 60px;
  background-color: #323232;
}
@media only screen and (max-width: 768px) {
  .slider .display-1 {
    font-size: 60px !important;
    padding: 20px 0;
  }
}

.shop-item {
  position: relative;
  overflow: hidden;
}
.shop-item-add-to-cart {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  z-index: 40;
  height: 40px;
  background-color: #262626;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}
.shop-item-add-to-cart:hover {
  background-color: #404040;
}
.shop-item-footer {
  position: relative;
}
.shop-item-addons {
  position: absolute;
  bottom: 40px;
  transition: 1s;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  z-index: 70;
  right: -200%;
}
.shop-item-addon {
  margin: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.shop-item-addon a {
  color: #262626;
  display: block;
  transition: color 0.3s;
}
.shop-item-addon a:hover {
  color: #D25B5B;
}
.shop-item-images {
  position: relative;
}
.shop-item-images .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 1s;
}
.shop-item-images .image.ideal {
  position: static !important;
}
.shop-item-images .image.ideal img {
  visibility: hidden !important;
}
.shop-item-images .image img {
  width: 100%;
}
.shop-item-images .image:nth-child(2) {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
.shop-item-images .image:nth-child(3) {
  visibility: hidden;
  opacity: 0;
  z-index: 20;
}
.shop-item-title {
  color: #262626;
  transition: color 0.3s;
}
.shop-item-title a {
  color: inherit;
}
.shop-item-title:hover {
  color: #D25B5B;
}
.shop-item-special-price {
  position: absolute;
  width: 90px;
  pointer-events: none;
  height: 90px;
  border-radius: 50%;
  z-index: 60;
  top: -45px;
  right: 20px;
}
@media only screen and (max-width: 768px) {
  .shop-item-special-price {
    width: 60px;
    height: 60px;
    font-size: 12px;
    top: -30px;
  }
}
.shop-item-special-price-top {
  position: absolute;
  transition: 1s;
  z-index: 70;
  right: 0;
  top: 0;
  padding: 10px 35px;
  color: #fff;
  text-align: center;
  background-color: #262626;
  font-size: 14px;
}
.shop-item:hover .shop-item-special-price-top {
  visibility: hidden;
  opacity: 0;
}
.shop-item:hover .shop-item-images .image:nth-child(2) {
  border: 5px solid red;
  visibility: hidden;
  opacity: 0;
}
.shop-item:hover .shop-item-images .image:nth-child(3) {
  visibility: visible;
  opacity: 1;
}
.shop-item:hover .shop-item-add-to-cart {
  bottom: 0;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.shop-item:hover .shop-item-addons {
  right: 0;
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 992px) {
  .navigation .items, .fnavbar .items {
    flex-direction: column !important;
  }
  .navigation .items-wrap, .fnavbar .items-wrap {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: 1s;
    padding: 0 !important;
  }
  .navigation .items-wrap.active, .navigation .default-products-top button.items-wrap:hover, .default-products-top .navigation button.items-wrap:hover, .fnavbar .items-wrap.active, .fnavbar .default-products-top button.items-wrap:hover, .default-products-top .fnavbar button.items-wrap:hover {
    padding: 0.5rem !important;
    max-height: 200vh !important;
    z-index: 10;
    background-color: #fff;
  }
  .navigation .items > div, .fnavbar .items > div {
    width: 100%;
    text-align: center;
  }
  .navigation .items > div .item-cont, .fnavbar .items > div .item-cont {
    position: static !important;
    overflow: hidden;
    transition: 2s;
    padding: 0 !important;
    max-height: 0;
    width: auto !important;
  }
  .navigation .items > div:hover .item-cont, .navigation .items > div:focus .item-cont, .fnavbar .items > div:hover .item-cont, .fnavbar .items > div:focus .item-cont {
    padding: 0.5rem !important;
    max-height: 100vh;
  }
}

.fnavbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
}
.fnavbar button {
  cursor: pointer;
}
.fnavbar .items > div {
  position: relative;
}
.fnavbar .items > div:hover .item-cont {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.fnavbar .items > div .item-cont {
  transition: 0.5s;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  border-radius: 4px;
  z-index: 10;
  width: 300%;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
}
.fnavbar .items a {
  transition: 0.3s;
}
.fnavbar .items a:hover {
  color: #D25B5B !important;
}

header .top .drop-cont {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  transition: 1s;
  padding: 10px 0;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
}
header .top .drop-cont button {
  cursor: pointer;
  transition: 0.3s;
  display: block !important;
  padding: 5px 0;
}
header .top .drop-cont button:hover {
  color: #fff;
  background-color: #D25B5B !important;
}
header .top .drop-parent {
  position: relative;
}
@media only screen and (max-width: 576px) {
  header .top .drop-parent {
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
  }
}
header .top .drop-parent .drop-cont a {
  cursor: pointer;
  font-size: 12px;
  color: inherit;
  border-radius: 0 !important;
  transition: 0.3s;
  display: block !important;
  padding: 5px 0;
}
header .top .drop-parent .drop-cont a:hover {
  color: #fff;
  background-color: #D25B5B !important;
}
header .top .drop-parent:hover .drop-cont {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
header .navigation, header .fnavbar {
  position: relative;
}
header .navigation button, header .fnavbar button {
  cursor: pointer;
}
header .navigation .items > div, header .fnavbar .items > div {
  position: relative;
}
header .navigation .items > div:hover .item-cont, header .fnavbar .items > div:hover .item-cont {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
header .navigation .items > div .item-cont, header .fnavbar .items > div .item-cont {
  transition: 0.5s;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  border-radius: 4px;
  z-index: 10;
  width: 300%;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
}
header .navigation .items a, header .fnavbar .items a {
  transition: 0.3s;
}
header .navigation .items a:hover, header .fnavbar .items a:hover {
  color: #D25B5B !important;
}

.set .item {
  position: relative;
  cursor: pointer;
}
.set .item:hover .cover {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.set .item .cover {
  transition: 1s;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  font-size: 32px;
}

.default-products-top button {
  cursor: pointer;
}
.default-products-top button.active, .default-products-top button:hover {
  color: #262626 !important;
}
.off {
  background-image: url(https://i2.wp.com/veera.la-studioweb.com/wp-content/uploads/2018/07/m03-bg-1.jpg?fit=1760%2C880&zoom=2&ssl=1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 992px) {
  .off {
    background-image: none;
  }
  .off .off-text {
    padding: 50px 0 !important;
  }
}
.off-text {
  padding: 150px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.off-text > div:nth-child(1) {
  font-weight: bold !important;
}
.off-text > div:nth-child(2) {
  font-weight: bold !important;
  font-size: 92px;
}
.off-button {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .off-button {
    display: block;
  }
}
.off-btn {
  padding: 10px 30px;
  text-transform: capitalize;
  color: #262626;
  border: 2px solid #262626;
  transition: 0.3s;
  font-size: 14px;
}
.off-btn:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .off-btn {
    display: block;
  }
}

.news-letter form .input-group input[type=text] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(141, 141, 141, 0.3);
  transition: padding-left 0.3s;
}
.news-letter form .input-group input[type=text]:focus {
  outline: none !important;
  box-shadow: none !important;
  padding-left: 50px;
}
.news-letter form .input-group button {
  border: 0;
  border-bottom: 1px solid rgba(141, 141, 141, 0.3);
  background-color: transparent;
  color: #262626;
  font-family: Roboto, sans-serif;
}

.sm-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: #262626;
  color: #8D8D8D;
}
.sm-footer .flex-fill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-left: 1px solid rgba(141, 141, 141, 0.2);
  transition: background-color 0.3s;
  cursor: pointer;
}
.sm-footer .flex-fill:first-child {
  border-left: 0;
}
.sm-footer .flex-fill:hover {
  background-color: #404040;
}
.sm-footer .flex-fill a {
  display: block;
}

footer {
  padding-bottom: 10px;
}
@media only screen and (max-width: 576px) {
  footer {
    padding-bottom: 50px !important;
  }
}
footer .menu a {
  color: #fff;
  transition: color 0.3s;
}
footer .menu a:hover {
  color: #8D8D8D;
}

/*# sourceMappingURL=style.css.map */
