/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Nunito Sans', sans-serif;
  color: #000;
}
a {
  color: #f55d7b;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e14c69;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f55a73;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  transition: all 0.4s;
  background-image: linear-gradient( 
120deg, #f093fb 0%, #f5576c 100%) !important;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  color: #fff;
  background-image: linear-gradient( 
120deg, #f5576c 0%, #f093fb 100%) !important;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
}
.scrolled-offset {
  margin-top: 4px;
}
.logo img{
  width: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 28px 10px 0;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a img{
  width: 20px;
  margin-right: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f55d7b;
  transition: all 0.3s ease-in-out 0s;
  transform: scaleX(0);
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  transform: scaleX(1);
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #f55d7b;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #e14c69;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #e14c69;
}
.navbar-mobile .getstarted {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #e14c69;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
    height: 80vh;
    overflow: hidden;
    z-index: 1;
}
#hero .carousel{
  width: 100%;
}
#hero .carousel-item{
  position: relative;
}
#hero .container{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
#hero .carousel-item:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ccc;
    background: linear-gradient(70deg, #ccc 55%, rgba(255,255,255,0) 55%);
}

#hero h1 {
  margin: 0;
  font-size: 43px;
  font-weight: 900;
  color: #000;
  font-family: 'Nunito Sans', sans-serif;
  text-transform: uppercase;
}
#hero h1 span{
  font-size: 32px;
  font-weight: 900;
    display: block;
    color: #e14c69;
}
#hero p {
  color: #000;
  margin: 5px 0 30px 0;
  font-size: 18px;
  font-weight: 400;
}
.theme_btn {
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 2px;
  transition: 0.5s;
  color: #fff;
  background: #f5576c;
  -webkit-box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 2px 2px rgba(0,0,0,.2);
  box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
  border: 0;
  background-image: linear-gradient(
120deg, #f093fb 0%, #f5576c 100%) !important;
}

.theme_btn:hover {
    color: #fff;
    background: #f55d7b;
    background-image: linear-gradient(120deg, #f5576c 0%, #f093fb 100%) !important;
}
.carousel-control-prev span, .carousel-control-next span{
    filter: brightness(0);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #e1e1e1;
}
.section-title {
  padding-bottom: 30px;
}
.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 33px;
  font-weight: 400;
  text-transform: uppercase;
}
.section-title h2 span {
  color: #e14c69;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  background: #ccc;
  padding: 20px;
  margin: 10px;
  border-radius: 0;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item p {
  color: #000;
}
.testimonials .swiper-slide {
    transform: scale(0.9);
    transition: 1s all;
}
.testimonials .swiper-slide.swiper-slide-active {
    transform: scale(1);
}
.testimonials .swiper-button-prev, .testimonials .swiper-button-next, .products .swiper-button-prev, .products .swiper-button-next{
    color: #fff;
    background: #e14c69;
    width: 30px;
    height: 55px;
    padding: 5px;
    border-radius: 2px;
}
.testimonials .swiper-button-prev:after, .testimonials .swiper-button-next:after, .products .swiper-button-prev:after, .products .swiper-button-next:after{
    font-size: 16px !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #000000;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 15px;
  display: flex;
  border: 1px solid #ced4da;
}
.contact .info-box i {
  font-size: 32px;
  color: #e14c69;
  margin-right: 10px;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form select{
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #e14c69;
}
.contact .php-email-form input, .contact .php-email-form select {
  padding: 6px 15px;
  height: 50px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #e14c69;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #3b8af2;
}
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 50px;
}
.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 10px 15px;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: 50px;
  line-height: 32px;
  color: #999;
  border: 1px solid #ced4da;
  font-size: 14px;
}
.file-upload-wrapper:before {
  content: "Upload";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 50px;
  background: #ced4da;
  color: #000;
  z-index: 25;
  font-size: 16px;
  line-height: 50px;
  padding: 0 15px;
  pointer-events: none;
}
.file-upload-wrapper:hover:before {
  background: #f55f7f;
  color: #fff;
}
.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 40px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #000;
}
#footer .footer-top {
  padding: 70px 0 30px 0;
  background: #222;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #e14c69;
}
#footer .footer-top .footer-contact p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: rgb(255 255 255 / 71%);
}
#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
  color: rgb(255 255 255 / 71%);
  font-size: 16px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #e14c69;
  font-size: 14px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: rgb(255 255 255 / 71%);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #e14c69;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f55d79;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background-image: linear-gradient(
