img {
  max-width: 100%;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

a,
i,
span {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}


/*
h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}
*/
h4 {
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
}/*

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}*/



p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
}
/*==================================================================
                           05. Buttons css
==================================================================*/
/*===== All Button Common Style =====*/
.main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 0;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s linear;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

@media (max-width: 767px) {
  .main-btn {
    padding: 0 14px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .main-btn {
    padding: 0 16px;
    font-size: 16px;
  }
}

.main-btn i {
  margin: 0 3px;
  font-size: 22px;
  line-height: 1;
  position: relative;
  top: 2px;
}

.main-btn img {
  margin: 0 5px 0 2px;
  width: 22px;
}

.main-btn::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  padding: 50%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: -1;
  color: #fff;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: all 0.4s linear;
}

.icon-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 0;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s linear;
  position: relative;
  overflow: hidden;
}

.icon-btn img {
  width: 22px;
}

.icon-btn::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  padding: 50%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: -1;
  color: #fff;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: all 0.4s linear;
}

.btn-group > .main-btn:not(:last-child):not(.toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .main-btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}

.btn-group.group-2 > .main-btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group.group-2 > .main-btn:not(:first-child):not(.toggle) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*===== Button Shadow Style =====*/
.btn-shadow {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
}

/*===== Primary Button Style =====*/
.primary-icon,
.primary-btn {
  background-color: #542DED;
  color: #fff;
}

.primary-icon:hover,
.primary-btn:hover {
  color: #fff;
}

.primary-icon:hover::before,
.primary-btn:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.primary-icon-border,
.primary-btn-border {
  /*border: 1px solid #542DED;*/
  /*color: #542DED;*/
  line-height: 38px;
}

.primary-icon-border:hover,
.primary-btn-border:hover {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  color: #ffffff;
}

.primary-icon-text,
.primary-btn-text {
  color: #542DED;
}

.primary-icon-text:hover,
.primary-btn-text:hover {
  color: #542DED;
}

/*===== Secondary 1 Button Style =====*/
.secondary-1-icon,
.secondary-1-btn {
  background-color: #E14C7B;
  color: #fff;
}

.secondary-1-icon:hover,
.secondary-1-btn:hover {
  color: #fff;
}

.secondary-1-icon:hover::before,
.secondary-1-btn:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.secondary-1-icon-border,
.secondary-1-btn-border {
  border: 1px solid #E14C7B;
  color: #E14C7B;
  line-height: 38px;
}

.secondary-1-icon-border:hover,
.secondary-1-btn-border:hover {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
  color: #E14C7B;
}

.secondary-1-icon-text,
.secondary-1-btn-text {
  color: #E14C7B;
}

.secondary-1-icon-text:hover,
.secondary-1-btn-text:hover {
  color: #E14C7B;
}
/*==================================================================
                   19. Product css
==================================================================*/
/*===== All Product Style 1 =====*/
.product-style-1 .product-image {
  position: relative;
}

.product-style-1 .product-image .tns-controls {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  justify-content: space-between;
}

.product-style-1 .product-image .tns-controls button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: rgba(0, 0, 0, 0.38);
  font-size: 32px;
  z-index: 5;
  cursor: pointer;
  border: none;
  background: transparent;
}

.product-style-1 .product-image .tns-controls button:hover {
  color: #000;
}

.product-style-1 .product-image .product-item > img {
  width: 100%;
}

.product-style-1 .product-image .add-wishlist {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  color: black;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 9;
  transition: all 0.3s linear;
}

.product-style-1 .product-image .add-wishlist:hover {
  color: #542DED;
}

.product-style-1 .product-content {
  background-color: rgba(0, 0, 0, 0.64);
  margin: -50px 42px 0;
  position: relative;
  z-index: 5;
  padding: 30px 20px 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-style-1 .product-content {
    margin: -50px 32px 0;
    padding: 20px 15px 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-style-1 .product-content {
    margin: -50px 32px 0;
    padding: 20px 15px 25px;
  }
}

@media (max-width: 767px) {
  .product-style-1 .product-content {
    margin: -50px 22px 0;
    padding: 20px 10px 25px;
  }
}

.product-style-1 .product-content .title a {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-style-1 .product-content .title a {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-style-1 .product-content .title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .product-style-1 .product-content .title a {
    font-size: 18px;
  }
}

.product-style-1 .product-content .title a:hover {
  color: #E14C7B;
}

.product-style-1 .product-content p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 8px;
}

.product-style-1 .product-content .main-btn {
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
}

.three-column-carousel-wrapper {
  position: relative;
  margin: 0px -10px;
}

.three-column-carousel-wrapper .row {
  margin-right: 0;
  margin-left: 0;
}

.three-column-carousel-wrapper .tns-controls button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(0, 0, 0, 0.18);
  font-size: 20px;
}

.three-column-carousel-wrapper .tns-controls button[data-controls="next"] {
  right: -8px;
  left: auto;
}

.three-column-carousel-wrapper .tns-controls button:hover {
  background: #542DED;
  color: #fff;
}


/*===== All Product Style 3 =====*/
.product-style-3 .product-image {
  position: relative;
}

.product-style-3 .product-image .product-item img {
  width: 100%;
}

.product-style-3 .product-image .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s linear;
  bottom: auto;
  left: 4px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: rgba(0, 0, 0, 0.38);
  font-size: 32px;
  /*z-index: 5;*/
  cursor: pointer;
}

.product-style-3 .product-image .slick-arrow:hover {
  color: #000;
}

.product-style-3 .product-image .slick-arrow.next {
  right: 4px;
  left: auto;
}

.product-style-3 .product-image .add-wishlist {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  color: #E14C7B;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 9;
  transition: all 0.3s linear;
}

.product-style-3 .product-image .add-wishlist:hover {
  color: #542DED;
}

.product-style-3 .product-content {
  background-color: #fff;
  position: relative;
  /*z-index: 5;*/
  padding: 0 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-style-3 .product-content {
    padding: 20px 15px 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-style-3 .product-content {
    padding: 20px 15px 25px;
  }
}

@media (max-width: 767px) {
  .product-style-3 .product-content {
    padding: 20px 10px 25px;
  }
}

.product-style-3 .product-content .title a {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #000;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-style-3 .product-content .title a {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-style-3 .product-content .title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .product-style-3 .product-content .title a {
    font-size: 18px;
  }
}

.product-style-3 .product-content .title a:hover {
  color: #000;/**/
}

.product-style-3 .product-content p {
  color: rgba(0, 0, 0, 0.74);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
}

.product-style-3 .product-content .product-price-cart {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-style-3 .product-content .product-price-cart .price {
  font-weight: 500;
  font-size: 24px;
  color: #E14C7B;
  line-height: 30px;
  margin-top: 16px;
}

.product-style-3 .product-content .product-price-cart .main-btn {
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
}

