@-webkit-keyframes fadeInUp {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
/* start slider-section */
#main-slider-section {
  margin-top: 207px;
}
@media screen and (max-width: 991px) {
  #main-slider-section , #mobile-slider-section {
    margin-top: 150px;
  }
}
#main-slider-section .main-slider a {
  display: block;
}
/*#main-slider-section .main-slider a img {*/
/*    object-fit: cover;*/
/*    object-position: center;*/
/*}*/
@media screen and (max-width: 575px) {
  #main-slider-section .main-slider a img {
    /*min-height: 200px;*/
  }
}
#main-slider-section .main-slider .owl-nav {
  display: none;
}
#main-slider-section .main-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
    #mobile-slider-section .main-slider .owl-dots {
        display: none;
    }
    #mobile-slider-section .main-slider .owl-nav.disabled{
        display:block;
    }
}
 .main-slider.owl-carousel .owl-stage {
    transition: all 1s !important;
}


#mobile-slider-section .owl-nav{
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    left: 0;
}
#mobile-slider-section .owl-nav button{
    position: absolute;
    top:0;
}
#mobile-slider-section .owl-nav button.owl-prev{
    right: 10px;
}
#mobile-slider-section .owl-nav button.owl-next{
    left:10px;
}

/* .main-slider .owl-dots .owl-dot.active span, .main-slider .owl-dots .owl-dot:hover span {*/
/*  background-color: #78D6C6 !important;*/
/*}*/
/* .main-slider .owl-dots .owl-dot span{*/
/*    margin:5px 5px;*/
/*}*/

/* end slider-section */
/* start category-box-section */
.category-box-section {
  margin-top: 80px;
}
@media screen and (max-width: 991px) {
  .category-box-section {
    margin-top: 60px;
    padding-bottom:50px;
  }
}
@media screen and (max-width: 767px) {
  .category-box-section {
    padding-bottom:40px;
  }
}
.category-box-section .category-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.category-box-section .category-item a {
  display: block;
  transition: all 300ms ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
.category-box-section .category-item a::before {
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.category-box-section .category-item a img {
  display: block;
  transition: all 0.4s ease-in-out;
}
.category-box-section .category-item a .text {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  padding: 25px;
  transition: all 300ms ease-in-out;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .category-box-section .category-item a .text {
    bottom: 10px;
    padding: 15px;
  }
}
.category-box-section .category-item a .text h5, .category-box-section .category-item a .text .text-1 {
  color: #e5e5e5;
  font-size: 15px;
  transition: all 0.5s ease-in-out;
  display: block;
}
@media screen and (max-width: 991px) {
  .category-box-section .category-item a .text h5, .category-box-section .category-item a .text .text-1 {
    font-size: 13px;
  }
}
.category-box-section .category-item a .text h6 {
  color: #78D6C6;
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 991px) {
  .category-box-section .category-item a .text h6 {
    font-size: 16px;
  }
}
.category-box-section .category-item a .text .link {
  transition: all 0.5s ease-in-out;
  text-decoration: underline;
  font-size: 13px;
  color: #78D6C6;
  display: block;
  margin-top: 30px;
  line-height: 1.65;
}
.category-box-section .category-item.catalog-box {
  border-radius: 0;
}
.category-box-section .category-item.catalog-box a {
  border-radius: 0;
}
.category-box-section .category-item.catalog-box .text {
  left: 17%;
  top: 30%;
  bottom: auto;
  text-align: center;
  right: auto;
}
.category-box-section .category-item.catalog-box .text h6 {
  margin: 20px 0;
}
.category-box-section .category-item:hover a::before {
  opacity: 1;
}
.category-box-section .category-item:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
}
.category-box-section .category-item:hover .text h5 {
  -webkit-animation: fadeInUp 400ms ease-in-out;
          animation: fadeInUp 400ms ease-in-out;
}
.category-box-section .category-item:hover .text h6 {
  -webkit-animation: fadeInUp 500ms ease-in-out;
          animation: fadeInUp 500ms ease-in-out;
}
.category-box-section .category-item:hover .text .text-1 {
  -webkit-animation: fadeInUp 800ms ease-in-out;
          animation: fadeInUp 800ms ease-in-out;
}
.category-box-section .category-item:hover .text .link {
  -webkit-animation: fadeInUp 1000ms ease-in-out;
          animation: fadeInUp 1000ms ease-in-out;
}

/* end category-box-section */
/* start product-item */
.product-item {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  background-color: #363535;
  transition: all 300ms ease-in-out;
  padding: 12px;
}
@media screen and (max-width: 575px) {
  .product-item {
    margin: 12px;
  }
}
.product-item .product-img {
  position: relative;
}
.product-item .product-img a {
  display: block;
  transition: all 300ms ease-in-out;
}
.product-item .product-img img {
  transition: all 0.5s ease-in-out;
  width: 100%;
   min-height:70px; 
}
.product-item .product-img .img-hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.product-item .product-img .label-sale {
  color: #e5e5e5;
  font-weight: 400;
  text-align: center;
  min-width: 50px;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 12px;
  z-index: 11;
  line-height: 27px;
  padding: 0 10px;
  background: #C70039;
  border-radius: 3px;
}
.product-item .product-img .timer {
  position: absolute;
  top: 15px;
  right: 10px;
  color: #e5e5e5;
  background: #28518A;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 11;
}
.product-item .product-img .quick-view {
  position: absolute;
  bottom: 10px;
  right: 10px;
  left: 10px;
  z-index: 10;
}
.product-item .product-img .quick-view a {
  font-size: 13px;
  color: #d1d1d1;
  background: rgba(46, 46, 46, 0.7);
  padding: 0;
  width: 100%;
  font-weight: 400;
  display: block;
  padding: 20px;
  text-align: center;
  border-radius: 3px;
}
.product-item .product-img .quick-view a:hover {
  background-color: #38af9b;
  color: #e5e5e5;
}
@media screen and (max-width: 1199px) {
  .product-item .product-img .quick-view a {
    padding: 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 575px) {
  .product-item .product-img .quick-view a {
    padding: 16px 4px;
  }
}
.product-item .caption {
  position: relative;
}
.product-item .caption .details {
  margin: 14px 0;
}
.product-item .caption .details a {
  display: inline-block;
  color: #bbb;
  font-size: 13px;
  line-height: 22px;
}
.product-item .caption .details a:hover {
  color: #78D6C6;
}
.product-item .caption h4 {
  margin-bottom: 30px;
}
.product-item .caption h4 a , .product-item .caption .details a {
  display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-item .caption h4 a {
  color: #e5e5e5;
  line-height: 1.7;
  font-size: 14px;
  height: 23.8px;
}
.product-item .caption h4 a:hover {
  color: #78D6C6;
}
.product-item .caption .price {
  margin-bottom: 15px;
  position: relative;
}

.product-item .caption .price .before {
  display: inline-block;
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 8px;
  line-height: 20px;
  color: #bbb;
}
.product-item .caption .price .after {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #78D6C6;
  text-decoration: none;
  line-height: 20px;
}

    #product-tab-section .product-item .caption .price , .slider-page .product-item .caption .price{ 
        display:flex;
        height:50px;
        flex-direction:column;
        gap:4px;
    }
    #product-tab-section .product-item .caption .price .before , .slider-page .product-item .caption .price .before{
        display:block;
        margin-left: 8px;
    }
    #product-tab-section .product-item .caption .caption-hover , .slider-page .product-item .caption .caption-hover {
        top: 63%;
    }

