@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Fira Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

.no-pad {
  padding: 0;
}

.no-marg {
  margin: 0 auto;
}

a, a:active, a:focus {
  outline: 0;
}

/*input border */
input:focus, textarea:focus, select:focus, button:focus {
  outline: none;
}

input:focus, textarea:focus, select:focus, button:focus {
  outline: none;
}

.btn.focus, .btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/*input border */
/*Header sticky*/
#header_container {
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 98%;
  margin: 15px auto 0;
  border-radius: 11px;
}

#header_container.hide-nav {
  top: -200px;
}

.top-hegt-space {
  margin-top: 85px;
}

/*Header sticky*/

::-webkit-input-placeholder {
  color: #333;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #333;
}

.zoom:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}

.zoom {
  padding: 0;
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
  margin: 0 auto;
}

ul {
  margin: 0px auto;
  padding: 0;
}

ul li {
  list-style: none;
}

/* Works on Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 1px !important;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(179, 179, 179, 0.4) transparent;
}

#main-header-top .navbar-custom {
  background-color: #212127;
  padding: 14px 78px 14px 14px;
}

#main-header-top .navbar-custom .nav-link {
  color: #fff;
  font-size: 14px;
}

#main-header-top .navbar-custom .nav-link:hover {
  color: #ccc;
}

#main-header-top .navbar-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 18px;
}

#main-header-top .navbar-toggler {
  border-color: #fff3;
}

#main-header-top .navbar-toggler-icon {
  -webkit-filter: invert(1);
          filter: invert(1);
}

#main-header-top * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#main-header-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#main-header-top .open-btn {
  color: #fff;
  border: none;
  background: none;
  margin: 20px;
  font-weight: 600;
}

#main-header-top #menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0006;
  display: none;
  z-index: 998;
}

#main-header-top .side-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 999;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -webkit-box-shadow: 10px 0 30px #0000001a;
          box-shadow: 10px 0 30px #0000001a;
}

#main-header-top .side-drawer.active {
  left: 0;
}

#main-header-top .drawer-header {
  padding: 27px 24px 0;
  color: #fff;
  background: #131317;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
}

@media (min-width: 769px) {
  #main-header-top .side-drawer {
    overflow: visible;
  }
  #main-header-top .level-1-item {
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  #main-header-top .level-1-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 25px 6px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #ccc;
  }
  #main-header-top .level-1-item:hover > .level-2-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  #main-header-top .level-2-item:hover > .level-3-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  #main-header-top .level-2-panel {
    position: absolute;
    top: 0;
    left: 320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid var(--border);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
    pointer-events: none;
  }
  #main-header-top .level-3-panel {
    position: absolute;
    top: 0;
    left: 300px;
    width: 500px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid var(--border);
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
    pointer-events: none;
  }
  #main-header-top .level-2-item {
    border-bottom: 1px solid #f9f9f9;
  }
  #main-header-top .level-2-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 12px 25px 6px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #ccc;
  }
  #main-header-top .image-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
  }
  #main-header-top .grid-card img {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  #main-header-top .has-arrow::after {
    content: '›';
    font-size: 22px;
    color: #ccc;
  }
}

@media (max-width: 768px) {
  #main-header-top .side-drawer {
    width: 100%;
    overflow-y: auto;
  }
  #main-header-top .level-2-panel, #main-header-top .level-3-panel {
    position: static;
    display: none;
    width: 100%;
    height: auto;
    border: none;
    opacity: 1;
    visibility: visible;
  }
  #main-header-top .mobile-open > .level-2-panel, #main-header-top .mobile-open > .level-3-panel {
    display: block;
  }
  #main-header-top .level-1-item a {
    padding: 11px 25px;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #main-header-top .level-2-item a {
    padding: 11px 25px 18px 45px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #main-header-top .level-3-panel {
    padding: 11px 25px 15px 60px;
    background: #f5f5f5;
  }
  #main-header-top .grid-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
  }
  #main-header-top .grid-card img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
  }
  #main-header-top .has-arrow::after {
    content: '⌄';
    font-weight: 700;
    color: #aaa;
  }
}

#main-header-top .dropdown {
  position: relative;
  width: 200px;
}

#main-header-top .dropdown-btn {
  width: 100%;
  border-radius: 7px;
  padding: 7px 11px;
  background: #464646;
  font-size: 14px;
  color: #fff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-header-top .dropdown-btn:hover {
  background: #333;
}

#main-header-top .dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  z-index: 100;
}

#main-header-top .dropdown-menu li {
  padding: 7px 15px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #CCC;
}

#main-header-top .dropdown-menu li:hover {
  background: #f2f2f2;
}

#main-header-top .arrow {
  font-size: 12px;
}

#main-banner-slider {
  position: relative;
}

#main-banner-slider .carousel-inner {
  height: 100vh;
}

#main-banner-slider .carousel-caption {
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  right: 17%;
  bottom: 28%;
  left: 8%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
}

#main-banner-slider .carousel-caption h1 {
  font-size: 60px;
  font-weight: bold;
}

#main-banner-slider .carousel-caption p {
  margin: 0px auto;
  font-weight: 200;
  font-size: 18px;
  letter-spacing: 1px;
}

#main-banner-slider .carousel-control-next, #main-banner-slider .carousel-control-prev {
  width: 4%;
}

.com-hding-cnter {
  text-align: center;
}

.com-hding-cnter h2 {
  font-size: 45px;
}

.com-hding-cnter h3 {
  font-size: 18px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
  max-width: 93%;
}

#bee-skopp-frm {
  padding-bottom: 35px;
}

#bee-skopp-frm .product-image {
  position: relative;
  width: 100%;
}

#bee-skopp-frm .product-image img {
  width: 100%;
  display: block;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

#bee-skopp-frm .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

#bee-skopp-frm .product-image:hover .img-hover {
  opacity: 1;
}

#bee-skopp-frm .product-image:hover .img-default {
  opacity: 0;
}

#bee-skopp-frm #owl-demo-1 .item {
  margin: 31px 0px;
}

#bee-skopp-frm .contn-item-slder {
  text-align: center;
  padding: 13px 10px;
}

#bee-skopp-frm .contn-item-slder h4 {
  font-size: 25px;
}

#bee-skopp-frm .owl-carousel .owl-stage {
  margin: 0px auto;
}

#tech-fr-fit {
  background: url(../images/tech-aperfect-fit.jpg) center;
  background-size: cover;
  padding: 129px 0;
}

#tech-fr-fit .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

#tech-fr-fit .hero-title span {
  color: #2c2c2c;
  position: relative;
}

#tech-fr-fit .hero-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 4px;
  background: #e7cbb2;
  border-radius: 2px;
}

#tech-fr-fit .hero-text {
  margin-top: 24px;
  font-size: 1.05rem;
  color: #555;
  max-width: 480px;
}

#tech-fr-fit .hero-btn {
  margin-top: 32px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 1px solid #1d1d1f;
  background: transparent;
  color: #1d1d1f;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#tech-fr-fit .hero-btn:hover {
  background: #1d1d1f;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

#tech-fr-fit .mockup-card {
  border-radius: 20px;
  padding: 20px;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

#tech-fr-fit .mockup-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

@media (max-width: 768px) {
  #tech-fr-fit .hero-title {
    font-size: 2.4rem;
  }
}

#tech-fr-fit .hero-title {
  font-size: 45px;
}

#outfit-ideass {
  padding: 60px 0;
}

#outfit-ideass figure.effect-hera {
  background: #303fa9;
}

#outfit-ideass figure.effect-hera h2 {
  font-size: 158.75%;
}

#outfit-ideass figure.effect-hera h2, #outfit-ideass figure.effect-hera p {
  position: absolute;
  top: 76%;
  left: 50%;
  -webkit-transition: opacity 0.35s,-webkit-transform .35s;
  transition: opacity 0.35s,-webkit-transform .35s;
  transition: opacity 0.35s,transform .35s;
  transition: opacity 0.35s,transform .35s,-webkit-transform .35s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
}

#outfit-ideass figure.effect-hera figcaption::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 2px solid #fff;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s,-webkit-transform .35s;
  transition: opacity 0.35s,-webkit-transform .35s;
  transition: opacity 0.35s,transform .35s;
  transition: opacity 0.35s,transform .35s,-webkit-transform .35s;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
  transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
}

#outfit-ideass figure.effect-hera p {
  width: 100px;
  text-transform: none;
  font-size: 121%;
  line-height: 2;
}

#outfit-ideass figure.effect-hera p a {
  color: #fff;
}

#outfit-ideass figure.effect-hera p a:hover, #outfit-ideass figure.effect-hera p a:focus {
  opacity: .6;
}

#outfit-ideass figure.effect-hera p a i {
  opacity: 0;
  -webkit-transition: opacity 0.35s,-webkit-transform .35s;
  transition: opacity 0.35s,-webkit-transform .35s;
  transition: opacity 0.35s,transform .35s;
  transition: opacity 0.35s,transform .35s,-webkit-transform .35s;
}

#outfit-ideass figure.effect-hera:hover figcaption::before {
  opacity: 1;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
  transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
}

#outfit-ideass figure.effect-hera:hover h2 {
  opacity: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
  transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
}

#outfit-ideass figure.effect-hera:hover p i:empty {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

#outfit-ideass .grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #000;
  text-align: center;
  cursor: pointer;
}

#outfit-ideass .grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: .8;
}

#outfit-ideass .grid figure figcaption {
  padding: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#outfit-ideass .grid figure figcaption::before, #outfit-ideass .grid figure figcaption::after {
  pointer-events: none;
}

#outfit-ideass .grid figure figcaption, #outfit-ideass .grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#outfit-ideass .grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

#outfit-ideass .grid figure h2 {
  word-spacing: -.15em;
  font-weight: 300;
}

#outfit-ideass .grid figure h2 span {
  font-weight: 800;
}

#outfit-ideass .grid figure h2, #outfit-ideass .grid figure p {
  margin: 0;
  font-size: 23px;
}

#outfit-ideass .grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

#outfit-ideass .com-hding-cnter {
  margin-bottom: 32px;
}

#outfit-ideass .hero-btn {
  margin-top: 32px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 1px solid #1d1d1f;
  background: transparent;
  color: #1d1d1f;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#planet-2sectn .planet-section {
  padding: 6px 0;
}

#planet-2sectn .planet-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

#planet-2sectn .planet-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #444;
  max-width: 420px;
}

#planet-2sectn .planet-btn {
  margin-top: 30px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#planet-2sectn .planet-btn:hover {
  background: #111;
  color: #fff;
}

#planet-2sectn .planet-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #planet-2sectn .planet-title {
    font-size: 2.2rem;
  }
  #planet-2sectn .planet-section {
    padding: 60px 0;
  }
}

#editorls {
  padding: 76px 0 48px;
}

#editorls .editorial {
  padding: 100px 0;
}

#editorls .editorial-title {
  font-size: 2.8rem;
  letter-spacing: 1px;
}

#editorls .editorial-sub {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

#editorls .editorial img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#editorls .product-card {
  background: #fff;
  padding: 16px;
  text-align: center;
  border: 1px solid #ddd;
}

#editorls .product-card img {
  max-width: 100%;
}

#editorls .btn-outline-dark {
  border-radius: 0;
  font-size: .8rem;
  padding: 8px 20px;
}

@media (max-width: 768px) {
  #editorls .editorial-title {
    font-size: 2rem;
  }
  #editorls .editorial-sub {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-bottom: 10px;
  }
}

#editorls .posi-flt_2 {
  width: 151px !important;
  position: relative;
  float: right;
  top: -84px;
  right: 0px;
}

#testimoinils {
  padding: 53px 0 94px;
  background: #faf7f2;
}

#testimoinils .testimonial-title {
  font-size: 2.5rem;
  font-weight: 700;
}

#testimoinils .testimonial-sub {
  color: #666;
  max-width: 500px;
  margin: 10px auto 0;
}

#testimoinils .quote-icon {
  font-size: 8rem;
  line-height: 1;
  color: #c9a27d;
  margin-bottom: 0;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  height: 62px;
}

#testimoinils .testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  -webkit-box-shadow: 0 5px 17px #00000014;
          box-shadow: 0 5px 17px #00000014;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#testimoinils .testimonial-card:hover {
  background: #111;
  color: #fff;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

#testimoinils .testimonial-card:hover p, #testimoinils .testimonial-card:hover h6, #testimoinils .testimonial-card:hover small {
  color: #fff;
}

#testimoinils .testimonial-card:hover .quote-icon {
  color: #f3cfa8;
}

#testimoinils .avatar {
  border: 2px solid #fff;
}

#testimoinils img {
  width: auto !important;
}

#testimoinils #owl-demo-3 .item {
  margin: 22px auto;
}

footer {
  background: #212127;
  color: #fff;
  padding-bottom: 20px;
}

footer .site-footer {
  background: #faf7f2;
  padding: 80px 0 40px;
  font-size: .9rem;
}

footer .footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

footer .footer-text {
  color: #fff;
  margin-bottom: 20px;
}

footer .newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #fff;
}

footer .newsletter-form input {
  border: none;
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 14px;
}

footer .newsletter-form input:focus {
  outline: none;
}

footer .newsletter-form button {
  background: #f0ede8;
  border: none;
  font-size: 1.2rem;
  padding: 0 14px;
}

footer .footer-links {
  list-style: none;
  padding: 0;
}

footer .footer-links li {
  margin-bottom: 8px;
}

footer .footer-links a {
  color: #fff;
  text-decoration: none;
}

footer .footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .social-icons a {
  color: #fff;
  font-size: 1.1rem;
  margin-right: 15px;
}

footer .site-footer img {
  height: 32px;
}

footer .bg-copyrgt {
  border-top: 1px solid #ffffff2e;
  padding: 17px 0 0;
}

#banner-text-paras .hero {
  color: #fff;
}

#banner-text-paras .hero-content h1 {
  font-size: 55px;
}

#banner-text-paras .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000073;
}

#banner-text-paras .hero-content {
  position: relative;
  max-width: 600px;
  color: #fff;
}

#banner-text-paras .hero h1 {
  font-size: 3rem;
  font-weight: 600;
}

#banner-text-paras .price {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

#banner-text-paras .reviews {
  font-size: .9rem;
  opacity: .9;
}

#banner-text-paras .hero p {
  margin-top: 1rem;
  line-height: 1.6;
}

#banner-text-paras .btn-custom {
  background: #fff;
  color: #000;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
}

#banner-text-paras .btn-custom:hover {
  background: #f2f2f2;
  color: #000;
}

@media (max-width: 768px) {
  #banner-text-paras .hero h1 {
    font-size: 2.25rem;
  }
}

#banner-text-paras {
  position: absolute;
  top: 136px;
  left: 83px;
  z-index: 9;
  width: 45%;
}

#design-yur-tailr {
  padding: 10px 0 60px;
}

#design-yur-tailr .work-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  -webkit-box-shadow: 0 10px 30px #0000000f;
          box-shadow: 0 10px 30px #0000000f;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}

#design-yur-tailr .work-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 45px #0000001f;
          box-shadow: 0 20px 45px #0000001f;
}

#design-yur-tailr .icon-box {
  width: 80px;
  height: 80px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  font-size: 32px;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
}

#design-yur-tailr .work-card:hover .icon-box {
  background: #c9a24d;
}

#plnt-sctn {
  background: #eee;
  margin-top: 47px;
}

#plnt-sctn .planet-text_23 {
  max-width: 100%;
}

#our-items-showing {
  float: left;
  width: 100%;
  padding-bottom: 29px;
}

#our-items-showing .product-image {
  position: relative;
  width: 100%;
}

#our-items-showing .product-image img {
  width: 100%;
  display: block;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

#our-items-showing .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

#our-items-showing .product-image:hover .img-hover {
  opacity: 1;
}

#our-items-showing .product-image:hover .img-default {
  opacity: 0;
}

#our-items-showing .img-hover-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

#our-items-showing .img-hover-box img {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

#our-items-showing .img-hover-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0000008c;
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

#our-items-showing .hover-content {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: 2;
}

#our-items-showing .img-hover-box:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

#our-items-showing .img-hover-box:hover::after {
  opacity: 1;
}

#our-items-showing .img-hover-box:hover .hover-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#our-items-showing .ad-crrt {
  background: #fff;
}

#our-items-showing .ad-crrt:hover {
  background: #333;
  color: #fff;
}

#our-items-showing .collctn-texts h6 {
  line-height: 28px;
  font-size: 18px;
}

#our-items-showing .collctn-texts {
  padding: 17px 0px 0px;
}

#our-items-showing .collctn-iitem {
  position: relative;
  overflow: hidden;
  height: 472px;
  margin-bottom: 19px;
}

#our-items-showing .new-col-sticke {
  background: #333;
  color: #fff;
  position: absolute;
  top: 3px;
  left: -31px;
  z-index: 1;
  padding: 7px;
  width: 124px;
  text-align: center;
  rotate: -36deg;
}

.owl-dots {
  display: none !important;
}

.feature-divider i {
  font-size: 30px;
  margin-bottom: 16px;
}

.feature-divider h6 {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.feature-divider p {
  font-size: 15px;
  color: #666;
}

#inner-banner-cart {
  color: #fff;
  /* background: #f2ede4;*/
  background: url(../images/banner_1.jpg) center;
  padding: 60px 0 135px;
}

