* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
}

*::-moz-selection {
  background-color: #FF3C78;
  color: #fff;
}

*::selection {
  background-color: #FF3C78;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #02BE83;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #FF3C78;
}

/***************************** Global Style *****************************/
p, .p {
  font-size: 15px;
  color: #6C6B6B;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.focus, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #FF3C78;
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, #a90335, #FF3C78);
  color: #000;
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  border-radius: 50%;
  color: #fff;
}

.center-vr {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.linear-pink {
  background-image: -webkit-gradient(linear, left top, right top, from(#FFB2B2), to(#FF3C78));
  background-image: linear-gradient(to right, #FFB2B2, #FF3C78);
}

.linear-green {
  background-image: -webkit-gradient(linear, left top, right top, from(#B3F6DC), to(#02BE83));
  background-image: linear-gradient(to right, #B3F6DC, #02BE83);
}

.linear-blue {
  background-image: -webkit-gradient(linear, left top, right top, from(#A7BDF9), to(#315BFF));
  background-image: linear-gradient(to right, #A7BDF9, #315BFF);
}

.linear-orange {
  background-image: -webkit-gradient(linear, left top, right top, from(#FFDEBE), to(#FE7831));
  background-image: linear-gradient(to right, #FFDEBE, #FE7831);
}

.bg-green {
  background-color: #02BE83;
}

.bg-darkBlue {
  background-color: #0A083A;
}

/***************************** Animations *****************************/
@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    ransform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    ransform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation: tada 1.5s  both;
          animation: tada 1.5s  both;
}

.p-relat {
  position: relative;
}

/***************************** Start Edit Navbar & Footer *****************************/
.nav-wrapper .navbar.bg-gray {
  background-color: #F5F5F5;
}

.nav-wrapper .navbar .navbar-brand img {
  width: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-wrapper .navbar .nav-link {
  color: #0A083A;
  margin: 0 15px;
  font-weight: 500;
  text-align: center;
}

.nav-wrapper .navbar .nav-link::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #FF3C78;
  border-radius: 50%;
  display: block;
  margin: auto;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.nav-wrapper .navbar .nav-link.active, .nav-wrapper .navbar .nav-link:hover {
  color: #FF3C78;
  font-weight: 600;
}

.nav-wrapper .navbar .nav-link.active::after, .nav-wrapper .navbar .nav-link:hover::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.nav-wrapper .navbar .nav-icons .icon {
  position: relative;
  margin: 0 10px;
  background-color: transparent;
  border: none;
  padding: 0;
}

.nav-wrapper .navbar .nav-icons .icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-wrapper .navbar .nav-icons .icon .num {
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #FF3C78;
  color: #fff;
  text-align: center;
  font-size: 10px;
  border-radius: 50%;
  display: block;
  position: absolute;
  bottom: -9px;
  right: -6px;
}

.nav-wrapper .navbar .nav-icons .cart-btn {
  position: relative;
}

.nav-wrapper .navbar .nav-icons .cart-btn::after {
  content: '\f00d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #FF3C78;
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  text-align: center;
  border-radius: 5px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.nav-wrapper .navbar .nav-icons .cart-btn.active-btn img, .nav-wrapper .navbar .nav-icons .cart-btn.active-btn .num {
  opacity: 0;
}

.nav-wrapper .navbar .nav-icons .cart-btn.active-btn::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.nav-wrapper .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.nav-wrapper .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.nav-wrapper .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-wrapper .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon {
  width: 18px;
  height: 2px;
  background: #315BFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::after, .nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #315BFF;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.nav-wrapper .search-container {
  position: fixed;
  z-index: 9999999999;
  top: 0;
}

.nav-wrapper .search-container #search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100vw;
  will-change: transform, opacity;
  z-index: -1;
}

.nav-wrapper .search-container #search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
}

.nav-wrapper .search-container #search:target {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh !important;
  opacity: 1;
  width: 100vw !important;
  z-index: 2;
}

.nav-wrapper .search-container #search:target .close-btn {
  display: block;
}

.nav-wrapper .search-container form {
  position: relative;
}

.nav-wrapper .search-container form .form-control {
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 99;
  border: none;
  border-bottom: 2px solid #eee;
  color: #fff;
  font-size: 18px;
  outline: 0;
  padding: 1rem .6rem;
}

.nav-wrapper .search-container form .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.nav-wrapper .search-container form .form-control:-ms-input-placeholder {
  color: #ccc;
}

.nav-wrapper .search-container form .form-control::-ms-input-placeholder {
  color: #ccc;
}

.nav-wrapper .search-container form .form-control::placeholder {
  color: #ccc;
}

.nav-wrapper .search-container form .form-control:focus {
  border-bottom: 2px solid #FF3C78;
}

.nav-wrapper .search-container form .submit-btn {
  position: absolute;
  right: 0;
  top: 7px;
  background-color: transparent;
  color: #FF3C78;
  border: 1px solid transparent;
}

.nav-wrapper .search-container .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: .5rem;
  right: 2rem;
}

.nav-wrapper .shopping-cart {
  position: absolute;
  right: 0;
  background-color: #fff;
  z-index: 5;
  display: block;
  padding: 25px 20px;
  width: 350px;
  min-width: 300px;
  border-radius: 10px;
  -webkit-transform: translate(50px, 15px);
          transform: translate(50px, 15px);
  opacity: 0;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.nav-wrapper .shopping-cart.active {
  opacity: 1;
  -webkit-transform: translate(0px, 15px);
          transform: translate(0px, 15px);
}

.nav-wrapper .shopping-cart .cart-header {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.nav-wrapper .shopping-cart .cart-header .icon {
  color: #315BFF;
}

.nav-wrapper .shopping-cart .cart-header .icon .num {
  position: relative;
  display: inline-block;
  bottom: 0;
  right: 0;
}

.nav-wrapper .shopping-cart .cart-header .total {
  color: #777;
  margin-bottom: 0;
}

.nav-wrapper .shopping-cart .cart-header .total b {
  color: #02BE83;
}

.nav-wrapper .shopping-cart .cart-body {
  padding: 1rem .3rem;
}

.nav-wrapper .shopping-cart .cart-body .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.nav-wrapper .shopping-cart .cart-body .item .prod-img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.nav-wrapper .shopping-cart .cart-body .item .prod-det {
  padding: 5px 15px;
}

.nav-wrapper .shopping-cart .cart-body .item .prod-det .prod-name {
  color: #0A083A;
}

.nav-wrapper .shopping-cart .cart-body .item .prod-det .categ-name {
  color: #777;
  font-weight: 500;
}

.nav-wrapper .shopping-cart .cart-body .item .prod-det .categ-name small {
  color: #315BFF;
}

.nav-wrapper .shopping-cart .cart-body .item .delete-btn {
  background-color: transparent;
  color: #666;
  border: transparent;
}

.nav-wrapper .shopping-cart .cart-body .item .delete-btn:hover {
  color: #315BFF;
}

.nav-wrapper .shopping-cart .cart-body .item:hover .prod-name {
  color: #FF3C78;
}

.nav-wrapper .shopping-cart .cart-body .btns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 15px;
}

.nav-wrapper .shopping-cart .cart-body .btns-wrapper .btn {
  background-color: #315BFF;
  color: #fff;
  padding: 0.575rem 1.5rem;
  margin: 0 2px;
}

.nav-wrapper .shopping-cart .cart-body .btns-wrapper .btn.active {
  background-color: #0A083A;
}

.nav-wrapper .shopping-cart .cart-body .btns-wrapper .btn:hover {
  background-color: #FF3C78;
}

.nav-wrapper .profile-dropdown .profile-name {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.nav-wrapper .profile-dropdown .profile-name .image-content {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0px 10px;
}

.nav-wrapper .profile-dropdown .profile-name .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.nav-wrapper .profile-dropdown .profile-name .content .name {
  font-weight: 700;
  color: #444;
  font-size: 16px;
  margin-bottom: 0;
}

.nav-wrapper .profile-dropdown .profile-name .content .mail {
  color: #8991ab;
  font-size: 12px;
}

.nav-wrapper .profile-dropdown .profile-data {
  margin-bottom: 0;
  padding: 10px 0;
}

.nav-wrapper .profile-dropdown .profile-data li {
  width: 100%;
  margin: 0px;
  border-bottom: 1px solid #f4f8fb;
}

.nav-wrapper .profile-dropdown .profile-data li a {
  width: 100% !important;
  padding: 8px 15px;
  color: #8991ab;
  display: block;
}

.nav-wrapper .profile-dropdown .profile-data li a i {
  margin: 0px 6px;
  font-size: 15px;
}

.nav-wrapper .profile-dropdown .profile-data li a span {
  font-weight: 400;
  font-size: 16px;
}

.nav-wrapper .profile-dropdown .profile-data li:hover a {
  color: #FF3C78;
  background-color: #f4f8fb;
}

.nav-wrapper .profile-dropdown .profile-data li:hover a i {
  color: #FF3C78;
}

.nav-wrapper .profile-dropdown .profile-data:last-child li {
  border-bottom: 0px !important;
}

.nav-wrapper .profile-dropdown .dropdown-menu {
  min-width: 250px;
}

.nav-wrapper .profile-dropdown .dropdown-toggle:after {
  display: none;
}

footer {
  padding: 50px 0 0 0;
}

footer .content {
  margin-bottom: 25px;
}

footer .content .logo {
  width: 50px;
  margin-bottom: 30px;
}

footer .content .social-links a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  color: #FF3C78;
  margin: 0 1px;
  text-align: center;
  border-radius: 50%;
}

footer .content .social-links a:hover {
  background-color: #315BFF;
  color: #fff;
}

footer .content .headline {
  color: #0A083A;
  font-weight: 600;
  margin-bottom: 1.3rem;
}

footer .content .links a {
  display: block;
  margin: 10px 0;
  color: #888;
}

footer .content .links a:hover {
  color: #FF3C78;
}

footer .copyright {
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

footer .copyright p {
  margin-bottom: 0;
  text-align: center;
}

/***************************** Start Edit Home Page *****************************/
header {
  background-color: #F5F5F5;
  padding: 100px 0;
  overflow: hidden;
}

header .text-box .h1 {
  color: #0A083A;
  font-weight: 700;
  font-size: 3.5rem;
}

header .text-box .p {
  font-weight: 500;
  margin: 1.5rem 0 2rem 0;
}

header .text-box .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

header .text-box .buttons .shop-btn {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FF3C78;
  color: #fff;
  display: block;
  border-radius: 5px;
  margin: 0 10px;
}

header .text-box .buttons .shop-btn:hover {
  background-color: #0A083A;
}

header .text-box .buttons .fav-btn {
  font-size: 25px;
  line-height: 40px;
  color: #FF3C78;
  margin: 0 10px;
}

header .text-box .buttons .fav-btn:hover {
  color: #0A083A;
}

header .text-box .free-feat {
  display: block;
}

header .text-box .free-feat p {
  display: inline-block;
  margin: 0 15px;
}

header .text-box .free-feat p .icon {
  width: 25px;
  margin: 0 10px;
}

header .img-box {
  position: relative;
}

header .img-box .header-prod {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

header .img-box .pattern-bg {
  position: absolute;
  z-index: 1;
  width: 90%;
  display: block;
  top: -50px;
  right: 45%;
  -webkit-transform: translateX(55%);
          transform: translateX(55%);
}

header .img-box .header-card {
  position: absolute;
  left: 0;
  width: 300px;
  top: 55%;
  z-index: 2;
}

header .swiper-container .swiper-button-next, header .swiper-container .swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/icons/right-arrow.svg);
  right: auto;
  left: 60px;
}

header .swiper-container .swiper-button-prev, header .swiper-container .swiper-container-rtl .swiper-button-next {
  background-image: url(../images/icons/right-arrow.svg);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

header .swiper-container .swiper-button-next, header .swiper-container .swiper-button-prev {
  position: absolute;
  top: unset;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-size: 35px 35px;
}

header .swiper-container .swiper-slide-active .img-box .header-prod {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.feaatured-sec {
  padding: 70px 0;
  overflow: hidden;
}

/*swiper-container*/
.swiper-container .swiper-pagination {
  position: relative;
  bottom: unset;
  margin-top: 40px;
}

.swiper-container .swiper-pagination-bullet {
  width: 35px;
  height: 4px;
  border-radius: 20px;
  background-color: #ccc;
}

.swiper-container .swiper-pagination-bullet-active {
  background: #FF3C78;
}

/*sec-heading*/
.sec-heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

.sec-heading h1, .sec-heading .h1 {
  font-weight: 700;
  color: #0A083A;
}

.sec-heading .link-btn {
  font-weight: 600;
  color: #FF3C78;
  font-size: 18px;
}

.sec-heading .link-btn:hover {
  color: #0A083A;
}

/* Rate */
.rate {
  display: inline-block;
}

.rate .icon {
  width: 18px;
}

.rate .icon.active {
  -webkit-filter: invert(68%) sepia(66%) saturate(4278%) hue-rotate(339deg) brightness(101%) contrast(99%);
          filter: invert(68%) sepia(66%) saturate(4278%) hue-rotate(339deg) brightness(101%) contrast(99%);
}

.banners-sec {
  overflow: hidden;
  padding: 70px 0;
}

.banners-sec .banner-card {
  padding: 70px 50px;
  position: relative;
}

.banners-sec .banner-card .img-box {
  position: relative;
}

.banners-sec .banner-card .img-box .prod-img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.banners-sec .banner-card .img-box .pattern {
  position: absolute;
  bottom: 25px;
  right: 50px;
}

.banners-sec .banner-card .text-box .categ-name {
  font-weight: bold;
  color: #0A083A;
}

.banners-sec .banner-card .text-box .h1 {
  color: #fff;
  font-weight: 800;
  margin: .8rem 0 1.2rem 0;
}

.banners-sec .banner-card .text-box .paragraph {
  color: #ddd;
}

.banners-sec .banner-card .text-box .shop-btn {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #0A083A;
  color: #fff;
  display: block;
  border-radius: 5px;
  margin: 0 10px;
}

.banners-sec .banner-card .text-box .shop-btn:hover {
  background-color: #FF3C78;
}

.banners-sec .banner-card .ellipse1 {
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 10px;
  -webkit-animation: rotate-center 3s linear infinite both;
          animation: rotate-center 3s linear infinite both;
}

.banners-sec .banner-card .ellipse2 {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  right: 135px;
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

.banners-sec .banner-card.dark-card .text-box .categ-name {
  color: #02BE83;
}

.banners-sec .banner-card.dark-card .shop-btn {
  background-color: #02BE83;
}

.banners-sec .banner-card:hover .prod-img {
  -webkit-animation: tada 1.5s infinite both;
          animation: tada 1.5s infinite both;
}

.bestseller-sec {
  padding: 70px 0;
  overflow: hidden;
}

.bestseller-sec .inner {
  position: relative;
}

.bestseller-sec .inner::before {
  content: '';
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#FF3C78), to(#FFB2B2));
  background-image: linear-gradient(to right, #FF3C78, #FFB2B2);
  display: block;
}

.bestseller-sec .img-box {
  padding-top: 50px;
  position: relative;
}

.bestseller-sec .img-box .bestsller-prod {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.bestseller-sec .img-box .pattern {
  position: absolute;
  left: 210px;
  width: 35%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 130px;
}

.bestseller-sec .card-body h6 {
  font-weight: bold;
  font-size: 1.2rem;
}

.bestseller-sec .card-body .shop-btn {
  width: 150px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #0A083A;
  color: #fff;
  display: block;
  border-radius: 5px;
  margin: 0 10px;
}

.bestseller-sec .card-body .shop-btn:hover {
  background-color: #FF3C78;
}

.prod-sec {
  padding: 70px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#fff));
  background-image: linear-gradient(to bottom, #F5F5F5, #fff);
  overflow: hidden;
}

.about-sec {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.about-sec .img-box {
  height: 400px;
  position: relative;
}

.about-sec .img-box .about-sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-sec .img-box .play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

.about-sec .img-box .play-btn:before, .about-sec .img-box .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#777));
  background-image: linear-gradient(to right, #fff, #777);
}

.about-sec .img-box .play-btn:hover:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#FFB2B2), to(#FF3C78));
  background-image: linear-gradient(to right, #FFB2B2, #FF3C78);
}

.about-sec .img-box .play-btn:before {
  z-index: 1;
}

.about-sec .img-box .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.about-sec .img-box .play-btn i {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-sec .text-box {
  padding: 50px 0;
}

.about-sec .text-box .h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-sec .text-box .feature-li {
  font-weight: 600;
  color: #202020;
  margin-bottom: 35px;
}

.about-sec .text-box .feature-li img {
  width: 29px;
  height: 29px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
}

.about-sec .pattern {
  position: absolute;
  bottom: -35px;
  left: 145px;
  z-index: -1;
  width: 290px;
}

.categ-sec {
  padding: 70px 0;
  overflow: hidden;
}

.categ-sec .text-content .headline {
  color: #0A083A;
  font-weight: 700;
  margin-bottom: 1rem;
}

/*categ-card*/
.categ-card {
  position: relative;
  padding: 45px 25px;
  height: 400px;
}

.categ-card::before {
  content: '';
  width: 100%;
  height: 85%;
  background-color: #eee;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  border-radius: 15px;
}

.categ-card .circle {
  width: 70px;
  height: 70px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
}

.categ-card .text-box {
  position: relative;
  z-index: 2;
}

.categ-card .text-box .headline {
  font-weight: 600;
  line-height: 2rem;
  font-size: 1.6rem;
}

.categ-card .text-box .numb {
  margin-bottom: .5rem;
}

.categ-card .text-box .link-btn {
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}

.categ-card .categ-img {
  width: 250px;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}

.categ-card:hover .circle {
  -webkit-animation: rotate-center 1.5s linear infinite both;
          animation: rotate-center 1.5s linear infinite both;
}

.categ-card:hover .categ-img {
  -webkit-animation: tada 1.5s infinite both;
          animation: tada 1.5s infinite both;
}

.brands-sec {
  padding: 70px 0;
  background-color: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.brands-sec .text-content .headline {
  color: #0A083A;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

.brands-sec .brand-card {
  width: 100%;
  height: 200px;
  background-color: #fff;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brands-sec .brand-card::before {
  content: '';
  width: 90%;
  height: 90%;
  background-color: transparent;
  display: block;
  border: 1px dashed #ddd;
  position: absolute;
  top: 9.5px;
  left: 13px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.brands-sec .brand-card .brand-img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.brands-sec .brand-card:hover::before {
  border: 1px dashed #FF3C78;
}

.brands-sec .brand-card:hover .brand-img {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

.brands-sec .circle {
  width: 120px;
  height: 120px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-animation: rotate-center 2s linear infinite both;
          animation: rotate-center 2s linear infinite both;
}

.newsletter-sec {
  padding: 0 0 70px 0;
  overflow: hidden;
}

.newsletter-sec .inner {
  position: relative;
  width: 90%;
  background-image: -webkit-gradient(linear, left top, right top, from(#8AA8F8), to(#315BFF));
  background-image: linear-gradient(to right, #8AA8F8, #315BFF);
  padding: 100px 0px;
}

.newsletter-sec .inner .text-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.newsletter-sec .inner .text-box .headline {
  font-weight: 700;
  color: #fff;
}

.newsletter-sec .inner .text-box .form-group .form-control {
  height: 70px;
  border-radius: 0;
  text-align: center;
}

.newsletter-sec .inner .text-box .form-group .submit-btn {
  width: 100%;
  height: 70px;
  background-color: #315BFF;
  color: #fff;
  border-radius: 0 0 25px 25px;
  border: 1px solid #315BFF;
}

.newsletter-sec .inner .text-box .form-group .submit-btn:hover {
  background-color: #FF3C78;
  border: 1px solid #FF3C78;
}

.newsletter-sec .inner .img-box .prod-img {
  position: relative;
}

.newsletter-sec .inner .img-box .prod-img .circle-bg {
  width: 250px;
  height: 250px;
  display: block;
  border-radius: 50%;
  z-index: 1;
  position: absolute;
  bottom: 40px;
  right: 20px;
  -webkit-animation: rotate-center 6s linear infinite both;
          animation: rotate-center 6s linear infinite both;
}

.newsletter-sec .inner .img-box .main-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
}

.newsletter-sec .inner .img-box .social-links {
  text-align: right;
}

.newsletter-sec .inner .img-box .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  color: #315BFF;
  margin: 0 1px;
  text-align: center;
  border-radius: 50%;
}

.newsletter-sec .inner .img-box .social-links a:hover {
  background-color: #FF3C78;
  color: #fff;
}

.newsletter-sec .inner .circle {
  width: 90px;
  height: 90px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50px;
  left: 5px;
  -webkit-animation: rotate-center 2s linear infinite both;
          animation: rotate-center 2s linear infinite both;
}
/*# sourceMappingURL=style.css.map */