.product-item .caption .price .after span{
  font-size: 13px;
}
.product-item .caption .price::before {
  content: "";
  position: absolute;
  top: -20px;
  background: url(/css/Optimus/img/line.png) bottom center no-repeat;
  right: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.product-item .caption .caption-hover {
  position: absolute;
  top: 70%;
  right: 0;
  left: 0;
  background-color: #333131;
  padding: 7px 5px 5px 5px;
  transition: all 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.product-item .caption .caption-hover::before {
  content: "";
  content: "";
  left: -12px;
  right: -12px;
  top: 46px;
  bottom: -15px;
  background: #333131;
  position: absolute;
  z-index: -1;
  border-radius: 3px;
  box-shadow: 0px 10px 10px 0 rgba(0, 0, 0, 0.2);
  transition: all 300ms ease-in-out;
}
.product-item .caption .caption-hover .description {
  font-size: 12px;
  line-height: 25px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  height: 70px;
  overflow: hidden;
  position: relative;
}
.product-item .caption .caption-hover .description::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: url(/css/Optimus/img/line.png) bottom center no-repeat;
  right: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
.product-item .caption .caption-hover .description p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color:#bbb;
}
.product-item .caption .caption-hover .box-link {
  margin-bottom: 14px;
}
.product-item .caption .caption-hover .box-link a {
  background-color: #78D6C6;
  border: 0;
  color: #fff;
  display: inline-block;
  padding: 16px 14px;
  border-radius: 3px;
  font-size: 12px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 575px) {
    .product-item .caption .caption-hover .box-link a {
        padding: 14px 6px;
    }
}
.product-item .caption .caption-hover .box-link a i {
  font-size: 18px;
}
.product-item .caption .caption-hover .box-link a:hover {
  background-color: #38af9b;
  color: #e5e5e5;
}
.product-item:hover {
  box-shadow: 0 0 4px 0px rgb(0 0 0 / 30%);
  background: #333131;
}
.product-item:hover .img-hover {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.product-item:hover .caption-hover {
  opacity: 1;
  visibility: visible;
  z-index: 12;
}
/*.slider-page .product-item{*/
/*    margin: 6px;*/
/*}*/
@media screen and (max-width: 767px) {
    .mob-tab-slider .product-item{
        margin: 6px;
    }
}
@media screen and (max-width: 575px) {
    .product-item .product-img .timer {
        display:none;
    }
    #slider-section .item {
        margin-left: 10px;
    }
}
/* end product-item */
/* start product-tab-section */
#product-tab-section {
    padding: 70px 0;
    border-top: 1px solid #5b5a5a;
    margin-top: 60px;
    background: #3b3a3a;
}
#product-tab-section .container .tab-content .fade {
    opacity: 1 !important;
}
@media screen and (max-width: 991px) {
  #product-tab-section {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  #product-tab-section {
    /*margin-top: 40px;*/
  }
}
#product-tab-section nav::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 80%;
  top: 25px;
  right: 0;
  left: 0;
  background-color: #5b5a5a;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #product-tab-section nav::before {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  #product-tab-section nav::before {
    display: none;
  }
}
#product-tab-section .nav-tabs {
  border-bottom: transparent;
}
#product-tab-section .nav-tabs .nav-link {
  font-size: 14px;
  color: #e5e5e5;
  line-height: 46px;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  padding: 0 30px;
  background: #333131;
  border: 2px solid #5b5a5a;
  border-radius: 2px;
  z-index: 1;
  margin: 5px -2px;
}
@media screen and (max-width: 575px) {
    #product-tab-section .nav-tabs .nav-link{
        padding: 0 24px;
        line-height: 42px;
    }
}
#product-tab-section .nav-tabs .nav-link.active {
  border-color: #78D6C6;
  color: #78D6C6;
  margin: 5px 2px;
}
#product-tab-section .tab-content {
  padding-top: 70px;
}
@media screen and (max-width: 1199px) {
  #product-tab-section .tab-content {
    padding-top: 50px;
  }
}