#cart-boxs {
  padding: 60px 0 82px;
}

#cart-boxs .cart-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  -webkit-box-shadow: 0 0px 5px 0px #00000040;
          box-shadow: 0 0px 5px 0px #00000040;
}

#cart-boxs .cart-item img {
  border-radius: 10px;
  max-width: 100%;
}

#cart-boxs .qty-box button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #e9ecef;
}

#cart-boxs .qty-box input {
  width: 45px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 500;
}

#cart-boxs .remove-btn {
  color: #dc3545;
  cursor: pointer;
  font-size: 14px;
}

#cart-boxs .summary-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  -webkit-box-shadow: 0 0px 5px 0px #00000040;
          box-shadow: 0 0px 5px 0px #00000040;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

#cart-boxs .checkout-btn {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  font-weight: 500;
  -webkit-transition: .3s;
  transition: .3s;
}

#cart-boxs .checkout-btn:hover {
  background: #333;
}

#cart-boxs .cart-iittm {
  margin: -167px auto 0;
}

#check0-out {
  padding: 65px 0;
}

#check0-out .checkout-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 12px 30px #0000000f;
          box-shadow: 0 12px 30px #0000000f;
}

#check0-out .form-control {
  border-radius: 10px;
  padding: 12px;
}

#check0-out .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #000;
}