120deg, #f093fb 0%, #f5576c 100%) !important;
}
#footer .footer-top .social-links a:hover {
  background: #ffffff;
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient( 
120deg, #f5576c 0%, #f093fb 100%) !important;
}
#footer .copyright {
  text-align: center;
}
#footer .copyright a:hover{
  color: #fff;
}

/*--------------------------------------------------------------
# Shpping
--------------------------------------------------------------*/
.shipping .shipping_div {
    background-color: #cccccc;
    position: relative;
    text-align: center;
    padding: 120px 20px 40px;
    background-repeat: no-repeat;
    background-position: left bottom;
}
.shipping .shipping_div .icon {
    display: block;
    background-color: #f55b75;
    width: 80px;
    border-radius: 0 0 50px 50px;
    -webkit-box-shadow: 0 3px 7px rgb(0 0 0 / 15%);
    box-shadow: 0 3px 7px rgb(0 0 0 / 15%);
    padding: 22px 19px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -40px;    
    background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%) !important;
}
.shipping .shipping_div .icon img {
    display: block;
    filter: brightness(0) invert(1);
}
.shipping .shipping_div h6{
    font-size: 18px;
    font-weight: 800;
}

/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.process{
    background-color: #f3f3f3;
    background-image: url(../images/b.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding: 30px 0;
}
.promotion {
    background-color: #f3f3f3;
    padding: 30px 30px 5px;
    border-radius: 4px;
}
.promotion ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.promotion .icon{
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 2px;
    background: #f093fb;
    line-height: 1;
    margin-right: 15px;
    -webkit-box-shadow: 0 3px 7px rgb(0 0 0 / 15%);
    box-shadow: 0 3px 7px rgb(0 0 0 / 15%);    
    background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%) !important;
}
.promotion li {
    border-bottom: 1px dashed #ccc;
    padding-top: 25px;
    padding-bottom: 10px;
}
.promotion li h4 {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    display: flex;
    line-height: 2.5;
}
.promotion li p{
    margin-top: 0;
}
.promotion .icon img{
    /*filter: brightness(0);*/
}
.promotion li:last-child {
    border-bottom: 0 dashed #ccc;
    padding-bottom: 0;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .single_product{
  margin:50px 15px 0 15px;
}
.product_content h3 {
    line-height: 22px;
    font-size: 20px;
}
.product_content h3 a{
    color: #000;
}
.product_img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.product_img a {
    display: block;
    position: relative;
}
.product_content {
    margin-top: 20px;
}
.product_content .product_price span.old {
    text-decoration: line-through;
    opacity: .6;
    margin-right: 2px;
}
.product_content .product_price span {
    font-size: 15px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Inner page css
--------------------------------------------------------------*/

.inner_banner {
    position: relative;
    background: #5572c6;
    background-image: linear-gradient(
-225deg, #5271c4 0%, #b19fff 48%, #eca1fe 100%) !important;
}
.inner_banner h1{
  color: #fff;
  font-weight: 900;
  font-size: 42px;
  text-transform: uppercase;
}
.inner_content .checklist-list-group{
    padding: 0;
    margin: 0;
}
.inner_content .checklist-list-group li{
    line-height: 1.7;
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin: 15px 0;
}
.inner_content .checklist-list-group li:before{
  content: "\f26e";
  position: absolute;
  left: 0;
  top: 3px;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  width: 20px;
  height: 20px;
  background: #e14c69;
  line-height: 20px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
}
.why-main ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-main ul li {
    padding: 14px;
    color: #000;
    border-left: 4px solid #e14c69;
    margin-bottom: 18px;
    box-shadow: 4px 3px 5px 2px rgb(0 0 0 / 15%);
    border-radius: 2px;
    font-size: 18px;
    background: #ccc;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px 7px rgb(0 0 0 / 10%);
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}
.team .member .pic {
  overflow: hidden;
  border-radius: 2px;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
}
.team .member:hover {
  transform: translateY(-10px);
}
.team .member .member-info {
  margin-top: 15px;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #e14c69;
}
.team .member span {
  display: block;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #000000;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}
.team .member .social a i {
  color: #e14c69;
  font-size: 16px;
  margin: 0 2px;
}
.team .member .social a:hover {
  background: #ccc;
}
.team .member .social a:hover i {
  color: #000;
}
.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Product Listing
--------------------------------------------------------------*/

.product_content p{
  font-size: 13px;
  color: #686868;
}

/*=======================================================
      PAGINATION
========================================================*/
.pagination {
  float: right;
  border: none;
  border-radius: 0px;
}
.pagination li a {
  border-radius: 2px;
  border: none;
  background: #e14c69;
  color: #fff;
  margin: 0 2px;
  height: 30px;
  width: 30px;
  padding: 0px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  display: block;
}
.pagination li a:hover {
  background: #ffe115;
  color: #000000;
}
.pagination li.active a {
  background: #ffe115;
  color: #2d3a4b;
}
.pagination.in-center {
  text-align: center;
  width: 100%;
}
.pagination.in-center li {
  display: inline-block;
}

/*--------------------------------------------------------------
# Single Product
--------------------------------------------------------------*/

.images-slider {
  position: relative;
  background: #f7f7f7;
  z-index: 1;
}
.images-slider:before {
  height: 120px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: #fff;
  content: "";
  z-index: -1;
}
.images-slider .slides {
  display: inline-block;
  width: 100%;
}
.shop_details_page h1{
    font-size: 34px;
}
.shop_details_page .product_price span{
    font-size: 30px;
    font-weight: 900;
    color: #e14c69;
}
.zoom img{
  transition: 0.2s all;
}
.zoom:hover img{
  transform: scale(1.05);
  transition: 0.2s all;
}
.border{
  border-color: #ccc !important;
}

/***** responsive *****/

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 100%;
  }
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media only screen and (max-width: 1280px){
  #hero {
    width: 100%;
    height: auto;
  }
  #hero h1, .inner_banner h1{
    font-size: 38px;
  }
  #hero h1 span{
    font-size: 30px;
  }
  #hero p{
    font-size: 17px;
  }
  .shop_details_page h1{
      font-size: 31px;
  }
  .shop_details_page .product_price span{
    font-size: 27px;
  }
  .navbar > ul > li {
    padding: 10px 10px 10px 0;
    font-size: 15px;
  }
  .logo p small{
    font-size: 12px;
  }
  .theme_btn{
    padding: 8px 15px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1024px){
  .section-title h2{
    font-size: 30px;
  }
  #hero p{
    font-size: 17px;
  }
  .carousel-control-prev {
    left: -30px;
  }
  .carousel-control-next {
    right: -30px;
  }
  .product_content h3, .promotion li h4, #footer .footer-top h4, .contact .info-box h3{
    font-size: 18px;
  }
  .shop_details_page h1{
      font-size: 28px;
  }
  .shop_details_page .product_price span{
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar.navbar-mobile ul{
    display: block;
  }
  #hero h1, .inner_banner h1{
    font-size: 32px;
  }
  #hero h1 span, .section-title h2{
    font-size: 28px;
  }
  #hero p{
    font-size: 16px;
  }
  #hero .carousel-item:before{
      background: linear-gradient(70deg, #ccc 60%, rgba(255,255,255,0) 40%);
  }
  .shop_details_page h1{
      font-size: 25px;
  }
  .shop_details_page .product_price span{
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
  #hero h1, .inner_banner h1{
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .theme_btn {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px){  
  #hero .carousel-item:before{
      background: rgba(204,204,204,0.8);
  }
  #hero h1, .inner_banner h1{
    font-size: 28px;
  }
  #hero h1 span, .section-title h2{
    font-size: 24px;
  }
  .process{
    background-size: cover;
  }
    #hero .carousel, #hero .carousel-item {
      height: 480px;
  }
  #hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #hero .carousel-control-next, #hero .carousel-control-prev {
    top: 85%;
  }
  #hero .carousel-control-prev {
    left: 0%;
  }
  #hero .carousel-control-next {
    right: 75%;
  }
  #hero .container {
    top: 45%;
  }
  .testimonials, section{
    padding: 50px 0;
  }
  .why-main ul li{
    font-size: 16px;
  }
  .shop_details_page h1{
      font-size: 23px;
  }
  .shop_details_page .product_price span{
    font-size: 21px;
  }
  .logo{
    margin-top: 5px;
  }
  .logo p{
    display: none;
  }
  .logo{
    max-width: 100px;
  }
  .scrolled-offset {
    margin-top: 75px;
  }
}



