/* end product-tab-section */
/* start banner-section */
#banner-section{
    height: auto;
    padding-bottom : 10px;
}
#banner-section a {
  display: block;
  background-image: url(../img/img-middle-mirora1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom : 10px;
  /*height: 430px;*/
}
@media screen and (max-width: 991px) {
  #banner-section a {
    /*height: 310px;*/
  }
}
@media screen and (max-width: 767px) {
  #banner-section a {
    /*height: 250px;*/
  }
}

/* end banner-sectio */
/* start slider-section */
#slider-section {
  margin-top: 80px;
  padding-bottom: 66px;
}
#slider-section .item {
  padding-top: 15px;
}
/*@media screen and (max-width: 575px) {*/
/*  #slider-section .item {*/
/*    margin-left: 25px;*/
/*  }*/
/*}*/
#slider-section .owl-stage-outer {
  /*padding-left: 15px;*/
  /*padding-right: 15px;*/
  /*margin-left: -15px;*/
  /*margin-right: -15px;*/
  padding-bottom: 160px;
  margin-bottom: -160px;
  transition: all 300ms ease-in-out;
  position: relative;
}
@media screen and (max-width: 575px) {
  #slider-section .owl-stage-outer {
    margin-left: 0;
    margin-right: 0;
  }
}
#slider-section .slider-page .owl-dots {
  display: none;
}
#slider-section .slider-page .owl-nav {
  display: block;
  position: absolute;
  top: -48px;
  left: 0;
  background-color: #424242;
  padding-right: 15px;
}
#slider-section .slider-page .owl-nav.disabled {
  display: block !important;
}

@media screen and (max-width: 575px) {
    .slider-page .product-item{
        margin:0;
    }
}
/*#slider-section .slider-page .owl-nav button {*/
/*  display: inline-block;*/
/*  vertical-align: top;*/
/*  opacity: 1;*/
/*  margin: 0;*/
/*  width: 24px;*/
/*  height: 25px;*/
/*  line-height: 25px;*/
/*  border-radius: 0;*/
/*  background: transparent;*/
/*  font-size: 26px;*/
/*  background-color: #424242;*/
/*  position: relative;*/
/*  transition: all 0.5s ease-in-out;*/
/*}*/
/*#slider-section .slider-page .owl-nav button span {*/
/*  transition: all 0.5s ease-in-out;*/
/*}*/
/*#slider-section .slider-page .owl-nav button:hover {*/
/*  font-size: 45px;*/
/*  color: #78D6C6;*/
/*}*/