#check0-out .custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

#check0-out .order-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

#check0-out .product-row img {
  width: 60px;
  border-radius: 8px;
}

#check0-out .place-order-btn {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 14px;
  font-weight: 500;
  -webkit-transition: .3s;
  transition: .3s;
}

#check0-out .place-order-btn:hover {
  background: #333;
}

#check0-out .step-title {
  font-weight: 600;
  margin-bottom: 16px;
}

#check0-out .cart-iittm {
  margin: -167px auto 0;
  padding: 30px;
  -webkit-box-shadow: -1px 1px 5px 3px #0000000d;
  box-shadow: -1px 1px 5px 3px #0000000d;
  border-radius: 20px;
}

#login-website {
  padding: 62px 0 84px;
  background: url(../images/bg-login.jpg) center;
  background-size: cover;
}

#login-website .login-wrapper {
  max-width: 43%;
  margin: -0px auto 0;
  background: #ffffff1f;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border-radius: 22px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px #00000030;
          box-shadow: 0 2px 12px #00000030;
}

#login-website .login-image {
  min-height: 100%;
}

#login-website .login-form {
  background: #fffffff2;
  padding: 50px;
  height: 100%;
}

#login-website .brand {
  font-weight: 800;
  letter-spacing: 2px;
}

#login-website .form-control {
  border-radius: 14px;
  padding: 9px 18px;
  border: 1px solid #ddd;
}

