:root {
  --primary: #FF4A38;
  --secondary: #B46160;
  --filterPrimary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

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

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

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  overflow-x: hidden;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

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

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 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;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.in-flex {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

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

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--primary) !important;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 0px;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 5%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 5%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .5rem 1.5rem;
  border-radius: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  overflow: hidden;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn::before, .butn::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #7b1b12;
  border-radius: 50%;
}

.butn::before {
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.butn::after {
  right: -20px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.butn.sm_butn {
  padding: 0;
  width: 40px;
  height: 40px;
}

.butn.gray_butn {
  background-color: #f5f5f5;
  color: #333;
}

.butn.black_butn {
  background-color: #000000;
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn:hover {
  border: 1px solid #7b1b12;
  color: #fff !important;
}

.butn:hover::before {
  -webkit-animation: criss-cross-left 1s both alternate;
          animation: criss-cross-left 1s both alternate;
}

.butn:hover::after {
  -webkit-animation: criss-cross-right 1s both alternate;
          animation: criss-cross-right 1s both alternate;
}

.butn:hover i {
  animation: floatingX .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.box_shadow {
  -webkit-box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.16);
}

.sec-head .title {
  font-weight: 900;
}

.badge {
  padding: .9em 1rem;
  position: relative;
  font-size: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.badge.primary_badge {
  background-color: var(--primary);
  color: #fff;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar .logo {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  margin: 0 10px;
  font-size: 14px;
  color: #999;
  text-transform: capitalize;
}

.navs-container .navbar .nav-link.active {
  font-weight: bold;
  color: var(--primary);
}

.navs-container .navbar .cart_butn {
  font-size: 18px;
  overflow: unset;
}

.navs-container .navbar .cart_butn::before, .navs-container .navbar .cart_butn::after {
  display: none;
}

.navs-container .navbar .cart_butn .num {
  width: 15px;
  height: 15px;
  font-size: 10px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 25px;
  position: absolute;
  top: -5px;
  right: -10px;
}

.navs-container .navbar .cart_butn:hover {
  background-color: #7b1b12;
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .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);
}

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

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

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  position: relative;
  padding: 70px 0 0 0;
  background-color: #1C1C1C;
}

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

.footer .content .links a {
  display: block;
  color: #ddd;
  font-size: 15px;
  margin: 10px 0;
}

.footer .content .logo {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.footer .content .det {
  font-size: 13px;
}

.footer .content .social_links a {
  color: #ccc;
  margin: 0 5px;
}

.footer .content .opening span {
  color: #ddd;
  font-size: 15px;
}

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

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
}

.header .item {
  padding: 40px 0;
}

.header .item .text-box .title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: calc(1.5vw + 35px);
}

.header .item .text-box .content {
  position: relative;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

.header .item .text-box .content .data-group .data {
  position: relative;
  margin: 0 5px;
  font-weight: bold;
}

.header .item .text-box .content .data-group .data::after {
  content: '+';
  font-weight: bold;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}

.header .item .text-box .content .data-group .data:last-child::after {
  content: '=';
}

.header .item .text-box .content .price small {
  font-size: 60%;
}

.header .item .text-box .content .black_butn {
  min-width: 130px !important;
  padding: 0.5rem 0;
  font-size: 12px;
}

.header .item .text-box .content::before {
  content: '';
  width: 88%;
  height: calc(100% + 45px);
  border: 1px solid #ddd;
  border-radius: 5px;
  position: absolute;
  top: -25px;
  left: 0;
  z-index: -1;
}

.header .swiper-pagination {
  bottom: 40px;
}

.header .header_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header .vector1 {
  position: absolute;
  bottom: 50px;
  left: 30px;
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}

.about-sec .img-box {
  position: relative;
  height: 250px;
  margin-bottom: 15px;
}

.about-sec .img-box .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ddd;
}

.about-sec .img-box .play-btn i {
  position: relative;
  font-size: 15px;
  z-index: 5;
}

.about-sec .img-box .play-btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 55px;
  height: 55px;
  background: #000;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.about-sec .img-box .play-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.about-sec .img-box .play-btn:hover {
  color: #fff !important;
}

.about-sec .img-box .vector1 {
  position: absolute;
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  top: 30px;
  right: 15px;
  -webkit-animation: floating-y 1s infinite alternate;
          animation: floating-y 1s infinite alternate;
}

.about-sec .img-box .vector2 {
  position: absolute;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 40px;
  left: 0px;
  -webkit-animation: pulse 1s  infinite alternate;
          animation: pulse 1s  infinite alternate;
}

.about-sec .img-box .vector3 {
  position: absolute;
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 40px;
  right: 0px;
  -webkit-animation: tada 1.5s  infinite alternate;
          animation: tada 1.5s  infinite alternate;
}

.about-sec .img-box .sm-img {
  height: 150px;
}