/* end slider-section */
.border-page{
    border-bottom: 1px solid #5b5a5a;
}
/* start blog-section */
#blog-section {
  /*margin-top: 80px;*/
  /*border-top: 1px solid #5b5a5a;*/
    padding: 60px 0;
    background: #3b3a3a;
}

#blog-section .title-page  , #blog-section .title-page h3 {
    background-color: #3b3a3a;
}
#blog-section .visit-blog {
  display: inline-block;
  background-color: #3b3a3a;
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 10;
  padding: 10px 17px 10px 0;
  font-size: 14px;
  color: #78D6C6;
}
#blog-section .visit-blog:hover {
  color: #e5e5e5;
}
@media screen and (max-width: 991px) {
  #blog-section {
    margin-top: 60px;
  }
}

#blog-section .blog-item .post-img {
  overflow: hidden;
}
#blog-section .blog-item .post-img a {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
 
  transition: all 0.6s;
}
#blog-section .blog-item .post-img a img{
    width: 100%;
    height: auto;
    display: block;
}
#blog-section .blog-item p {
  font-size: 12px;
  line-height: 1.8;
  color: #aaa;
  height: 43.19;
  overflow: hidden;
  margin-bottom: 10px;
}
#blog-section .blog-item .post-caption .post-meta {
  font-size: 12px;
}
#blog-section .blog-item .post-caption .post-meta .post-author {
  color: #78D6C6;
}
#blog-section .blog-item .post-caption h3 {
  font-size: 14px;
  line-height: 1.65;
  margin: 15px 0 5px;
}
#blog-section .blog-item .post-caption h3 a {
  color: #e5e5e5;
  height: 50.1px;
  overflow: hidden;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#blog-section .blog-item .post-caption h3:hover a {
  color: #78D6C6;
}
#blog-section .blog-item .post-caption .link-box {
  position: relative;
  display: block;
  text-align: left;
}
#blog-section .blog-item .post-caption .link-box a {
  position: relative;
  color: #78D6C6;
  text-transform: capitalize;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 22px;
}
#blog-section .blog-item .post-caption .link-box a i {
  position: absolute;
  right: 0;
  top: 7px;
  opacity: 0;
  font-size: 17px;
  margin-left: 8px;
  font-weight: 400;
  transform-origin: center;
  transform: scale(0);
  transition: all 0.1s ease;
}
#blog-section .blog-item:hover .link-box a {
  padding-right: 27px;
}
#blog-section .blog-item:hover .link-box a i {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease 0.1s;
}
#blog-section .blog-item:hover .post-img a {
  transform: scale(1.1);
}

/* end blog-section */
/* start newsletter-section */
#newsletter-section {
  border-top: 1px solid #5b5a5a;
  padding: 100px 0;
}
#newsletter-section::before {
    content: "";
    position: absolute;
    inset:0;
    background-image: url(../../uploads/Global/bg-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    opacity: 0.4;
    z-index: -1;
}
#newsletter-section .newsletter-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
#newsletter-section .newsletter-box h4 {
  font-size: 20px;
  color: #e5e5e5;
}
#newsletter-section .newsletter-box p {
  font-size: 14px;
  line-height: 1.65;
}
#newsletter-section .newsletter-box form {
  border-radius: 4px;
  font-size: 14px;
}
#newsletter-section .newsletter-box form .form-control {
  font-size: 14px;
  border: 2px solid #5f5f5f;
  background-color: transparent;
  padding:22px;
}
#newsletter-section .newsletter-box form input {
  border-radius: 0;
  margin-left: 6px;
  color: #c3c3c3;
}
#newsletter-section .newsletter-box form input::placeholder{
    color:#c3c3c3;
}
#newsletter-section .newsletter-box form input:focus {
  outline: unset;
  box-shadow: unset;
}
#newsletter-section .newsletter-box form button {
  background-color: transparent;
  border: 0;
  font-size: 14px;
  border-radius: 4px;
  background: #333131;
  color: #e5e5e5;
  transition: all 0.5s ease-in-out;
  padding: 0 60px;
  display: inline-block;
}
#newsletter-section .newsletter-box form button:hover {
  background-color: #78D6C6;
  color: #fff;
}
@media screen and (max-width:767px){
    #newsletter-section .newsletter-box form button{
        padding: 0 36px;
    }
}
@media screen and (max-width: 575px){
    #newsletter-section .newsletter-box form button{
        padding: 16px 60px;
        width:100%;
    }
}
#modal .modal-body{
    padding:15px !important;
}
#product-tab-section{
    position: relative;
}
#product-tab-section::before {
    content: "";
    position: absolute;
    inset:0;
    background-image: url(../../uploads/Global/shape-15.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position:top left;
    opacity: 0.4;
}


/* end newsletter-section *//*# sourceMappingURL=home-page-style.css.map */