#login-website .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #000;
}

#login-website .input-group-text {
  background: transparent;
  border-left: 0;
  border-radius: 0 14px 14px 0;
  cursor: pointer;
}

#login-website .login-btn {
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  border-radius: 40px;
  padding: 9px 18px;
  font-weight: 600;
  letter-spacing: .5px;
  -webkit-transition: .3s;
  transition: .3s;
}

#login-website .login-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 25px #0000004d;
          box-shadow: 0 10px 25px #0000004d;
}

#login-website .forgot-link {
  font-size: 14px;
  text-decoration: none;
}

#login-website .forgot-link:hover {
  text-decoration: underline;
}

#login-website .social-btn {
  border-radius: 30px;
  padding: 9px 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  #login-website .login-image {
    display: none;
  }
  #login-website .login-form {
    padding: 30px;
  }
}

#forgt-passwrd {
  padding: 62px 0 84px;
  background: url(../images/bg-login.jpg) center;
  background-size: cover;
}

#forgt-passwrd .forgot-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  -webkit-box-shadow: 0 20px 45px #00000014;
          box-shadow: 0 20px 45px #00000014;
}

#forgt-passwrd .form-control {
  border-radius: 12px;
  padding: 14px;
}

#forgt-passwrd .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #000;
}

#forgt-passwrd .reset-btn {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  font-weight: 500;
  -webkit-transition: .3s;
  transition: .3s;
}