.about-sec .content-box {
  background-color: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 150px;
  position: relative;
  top: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.about-sec .text-box .p {
  line-height: 1.4;
}

.categories-sec .categ_card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 270px;
  margin-bottom: 15px;
}

.categories-sec .categ_card .sec-img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categories-sec .categ_card .categ_link {
  width: 80%;
  height: 45px;
  border-radius: 45px;
  background-color: #fff;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 5px;
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
  font-weight: bold;
  font-size: 15px;
}

.categories-sec .categ_card .categ_link .circle {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
  background-color: var(--primary);
  color: #fff;
  position: absolute;
  right: 5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categories-sec .categ_card .categ_link .circle i {
  position: absolute;
  top: 1px;
  right: 9px;
}

.categories-sec .categ_card .categ_link:hover {
  color: #fff !important;
}

.categories-sec .categ_card .categ_link:hover .circle {
  width: calc(100% - 10px);
}

.categories-sec .categ_card:hover .sec-img {
  -webkit-transform: scale(1.1) rotate(2deg);
          transform: scale(1.1) rotate(2deg);
}

.categories-sec .vector {
  position: absolute;
  bottom: 35px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.categories-sec .vector.vector_l {
  left: -30px;
  -webkit-animation: floating-y 1s infinite alternate;
          animation: floating-y 1s infinite alternate;
}

.categories-sec .vector.vector_r {
  right: -30px;
  -webkit-animation: floatingX 1s infinite alternate;
          animation: floatingX 1s infinite alternate;
}

.deals-sec .text-box .title {
  font-size: calc(1.3vw + 35px);
}

.deals-sec .text-box .counter-box {
  background-color: #fff;
  padding: 35px;
  border-radius: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.deals-sec .text-box .counter-box .timer {
  display: inline-block;
}

.deals-sec .text-box .counter-box .timer .num {
  display: block;
  font-size: 15px;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  text-align: center;
  font-weight: 800;
  font-size: 35px;
  color: var(--primary);
}

.deals-sec .text-box .counter-box .timer .num span {
  color: #333;
  margin: 0 5px;
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.deals-sec .text-box .counter-box .timer .num:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

.deals-sec .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec {
  min-height: 100vh;
}

.features-sec .text-box {
  position: relative;
  padding: 50px;
  width: calc(100% - 80px);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  background-color: #191412;
}

.features-sec .text-box .item .icon-outer {
  width: 95px;
  height: 95px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.features-sec .text-box .item .icon-outer .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec .text-box .item .content {
  width: calc(100% - 110px);
}

.features-sec .text-box .item .content .p {
  line-height: 1.4;
}

.features-sec .text-box .bg {
  -o-object-position: right;
     object-position: right;
}

.features-sec .features_img {
  position: absolute;
  top: 0;
  left: -50px;
  height: 600px;
  border-radius: 0 20px 20px 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 60%;
}

.products-sec .nav .nav-link {
  border: 1px solid #ddd;
  border-radius: 25px;
  color: #888;
  margin: 0 5px;
  min-width: 100px;
  text-align: center;
  font-size: 12px;
}

.products-sec .nav .nav-link.active {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.products-sec .product_card {
  position: relative;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

.products-sec .product_card .sec-img {
  border-radius: 5px;
  height: 200px;
}

.products-sec .product_card .date {
  display: block;
  margin: -15px auto 0 auto;
}

.products-sec .product_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.15);
}

.feedback-sec .feedback_card {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding: 10px 25px 25px 25px;
}

.feedback-sec .feedback_card::before {
  content: '\f10d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  color: var(--primary);
  font-size: 70px;
  text-align: center;
}

.feedback-sec .feedback_card .det {
  font-size: 14px;
}

.feedback-sec .feedback_card .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback-sec .feedback_card .stars i {
  color: #888;
}

.feedback-sec .feedback_card .stars i.active {
  color: var(--primary);
}

.feedback-sec .swiper-pagination-bullet {
  background: #888;
}

.feedback-sec .shape1 {
  position: absolute;
  top: -18%;
  right: -25%;
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: floating-y 1s infinite alternate;
          animation: floating-y 1s infinite alternate;
}

.feedback-sec .shape2 {
  position: absolute;
  bottom: -18%;
  left: -25%;
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: floatingX 1s infinite alternate;
          animation: floatingX 1s infinite alternate;
}

.newsletter-sec .form-control {
  border-radius: 25px;
}

.newsletter-sec .butn {
  position: absolute;
  top: 8px;
  right: 8px;
}

.newsletter-sec .social_links a {
  color: #888;
  margin: 0 5px;
}

.newsletter-sec .shape1 {
  position: absolute;
  top: 0;
  right: -10px;
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: floatingX 1s infinite alternate;
          animation: floatingX 1s infinite alternate;
}

.newsletter-sec .shape2 {
  position: absolute;
  bottom: -18%;
  left: -33%;
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: floating-y 1s infinite alternate;
          animation: floating-y 1s infinite alternate;
}
/*# sourceMappingURL=style.css.map */