#forgt-passwrd .reset-btn:hover {
  background: #333;
}

#forgt-passwrd .back-link {
  text-decoration: none;
  font-size: 14px;
}

#forgt-passwrd .back-link:hover {
  text-decoration: underline;
}

#my-profile-pge .profile-sidebar {
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 0px 6px -1px #0000004f;
          box-shadow: 0 0px 6px -1px #0000004f;
  padding: 20px;
}

#my-profile-pge .profile-sidebar .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #333;
  font-weight: 500;
}

#my-profile-pge .profile-sidebar .nav-link.active {
  background: #000;
  color: #fff;
}

#my-profile-pge .profile-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  -webkit-box-shadow: 0 0px 6px -1px #0000004f;
          box-shadow: 0 0px 6px -1px #0000004f;
}

#my-profile-pge .form-control {
  border-radius: 10px;
  padding: 12px;
}

#my-profile-pge .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #000;
}

#my-profile-pge .save-btn {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
}

#my-profile-pge .save-btn:hover {
  background: #333;
}

@media (max-width: 991px) {
  #my-profile-pge .profile-sidebar {
    margin-bottom: 20px;
  }
}

#my-profile-pge .container, #my-profile-pge .container-lg, #my-profile-pge .container-md, #my-profile-pge .container-sm, #my-profile-pge .container-xl {
  margin: -153px auto 35px;
}

#menu-mega-hder {
  position: absolute;
  right: 14px;
  z-index: 4;
  top: -6px;
  /* --- SHARED ITEMS --- */
  /* Pane Control */
  /* --- MOBILE DRILL-DOWN --- */
  /* --- DESKTOP 3-COLUMN --- */
  /* Level 3 Visuals */
}

#menu-mega-hder .offcanvas-mega {
  width: 100% !important;
  border: none;
  overflow: hidden;
}

@media (min-width: 992px) {
  #menu-mega-hder .offcanvas-mega {
    width: 90% !important;
    max-width: 1200px !important;
  }
}

#menu-mega-hder .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  font-size: 1.1rem;
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #b9b9b9;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#menu-mega-hder .menu-item:hover, #menu-mega-hder .menu-item.active {
  color: #000;
  font-weight: bold;
}

#menu-mega-hder .back-btn {
  border: none;
  background: none;
  color: #999;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 10px 0;
  cursor: pointer;
}

#menu-mega-hder .pane-content {
  display: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#menu-mega-hder .pane-content.active {
  display: block;
}

@media (max-width: 991px) {
  #menu-mega-hder .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    height: 100%;
  }
  #menu-mega-hder .menu-level {
    width: 33.333%;
    height: 100%;
    padding: 20px;
    background: #fff;
  }
}

@media (min-width: 992px) {
  #menu-mega-hder .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-transform: none !important;
            transform: none !important;
  }
  #menu-mega-hder .menu-level {
    width: 33.333%;
    border-right: 1px solid var(--border-gray);
    padding: 18px;
    overflow-y: auto;
  }
  #menu-mega-hder .back-btn, #menu-mega-hder .menu-item i {
    display: none;
  }
  #menu-mega-hder .level-1-col {
    background: #f9f9f9;
  }
}

#menu-mega-hder .featured-card img {
  width: 100%;
  max-width: 280px;
  border-radius: 4px;
  margin-bottom: 15px;
  background: #f8f8f8;
}

#menu-mega-hder .clor-whit {
  color: #fff;
}

.form-mo {
  display: none;
}
/*# sourceMappingURL=main-style.css.map */