/* @import url('https://fonts.googleapis.com/css2?family=Poppins: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'); */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Questrial&display=swap');

/* font - handel-gothic */
@font-face {
  font-family: 'Calibri' sans-serif;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/calibri-bold.eot');
  src: url('../fonts/calibri-bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/calibri-bold.woff2') format('woff2'),
    url('../fonts/calibri-bold.woff') format('woff'),
    url('../fonts/calibri-bold.ttf') format('truetype'),
    url('../fonts/calibri-bold.svg') format('svg');
}


:root{
  --primary-color: #E34933;
  --primary-color-1: #E34D31;
  --light-grey: #F3F3F3;
  --dark-color: #272727;
}

body{
  font-family: "Outfit", sans-serif;
  color: #111;
  font-weight: 400;
  line-height: 1.5;
}

html{scroll-behavior: smooth;}

.calibri-font{font-family: 'Calibri', sans-serif;}

a{
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

button{
  color: inherit;
  background-color: transparent;
  border: 0;
}

p:last-child,ul,ol,figure{margin-bottom: 0;}

figure img{max-width: 100%;}

/* default css */
.font-nanum-pen-script{font-family: "Nanum Pen Script", cursive;}

.text-primary{color: var(--primary-color)!important;}
.text-primary1{color: var(--primary-color-1)!important;}

.btn{
  padding: 4px 18px 6px;
  border-radius: 5px;
  line-height: 1.5;
}

.btn-lg{
  font-size: 1rem;
  padding: 8px 32px 9px;
}

.btn.btn-primary, .btn.btn-primary:focus{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn.btn-dark, .btn.btn-dark:focus{
  background-color: #101010;
  border-color: #101010;
}

.btn img{transition-delay: 0.1s;}
.btn:hover img{filter: contrast(0) brightness(300%);}

.btn-outline-primary{
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary:hover{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-rounded{border-radius: 100px;}

.text-btn img{
  width: 12px;
  margin-left: 2px;
}
.text-btn:hover{color: var(--primary-color-1);}

.bg-primary{background-color: var(--primary-color)!important;}
.bg-light{background-color: var(--light-grey)!important;}
.bg-grey{background-color: #F9F9F9;}
.bg-primary-light{background-color: #FFF4F4;}

.border-primary{border-color: var(--primary-color)!important;}
.border-grey{border-color: #C8C8C8;}

.section-space{
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-space-md{
  padding-top: 65px;
  padding-bottom: 65px;
}

.heading{
  color: var(--dark-color);
  font-size: 2.5rem;
  font-weight: 600;
}
.heading:not(.text-white) span{color: #8C8C8C;}
.heading + p{color: #313131;}

.heading-lg{font-size: 1.8rem;}
.heading-lg span{
  color: #797979;
  font-size: 1rem;
}

/* curved-bg */
.curved-bg-wrapper{
  position: relative;
  background-color: var(--dark-color);
  overflow-x: clip;
  z-index: 1;
}
.curved-bg{
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: -1;
}
.curved-bg svg{
  display: block;
  /* height: 265px; */
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* social-media */
.social-media{display: flex;}
.social-media li:not(:last-child){margin-right: 8px;}
.social-media li a{
  color: var(--dark-color);
  display: block;
  background-color: #fff;
  text-align: center;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  line-height: 25px;
}

/*  */
.list-style-img-1 li{
  font-size: 1.1rem;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.list-style-img-1 li:last-child{margin-bottom: 0;}
.list-style-img-1 li .icon{
  background: url(../images/icons/bottom-right-curved-arrow-icon.svg) no-repeat center / contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 8px;
  left: 0;
}

/* tab-design-1 */
.tab-design-1 .tabs{text-align: center;}
.tab-design-1 .tabs ul{
  background-color: #EFEFEF;
  padding-left: 0;
  display: inline-flex;
  justify-content: center;
  border-radius: 30px;
}
.tab-design-1 .tabs ul .nav-link{
  display: block;
  padding: 10px 35px;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 30px;
}
.tab-design-1 .tabs ul .nav-link.active{
  color: #fff;
  background-color: #2D2D2D;
}
.tab-design-1 .tab-content{}
/* accordion */
.accordionDesign-1 .accordion-item{
  border: 1px solid var(--dark-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.accordionDesign-1 .accordion-item + .accordion-item{
  margin-top: 20px;
}
.accordionDesign-1 .accordion-button{
  color: #383838;
  font-size: 1.05rem;
  background-color: transparent;
  padding-left: 2.8rem;
  margin-bottom: 0;
  box-shadow: none;
}
.accordionDesign-1 .accordion-button::after{
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  background: none;
  background-color: #2D2D2D;
  width: 21px;
  height: 21px;
  line-height: 21px;
  position: absolute;
  left: 14px;
  border-radius: 100%;
  margin: 0;
}
/* .accordionDesign-1 .accordion-item .accordion-button:not(.collapsed){
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
} */
.accordionDesign-1 .accordion-button:not(.collapsed)::after{
  transform: rotate(-45deg);
}
.accordionDesign-1 .accordion-body{
  padding-top: 0;
  padding-left: 2.8rem;
}
.accordionDesign-1 .accordion-item:hover{
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.accordionDesign-1 .accordion-item:hover .accordion-button{
  color: #fff;
}
.accordionDesign-1 .accordion-item:hover .accordion-button::after{
  background-color: #B72C19;
}

/* basic-table */
.basic-table tr td{background-color: transparent;}
.basic-table > :not(caption) > * > *{padding: .1rem .3rem;}

/* form */
.form-control, .form-select{border-color: #565656;}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(227, 73, 51, 0.3);
}
.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select{
  min-height: auto;
  height: 3.2rem;
}
.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select,
.form-floating > label{
  padding: 0.8rem .75rem;
}
.form-floating > .form-select ~ label {
  transform: scale(.7) translateY(-.8rem) translateX(.25rem);
}
.form-floating .form-control + label{color: var(--dark-color);}
.form-floating .form-control:required + label::after{
  content: "*";
  color: #FF0000;
}
textarea.form-control{height: 120px!important;}

/* form-light */
.form-light .form-control, .form-light .form-select{border-color: #9E9E9E;}
.form-light .form.border{border-color: #9E9E9E!important;}
.form-light .form-control ~ label{color: #878787;}
.form-light .form-select::placeholder{color: #878787;}
.form-light .form-select::-moz-placeholder{color: #878787;}
.form-light .form-select::-webkit-input-placeholder{color: #878787;}

.custom-checkbox{display: block;}
.custom-checkbox input{
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.custom-checkbox label{
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}
.custom-checkbox label::before{
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #111;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 5px;
}
.custom-checkbox input + label::after{
  content: "";
  display: none;
  background-color: var(--primary-color);
  position: absolute;
  top: 6px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked + label::after{display: block;}
.custom-checkbox input:checked + label::before{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* column-divide */
.column-divide .column{position: relative;}
.column-divide .column:not(:last-child)::after{
  content: "";
  background: linear-gradient(180deg, #FFFFFF 2.4%, #515151 48.86%, #FFFFFF 100%);
  position: absolute;
  width: 1px;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

/* simple-modal */
.simple-modal .modal-content{
  border: 0;
  border-radius: 10px;
}
.modal-backdrop.show{opacity: 0.5;}
.modal .modal-header{
  position: relative;
  padding: 0.7rem 1.9rem 1rem 1.2rem;
}
.modal .btn-close{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: transparent;
  color: #294B65;
  text-align: center;
  opacity: 1;
  padding: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #D9D9D9;
  z-index: 1;
}
.modal .modal-header, .modal .modal-footer{border: 0;}
.modal .modal-body{padding: 0.4rem 1.2rem;}
.modal .modal-body .form-control{
  border-color: #294B65;
}
.modal .modal-body .form-control:required + label::after{
  content: "*";
  color: #FF0000;
  margin-left: 2px;
}
.modal .modal-footer{padding: 1rem 1.2rem;}
.modal .modal-footer .btn{
  border-color: #294B65;
  padding: 8px 25px 8px;
}
.modal .modal-footer .btn-primary{
  background-color: #45B155;
}
.modal .modal-footer .btn-secondary{background-color: #294B65;}
/* pagination */
.pagination{
  column-gap: 10px;
}
.pagination .page-item{}
.pagination .page-link{
  text-align: center;
  width: 38px;
  height: 38px;
  color: #323232;
  background-color: #F0F0F0;
  border: 0;
  border-radius: 0!important;
}
.pagination .page-link:hover{
  color: #fff;
  background-color: var(--primary-color);
}
.pagination .page-link:hover i{color: #fff;}
.pagination .page-link:focus{box-shadow: none;}

.categoryDropdown .select2-container{width: 100%!important;}
.categoryDropdown .select2-container .selection .select2-selection{
  height: auto;
  background-color: #E34933;
  border: 1px solid #B82D19;
  border-radius: 0;
}
.categoryDropdown .select2-container .selection .select2-selection span.select2-selection__rendered{
  color: #fff;
  text-align: start;
  padding: 6px 30px 6px 15px;
  overflow-x: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
.categoryDropdown .select2-container .selection .select2-selection span.select2-selection__rendered .select2-selection__placeholder{color: #fff;}
.categoryDropdown .select2-container .selection .select2-selection .select2-selection__arrow b{display: none;}
.categoryDropdown .select2-container .selection .select2-selection .select2-selection__arrow{
  height: 100%;
  top: 0;
  right: 0;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.categoryDropdown .select2-container .selection .select2-selection .select2-selection__arrow::after{
  content: "\f107";
  font-family: 'Font Awesome 6 Free';
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.select2-container .select2-dropdown{
  background-color: #F6F6F6;
  border: 1px solid #B8B8B8;
  border-radius: 0;
}
.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option{
  padding: 6px 15px;
}
.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--selected{
  background-color: #f1c4c0;
}
.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted{
  background-color: var(--primary-color-1);
}

/*  */
.search-box {
  position: relative;
  min-width: 350px;
}
.search-box input {
  background-color: #F4F4F4;
  font-size: 15px;
  width: 100%;
  height: 45px;
  padding: 10px 35px 10px 15px;
  border-radius: 5px;
}
.search-box input:focus{box-shadow: none;}
.search-icon {
  text-align: center;
  width: 35px;
  height: 100%;
  line-height: 42px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}





/* top-box */
header{
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
header .top-box{
  color: #101010;
  background-color: #ADADAD;
}
header .top-box img{
  height: 16px;
  vertical-align: sub;
}
header .top-box a{color: #101010;}

/* navbar */
header .navbar{background-color: rgba(39, 39, 39, 0.9);}
header .navbar .navbar-brand img{
  width: 200px;
  transition: all 0.3s ease-in-out;
}
header .navbar-nav .nav-link{
  position: relative;
  transition: all 0.3s ease-in-out;
}
header .navbar-nav .nav-link, header .navbar-nav .nav-link.active{color: #fff;}
/* dropdown */
header .navbar .nav-item.dropdown{}
header .navbar-nav .nav-link.dropdown-toggle{}
header .navbar-nav .dropdown-menu{
  background: linear-gradient(278.74deg, #FF6B56 1.17%, #E34933 98.83%);
  padding: 5px 10px;
  border-radius: 0 0 0 30px;
  margin-top: 0;
  border: 0;
}
header .navbar-nav .dropdown-menu .dropdown-item{
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  color: #fff;
  font-weight: 500;
  padding: 0.4rem 0.5rem;
}
header .navbar-nav .dropdown-menu .dropdown-item .icon img{
  width: 18px;
  margin-top: -4px;
}
header .navbar-nav .dropdown-menu .dropdown-item:hover{}
header .navbar-nav .nav-link.show{color: #fff;}
header .navbar-nav .nav-link.dropdown-toggle::after{
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 0.7rem;
  font-weight: 600;
  position: relative;
  top: 1px;
  margin-left: 4px;
  border: 0;
}

/* side-buttons */
header .navbar .side-buttons ul li > a,
header .navbar .side-buttons ul li > button{
  display: flex;
  justify-content: center ;
  align-items: center;
  padding: 5px 6px;
}
header .navbar .side-buttons ul li > button{background-color: transparent; border: none;}
header .navbar .side-buttons ul li.search-block .dropdown-toggle::after{display: none;}
header .navbar .side-buttons ul li.search-block .dropdown-menu.show{
  min-width: 18rem;
  padding: 0;
}
header .navbar .side-buttons ul li.search-block .dropdown-menu.show form{
  width: 100%;
  display: inline-flex;
  column-gap: 5px;
}
header .navbar .side-buttons ul li.search-block .dropdown-menu.show form input{
  border: none;
  padding: 0.6rem .45rem 0.6rem .75rem;
}
header .navbar .side-buttons ul li.search-block .dropdown-menu.show form input:focus{box-shadow: none;}
header .navbar .side-buttons ul li.search-block .dropdown-menu.show form .btn{padding: 6px 10px 6px;}

header .navbar .side-buttons ul li .cart-icon{
  position: relative;
  padding: 5px 10px 5px 2px;
}
header .navbar .side-buttons ul li .badge{
  padding: 0;
  width: 20px;
  height: 20px;
  line-height: 18px;
  display: inline-flex;
  justify-content: center;
  position: absolute;
  top: -7px;
  right: -4px;
}

/* user-dropdown */
header .navbar .side-buttons ul li.user-dropdown{
  position: relative;
  transition: all 0.3s ease-in-out;
}
header .navbar .side-buttons ul li.user-dropdown *{transition: all 0.3s ease-in-out;}
header .navbar .side-buttons ul li.user-dropdown a.user-toggle {
  display: flex;
  position: relative;
  align-items: center;
  color: #fff;
  /* padding-right: 15px; */
  text-decoration: none;
  white-space: nowrap; 
}
/* header .navbar .side-buttons ul li.user-dropdown a.user-toggle .icon{
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2px;
} */
header .navbar .side-buttons ul li.user-dropdown .sub-menu {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  padding: 7px;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0);
  list-style: none;
  min-width: 180px;
  z-index: 100;
}
header .navbar .side-buttons ul li.user-dropdown:hover .sub-menu{
  display: block;
}
header .navbar .side-buttons ul li.user-dropdown .sub-menu:hover{
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
header .navbar .side-buttons ul li.user-dropdown .sub-menu li{
  position: relative;
  padding-left: 32px;
}
header .navbar .side-buttons ul li.user-dropdown .sub-menu li a {
  position: relative;
  display: block;
  padding: 7px 10px;
  color: #212121;
  text-decoration: none;
}
header .navbar .side-buttons ul li.user-dropdown .sub-menu li a:hover{color: var(--primary-color);}
header .navbar .side-buttons ul li.user-dropdown .sub-menu li .icon{
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #FFE0DA;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}
header .navbar .side-buttons ul li.user-dropdown .sub-menu li .icon img{
  height: 16px;
  filter: brightness(0);
}
header .navbar .side-buttons ul li.user-dropdown .sub-menu li:hover .icon img{filter: brightness(100%);}

/*  */
header .navbar-toggler{
  border: 0;
  padding: 0.2rem 0.5rem;
}
header .navbar-toggler .navbar-toggler-icon{
  color: #fff;
  font-size: 1.4rem;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar-toggler:focus{box-shadow: none;}



/* fixed */
header.fixed{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
header.fixed .top-box{
  display: none;
}
header.fixed .navbar .navbar-brand img{
  width: 140px;
}




/* banner slider */
.banner-slider .swiper-slide{
  height: 750px;
  padding-top: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-slider .swiper-slide .caption{
  color: #fff;
}
.banner-slider .swiper-slide .caption .title{
  font-family: "Epilogue", sans-serif;
  font-size: 45px;
}
.banner-slider .swiper-slide .caption .title span{
  color: #E86F30;
}
.banner-slider .swiper-slide .caption .btn{width: auto;}

/* products-category-section */
.products-category-section .product-category{
  position: relative;
  background-color: #F7F7F8;
  padding: 20px 25px 100px;
  height: 100%;
  z-index: 1;
}
.products-category-section .product-category .title{
  color: #8C8C8C;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
}
.products-category-section .product-category p{color: #313131;}
.products-category-section .product-category .link-btn{
  color: inherit;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.products-category-section .product-category .link-btn:hover{
  color: var(--primary-color);
  text-underline-offset: 2px;
}
.products-category-section .product-category figure{
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: -1;
}
.products-category-section .product-category.category-2 figure{width: 46%;}
.products-category-section .product-category.category-3 figure{width: 55%;}

/* btn-wrap */
.btn-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-wrap button[class*="swiper-button"]{
  width: 35px;
  height: 35px;
  background-color: var(--light-grey);
  border-radius: 6px;
  position: static;
  margin: 0 10px;
}
.btn-wrap button[class*="swiper-button"] .swiper-navigation-icon{
  color: var(--dark-color);
  width: 10px;
}
.btn-wrap button[class*="swiper-button"]:hover{background-color: var(--primary-color-1);}
.btn-wrap button[class*="swiper-button"]:hover .swiper-navigation-icon{color: #fff;}


/* video-section */
.video-section .curved-bg{
  top: -75px;
  z-index: -1;
}
.video-section .curved-bg svg{
  height: 305px;
}
.video-section .heading{font-size: 3rem;}
.video-section .viedo-wrap{
  display: inline-block;
  max-width: 100%;
  padding: 30px 50px;
  border: 1px solid #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

/* product-box */
.product-box{
  position: relative;
  text-align: center;
  height: 100%;
  background-color: var(--light-grey);
  border-radius: 31px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-box .content{
  padding: 15px 15px;
  flex: 0 0 auto;
}
.product-box .btn-list{
  background-color: #E3E3E3;
  padding: 4px 3px;
  border-radius: 0 21px 0 0;
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 1;
}
.product-box .btn-list a, .product-box .btn-list button{
  display: block;
  padding: 3px 5px;
}
.product-box .btn-list a img, .product-box .btn-list button img{width: 22px;}
.product-box .product-img{
  flex: 1 0 auto;
  display: grid;
  align-content: center;
  min-height: 280px;
}
.product-box .title{
  font-size: 1.1rem;
  font-weight: 500;
}
.product-box .product-img img{
  width: 100%;
  /* height: 100%;
  mix-blend-mode: multiply;
  -o-object-fit: cover;
  object-fit: cover; */
}
.product-box .btn{
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  background-color: #E9E9E9;
  padding: 10px 20px;
  border-radius: 0;
}
.product-box .btn .icon{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 24px;
  padding-right: 1px;
  border-radius: 100%;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}
.product-box .btn .icon img{max-width: 60%;}
/*  */
.product-box .btn-block{
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  background-color: #E9E9E9;
  border-radius: 0;
  z-index: 1;
}
.product-box .btn-block .btn{padding-right: 55px;}
.product-box .btn-block .icon{
  position: absolute;
  top: 50%;
  right: calc(50% - 70px);
  transform: translate(-50%, -50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 24px;
  /*padding-right: 1px;*/
  border-radius: 100%;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.product-box .btn .icon img{max-width: 60%;}
.product-box:hover .btn-list{background-color: var(--primary-color);}
.product-box:hover .btn-list a img, .product-box:hover .btn-list button img{filter: contrast(0) brightness(300%);}
.product-box:hover .btn{
  color: #fff;
  background-color: var(--primary-color);
}
.product-box:hover .btn .icon,
.product-box .btn-block .icon:hover{
  background-color: #D43620;
}

/* .products-section .product-box .product-img{height: 300px;} */

.bestsellerProduct-slider .swiper-slide{height: auto;}
.bestsellerProduct-slider .swiper-slide{}


/* research-innovation-section */
.research-innovation-section p{
  color: #474747;
}

/* infographic-1 */
.infographic-1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.infographic-1 li{
  flex: 0 0 calc(100% / 4);
  position: relative;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.infographic-1 li *{
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.infographic-1 li .icon{
  display: block;
  width: 140px;
  height: 140px;
  line-height: 140px;
  background-color: var(--primary-color);
  border-radius: 100%;
  margin: 0 auto;
}
.infographic-1 li .icon img{
  width: 58%;
  transform: scale(1);
}
.infographic-1 li p{
  width: 60%;
  font-size: 1.05rem;
  text-transform: uppercase;
  margin: 0 auto 10px;
}
.infographic-1 li:not(:last-child)::after{
  content: "";
  width: 180px;
  background: url(../images/icons/horizontal-dashed-line.svg) no-repeat center / contain;
  height: 12px;
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  right: -28%;
}
.infographic-1 li:hover .icon img{
  transform: scale(1.04);
}

/* -- footer -- */
footer{margin-top: 15px;}
footer .container.section-space{
  padding-top: 40px;
  padding-bottom: 60px;
}
footer .curved-bg{
  top: -115px;
  z-index: -1;
}
footer .curved-bg svg{height: 280px;}
footer a{color: #fff;}
footer a:hover{color: #E86F30;}
footer ul{
  list-style: none;
  padding-left: 0;
}
/* logo-box */
footer .logo-box{
  position: relative;
  height: 100%;
  background: url(../images/filafox-icon-light-img.svg) no-repeat center top / 100%;
  padding: 30px 0 10px 10px;
}

footer .logo-box img {
  margin-top: 20px;
  width: 85px;
}
footer .widget .title{
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* links */
footer .widget .links li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
footer .widget .links li::before{
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/icons/circle-icon-outline.svg) no-repeat center / contain;
  position: absolute;
  top: 8px;
  left: 0;
}
footer .widget .links li a{display: block;}
/* contact-info */
footer .widget .contact-info li{
  position: relative;
  padding-left: 25px;
  margin-bottom: 14px;
}
footer .widget .contact-info li .icon{
  position: absolute;
  top: 5px;
  left: 0;
}
/* copyright-block */
footer .copyright-block{padding: 12px 0;}
footer .font-nanum-pen-script{
  font-size: 1.3rem;
  vertical-align: middle;
}

/* back-to-top */
.back-to-top{
  cursor: pointer;
  color: #fff;
  text-align: center;
  opacity: 0;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  position: fixed;
  right: 40px;
  bottom: 80px;
  background-color: rgba(0, 0, 0, 0.35);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  z-index: 10;
}
.back-to-top:hover{background-color: rgba(0, 0, 0, 1);}

/* breadcrumb */
.breadcrumb{margin-bottom: 0;}
.breadcrumb .breadcrumb-item{
  color: inherit;
  font-weight: 300;
  line-height: normal;
}
.breadcrumb .breadcrumb-item a{
  color: inherit;
  opacity: 1;
}
.breadcrumb .breadcrumb-item.active{font-weight: 700;}


/* Scrollbar CSS */
.content-scroll {
  scrollbar-width: auto;
  scrollbar-color: var(--primary-color) #D9D9D9;
}
/* Chrome, Edge, and Safari */
.content-scroll::-webkit-scrollbar {width: 8px;}
.content-scroll::-webkit-scrollbar-track {background: #D9D9D9;}
.content-scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 3px solid #ffffff;
}

/* -- Shop page -- */
.shop-page .title-style{font-size: 1.4rem;}
.filter-options{
  padding: 16px 30px 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.filter-options .title-style{
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 15px;
}
/* accordion */
.filter-options .accordion-item:not(:last-child){margin-bottom: 10px;}
.filter-options .accordion-item .accordion-button{
  font-size: 1.1rem;
  font-weight: 400;
  padding: 8px 25px 8px 0px;
  margin-bottom: 0;
}
.filter-options .accordion-item .accordion-button::after{
  content: "\2b";
  color: var(--primary-color);
  font-family: "FOnt Awesome 6 Free";
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  top: 10px;
  right: 2px;
}
.filter-options .accordion-item .accordion-button:not(.collapsed)::after{content: "\f068";}
.filter-options .accordion-item .custom-checkbox{
  font-weight: 300;
  margin-bottom: 6px;
}
.filter-options .accordion-item .custom-checkbox:last-child{margin-bottom: 0;}
.filter-options .accordion-item .accordion-body.content-scroll{
  max-height: 200px;
  overflow-y: auto;
}
/*  */
.filter-btn{
  background-color: #fff;
  border: 1px solid #5B5B5B;
  border-radius: 5px;
}
.filter-btn:hover img{filter: none!important;}
.filter-btn:hover{
  color: #fff;
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}
/* filters-wrapper */
.filters-wrapper .filter-options{
  color: #fff;
  display: block!important;
  padding: 45px 25px 20px;
  box-shadow: none;
}
.filters-wrapper .filter-options .title-style{display: none;}
.filters-wrapper .filter-options .accordion-item:not(:last-child){
  padding-bottom: 15px;
  border-bottom: 1px solid #686868;
  margin-bottom: 15px;
}
.filters-wrapper .filter-options .accordion-item .accordion-button::after{color: #fff;}
.filters-wrapper .filter-options .custom-checkbox{flex: 0 0 auto;}
.filters-wrapper .filter-options .custom-checkbox label::before{border-color: #fff;}
.filters-wrapper .filter-options .custom-checkbox input:checked + label::after{
  background-color: #fff;
  border-color: var(--dark-color);
}
.filters-wrapper .filter-options .custom-checkbox input:checked + label::before{
  background-color: #fff;
}

/* filter-modal */
.filter-modal .modal-content{
  position: relative;
  background-color: #3C3C3C;
  border-radius: 12px;
}
.filter-modal .modal-content .btn-close{
  font-size: 1.1rem;
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  color: #fff;
  text-align: center;
  opacity: 1;
  padding: 0;
  width: 45px;
  height: 35px;
  border-radius: 100%;
}
.filter-modal .modal-content .btn-close:focus{box-shadow: none;}
.filter-modal + .modal-backdrop.show{opacity: 0;}
/*  */
.shop-page{}


/* -- blog-page -- */
.blog-page .blog-block{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
.tab-links ul li > *{transition: all 0.3s ease-in-out;}
.blog-page .blog-block figure.blog-img{
  text-align: center;
  background-color: #F4F4F4;
  position: relative;
  min-height: 260px;
}
.blog-page .blog-block figure.blog-img .date{
  font-size: 0.9rem;
  display: inline-grid;
  grid-template-columns: 0.2fr 1fr;
  column-gap: 7px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  line-height: normal;
  padding: 6px 12px;
  border-radius: 0 0 15px 0;
}
.blog-page .blog-block .blog-title{font-size: 1.3rem;}
.blog-page .blog-block:not(.blog-block-lg):hover{box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.08);}
/*  */
.blog-page .blog-block-lg{
  background-color: #FFF6F6;
  border: 1px solid var(--primary-color);
}
.blog-page .blog-block-lg .blog-title{font-size: 1.5rem;}
.blog-page .blog-block-lg figure.blog-img{min-height: 350px;}
.blog-page .page-numbers{color: #323232;}

/* -- blog-details-page -- */
.blog-details-page{}
.blog-details-page .blog-title{font-size: 1.8rem;}
.blog-details-page figure{
  min-height: 250px;
  background-color: #EEEEEE;
  margin: 15px 0;
}
.blog-details-page .blog-img{min-height: 400px;}
.blog-details-page p{margin-bottom: 0.4rem;}
.blog-details-page h2{
  font-size: 1.4rem;
  margin-top: 35px;
}
.blog-details-page h3{font-size: 1.3rem;}
.blog-details-page h4{font-size: 1.2rem;}
.blog-details-page h5{font-size: 1.1rem;}
.blog-details-page ul li:not(:last-child), .blog-details-page ol li:not(:last-child){margin-bottom: 3px;}
.blog-details-page ul, .blog-details-page ol{
  padding-left: 20px;
  margin-bottom: 6px;
}
.blog-details-page ul{padding-left: 12px;}
.blog-details-page ul li::marker{font-size: 0.8rem;}
.blog-details-page ol li ul li{list-style-type: disc;}
/* share-options */
.share-options{
  max-width: 18rem;
  border: 0;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.08);
  margin-top: 5px;
  animation: fadeIn 0.3s both ease-in-out;
}
.share-options ul{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px 6px;
}
.share-options ul li{flex: 0 0 calc(50% - 12px);}
.share-options ul li a{
  text-align: center;
  color: var(--dark-color);
  display: inline-block;
  padding: 5px;
}
.share-options ul li a .icon{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #E3E3E3;
  border-radius: 100%;
  margin-right: 6px;
}
.share-options ul li a:hover{color: var(--primary-color);}
.share-options ul li a:hover i{color: var(--primary-color);}



/* -- contact-page -- */
.contact-info-section .column{
  height: 100%;
  text-align: center;
  padding: 25px 25px;
  border-radius: 20px;
  border: 1px solid #101010;
}
.contact-info-section .column .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2F2F2;
  color: var(--primary-color);
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 100%;
}

/* contact-details-section */
.contact-details-section .curved-bg{
  top: -75px;
  z-index: -1;
}
.contact-details-section .curved-bg svg{
  height: 305px;
}
.contact-details-section a{
  color: #fff;
}
.contact-details-section .details-column ul li{
  font-size: 1.15rem;
  font-weight: 300;
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
}
.contact-details-section .details-column ul li .icon{
  position: absolute;
  top: 6px;
  left: 0;
}
.contact-details-section .form-column{
  border-left: 1px dashed #fff;
}
.contact-details-section .form-column .form-control{border-color: transparent;}
.contact-details-section .form-column .form-control:focus{border-color: var(--primary-color);}
/* map-section */
.map-section iframe{
  border-radius: 57px;
}

/* -- about-page -- */
.about-page .column-design-1 .content{
  padding-left: 65px;
}
.about-page .column-design-1 .title{
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
}
.about-page .column-design-1 .title .number{
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: -68px;
  padding: 0 15px;
}
.about-page .column-design-1 .title .number::after{
  content: "";
  width: 80%;
  height: 8px;
  background-color: #FFE2DD;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


/* -- research-page -- */
.tab-design-2 .nav{
  max-width: 100%;
  border: 1px solid #B8B8B8;
  row-gap: 5px;
  border-radius: 19px;
}
.tab-design-2 .nav .nav-link{
  color: #212121;
  background-color: transparent;
  padding: 6px 25px;
  border-radius: 50px;
}
.tab-design-2 .nav .nav-link.active{
  color: #fff;
  background-color: var(--primary-color);
  font-weight: 600;
}
.tab-design-2 .tab-content{min-height: 300px;}
.tab-design-2 .tab-content h3{font-size: 1.7rem;}
.tab-design-2 .tab-content h4{font-size: 1.5rem;}
.research-page .content-section .column{
  padding: 0 15px 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
}
.research-page .content-section .column:last-child{
  border-bottom: 0;
  margin-bottom: 0;
}
.research-page .content-section p{
  color: #474747;
  font-size: 1.05rem;
}
.research-page .content-section{
  position: relative;
  z-index: 1;
}
.research-page .content-section::after{
  content: "";
  background: url(../images/bg/bg-img-1.png) no-repeat center / contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.research-page .about-research{
  background-color: #FF6852;
  padding: 30px 30px;
  border-radius: 35px;
}

/* -- knowladge-center-page -- */
.tab-design-3 .nav{column-gap: 10px;}
.tab-design-3 .nav .nav-link{
  color: #212121;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: transparent;
  padding: 5px 15px;
  border: 1px solid #222;
}
.tab-design-3 .nav .nav-link.active{
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color-1);
}
/* column-group-1 */
.column-group-1 .column{}
.column-group-1 .column figure{
  padding: 6px;
  border: 1px solid var(--primary-color);
  overflow: hidden;
}
.column-group-1 .column figure img{
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 200px;
  border-radius: 12px;
}
.column-group-1 .column p{
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}
/* column-group-2 */
.column-group-2 .column .title{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  text-align: left;
}
.column-group-2 .column .title .icon{
  width: 28px;
  height: 28px;
  background-color: var(--primary-color);
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.column-group-2 .column .title .icon img{max-width: 70%;}

.info-column-1{
  background-color: #EDEDED;
  border-radius: 17px;
}

/* -- material page -- */
.tab-design-4 .nav{
  background-color: #fff;
  border: 1px solid var(--dark-color);
  display: flex;
  border-radius: 100px;
  /* justify-content: ; */
}
.tab-design-4 .nav .nav-link{
  position: relative;
  flex: 1 0 auto;
  color: #323232;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: transparent;
  padding: 5px 15px;
  border-radius: 100px;
  z-index: 1;
}
.tab-design-4 .nav .nav-link::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 100px;
  z-index: -1;
}
.tab-design-4 .nav .nav-link.active{color: #fff;}
.tab-design-4 .nav .nav-link.active::after{
  background: linear-gradient(180deg, #E35933 0%, #ED932D 77.4%);
  transform: translate(-50%, -50%) scale(1.06);
}
.tab-design-4 .nav .nav-link:first-child::after{left: 49%;}
.tab-design-4 .nav .nav-link:last-child::after{left: 51%;}
/* cta-section-1 */
.bg-img{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cta-section-1{
  position: relative;
  z-index: 1;
}
.cta-section-1::before{
  content: "";
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 49.9%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.cta-section-1 .heading-lg span{font-size: inherit; color: inherit;}


/* -- privacy-policy-page -- */
/* tab-links */
.tab-links{
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.tab-links ul{
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.4);
  gap: 25px;
  padding: 0 5px;
  margin-top: 8px;
}
.tab-links ul li{
  flex: 0 0 calc(100% / 4 - 25px);
  text-align: center;
  position: relative;
  padding-top: 35px;
  margin-top: -8px;
  transition: all 0.3s ease-in-out;
}
.tab-links ul li > *{transition: all 0.3s ease-in-out;}
.tab-links ul li::before, .tab-links ul li::after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.tab-links ul li::before{
  background-color: #fff;
  border: 4px solid #A4A4A4;
  width: 15px;
  height: 15px;
  border-radius: 100%;
}
.tab-links ul li::after{
  width: 1px;
  height: 45px;
  background: linear-gradient(90deg, #A4A4A4 0%, #A4A4A4 100%);
  z-index: -1;
}
.tab-links ul li a{
  color: inherit;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(270deg, #A4A4A4 16.35%, #A4A4A4 61.54%, #A4A4A4 91.93%);
  padding: 2px 12px;
}
.tab-links ul li.active a, .tab-links ul li:hover a{background: linear-gradient(270deg, #F09B33 16.35%, #E35A31 61.54%, #E35A31 91.93%);}
.tab-links ul li.active::before, .tab-links ul li:hover::before{border-color: var(--primary-color-1);}
.tab-links ul li.active::after, .tab-links ul li:hover::after{background :linear-gradient(90deg, #EA7833 0%, #E76D32 100%);}

/*  */
.privacy-policy-page .content-block{
  background: url(../images/bg/bg-img-2.jpg) no-repeat center / cover;
  padding: 35px 45px;
}
.sectionBlobk{scroll-margin-top: 250px;}


/* -- faq-page -- */
.faq-page .tab-design-1 .tab-content .column{
  position: relative;
}
.faq-page .tab-design-1 .tab-content .column:not(:last-child)::after{
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1px;
  background: linear-gradient(180deg, #F1F1F1 0%, #2D2D2D 50%, #F1F1F1 100%);
}

/* -- product-details -- */
/*  */
.simpleAccordion .accordion-item{
  border-radius: 0;
  border: 0;
}
.simpleAccordion .accordion-button{
  background-color: #fff;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 500;
  box-shadow: none;
}
.simpleAccordion .accordion-button::after{
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  color: var(--dark-color);
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
}
.simpleAccordion .accordion-button:not(.collapsed)::after{
  content: "\f078";
  transform: none;
}
.simpleAccordion .accordion-body{padding-top: 5px;}
/*  */
.product-details-page{padding: 60px 0;}
.product-details-page .product-title{
  color: var(--primary-color-1);
  font-size: 1.5rem;
}
.product-details-page .product-subtitle {
  font-weight: 600;
  color: var(--dark-color);
}
.product-details-page .price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 10px;
}
.product-details-page .sku {
  color: #555;
  margin-bottom: 10px;
}
/* productSlider */
.productSlider{
  /* background-color: #fff; */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.productSlider .swiper-wrapper:empty{height: 400px!important;white-space: nowrap;}
.productSliderThumb .swiper-wrapper:empty{height: 100px!important;}
.productSlider .swiper-slide {
  /* height: 500px; */
  height: auto;
  background-size: cover;
  background-position: center;
}
.productSliderThumb{
  box-sizing: border-box;
  padding: 23px 10px;
  margin: 0 -10px;
}
.productSliderThumb .swiper-slide{
  cursor: pointer;
  background-color: #D9D9D9;
  width: 25%;
  height: 140px;
  opacity: 0.6;
  display: grid;
  align-content: center;
}
.productSliderThumb .swiper-slide-thumb-active{opacity: 1;}
.productSlider .swiper-slide img, .productSliderThumb .swiper-slide img{
  display: block;
  width: 100%;
  /* height: 100%;
  text-align: center;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center; */
}
.productSliderThumb div[class*="swiper-button-"]{
  width: 20px;
  height: 20px;
  font-size: 0.6rem;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--primary-color);
  margin: 0 0;
  top: 50%;
  transform: translateY(-50%);
}
.productSliderThumb div[class*="swiper-button-"] .swiper-navigation-icon{display: none;}
/* sidebar */
.sidebar{
  position: sticky;
  top: 90px;
}
/* product-details */
.product-details-page .product-information strong{font-weight: 700;}
.product-details-page .product-information ul{
  list-style-type: none;
  padding-left: 0.2rem;
}
.product-details-page .product-information ul > li{
  position: relative;
  padding-left: 12px;
  margin-bottom: 5px;
}
.product-details-page .product-information ul > li::before{
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-size: 4px;
  font-weight: 600;
  position: absolute;
  top: 10px;
  left: 0;
}
.product-details-page .product-information ul ul{margin-top: 6px;}
.product-details-page .product-information ul ul li{padding-left: 0;}
.product-details-page .product-information ul ul li::before{display: none;}
.product-details-page .product-information .content-block{
  border-top: 1px solid rgba(147, 147, 147, 0.4);
  padding: 20px;
}
.product-details-page .product-information .content-block:first-child{
  padding-top: 0;
  border-top: 0;
}
.product-details-page .product-information .content-title {
  color: #e74c3c;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
/*  */
.product-details-page .product-information .simpleAccordion .accordion-body{padding: 0;}

/* quick-view-layout */
.quick-view-moal .modal-content{border: none;}
.quick-view-moal .modal-body{padding: 1.2rem 1.2rem;}
.quick-view-moal .btn-close{
  color: var(--dark-color);
  top: 10px;
  right: 10px;
  transform: none;
}
.quick-view-layout .title{font-size: 1.4rem;}
.quick-view-layout .product-details {padding: 20px 10px;}
.quick-view-layout .product-details .options .radio-group label{padding: 4px 14px;}
.quick-view-layout div[class*="swiper-button"]{
  color: var(--dark-color);
  width: 30px;
  height: 30px;
  background-color: #D9D9D9;
  border-radius: 100%;
}
.quick-view-layout div[class*="swiper-button"] .swiper-navigation-icon{display: none;}
.quick-view-layout div[class*="swiper-button"]:hover{
  color: #fff;
  background-color: var(--primary-color-1);
}



/*  */
.grid-block-1 {
  display: flex;
  flex-wrap: wrap;
  width: calc();
  gap: 0 20px;
}
.block-box {
  flex: 0 0 calc(100% / 2 - 10px);
  border: 1px solid #B3B3B3;
  background: #fff;
}
.block-title {
  background: #fdeaea;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 10px;
  border-bottom: 1px solid #B3B3B3;
}
.block-text {
  padding: 15px;
  text-align: center;
}
/* Video Placeholder */
.video-box{
  background-color: #D9D9D9;
  height: 260px;
  color: #999;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  margin-top: 15px;
}
/*  */
.fs-lg{font-size: 1.1rem;}
.text-grey1{color: #656565;}
.text-grey2{color: #7E7E7E;}
.product-details {
  background: #fff;
  padding: 20px 30px;
}
.product-details .price-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.product-details .current-price {
  font-size: 23px;
  font-weight: 700;
  color: #e53935;
}
.product-details .old-price {
  font-size: 17px;
  color: #565656;
  text-decoration: line-through;
}
.product-details .discount {
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
  line-height: normal;
  padding: 3px 8px;
  border-radius: 50px;
  font-weight: 400;
}
/* Options */
.product-details .options .radio-group {
  display: flex;
  gap: 15px;
}
.product-details .options .radio-group label {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 7px 16px;
  cursor: pointer;
  transition: 0.2s;
}
.product-details .options .radio-group label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-details .options .radio-group label:has(input[type="radio"]:checked) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.product-details .options .radio-group label:hover {
  border-color: var(--primary-color);
}
/*  */
.product-details .quantity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.product-details .quantity-header label {
  font-weight: 500;
  font-size: 14px;
  color: #222;
}
.in-stock{color: #316942;}
.btn.out-of-stock{
  line-height: 1.7;
  border: none!important;
}
/*  */
.product-details .qty-control {
  display: flex;
  align-items: center;
  gap: 15px;
}
.product-details .qty-control .qty-wrap {
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dark-color);
}
.product-details .qty-control .fx-qty-btn {
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  background-color: transparent;
  transition: background 0.3s;
}
.product-details .qty-control .fx-qty-input {
  width: 50px;
  text-align: center;
  border: none;
  outline: none;
  background: #fff;
}
/* Warranty */
.product-details .warranty{
  background: #f8fff8;
  border: 1px solid #58894E;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
}
.product-details .warranty .title{color: #539E44;}
.product-details .buttons-group{
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.product-details .buttons-group .btn{
  font-size: 1.1rem;
  padding: 6px 20px 8px;
}
/* Share */
.product-details .share {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-details .share a{color: #707070;}
/* .product-details .share span {
  font-weight: 500;
  font-size: 14px;
}
.product-details .share-btn {
  background: #e53935;
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
} */
/*  */
.feature-grid{}
.feature-grid .feature-box{
  background-color: #FAFAFA;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 0 0 auto;
  height: 100%;
  outline: 1px solid #B3B3B3;
  outline-offset: -10px;
  border-radius: 18px;
  text-align: center;
  padding: 20px 22px 20px;
  opacity: 1;
  transition: all 0.3s ease;
}
.feature-grid .feature-box.active{
  outline-color: var(--primary-color);
  background-color: #FFF5F3;
}
.feature-grid .feature-title{
  font-size: 0.95rem;
  line-height: normal;
  margin-bottom: 8px;
}
.feature-grid .feature-box a {
  color: #007bff;
  text-decoration: underline;
  font-weight: 500;
}
.feature-grid .feature-box img {
  max-width: 100%;
  height: 93px;
  object-fit: contain;
  margin: 10px auto 0;
}
.feature-grid .feature-box:hover {
  background-color: #FFEBE8;
  outline-color: var(--primary-color);
  transform: translateY(-3px);
}
/*  */
.contact-section {
  background-color: #f8f9fa;
  /* padding: 3rem 0; */
}
/*  */
.breadcrumb-design {
  position: relative;
  background-color: #FF5B43;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}
.breadcrumb-design::after{
  content: "";
  width: 95%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.breadcrumb-design .fa{font-size: 0.8rem;}
/*  */
.inline-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.inline-links li{
  position: relative;
  font-size: 0.8rem;
  line-height: normal;
  text-align: center;
  flex: 0 0 auto;
}
.inline-links li:not(:last-child)::after{
  content: "";
  width: 1px;
  height: 100%;
  background-color: #101010;
  position: absolute;
  top: 0;
  right: 0;
}
.inline-links li a{
  color: #101010;
  display: block;
  padding: 1px 13px;
}
.inline-links li:last-child{
  border-right: none;
}
/*  */
.order-summary-card{
  /* height: 96%; */
  background-color: #F5F5F5;
  border: 1px solid #F8F8F8;
  border-radius: 10px;
}
/* Subtotal, Shipping, Total rows */
.order-total-row{
  display: flex;
  justify-content: space-between;
}
.order-total-row .label, .order-total-row .value{
  font-size: 1.2rem;
  font-weight: 400; 
  color:black;
}
.summary-divider{
  border-color: #787878;
  margin: 0.6rem auto;
}
.scrollbar-box{
  max-height: 350px;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 2rem;
}
/* Each product row */
.order-item{
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}
.order-item:last-child{margin-bottom: 0rem;}
.order-item .product-img{
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.order-item .product-img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.order-item li{
  color: var(--primary-color-1);
}
.order-item .qty-text{
  font-size: 14px;
  color: #686868;
}
.order-item .qty-text > span{color: var(--primary-color-1);}
.order-item .item-name{
  width: 100%;
  padding: 0px 15px;
}
.order-item .item-name > p{
  font-size: 1.02rem;
  line-height: normal;
  margin-bottom: 0;
}
.order-item .item-name > p span{
  color: var(--dark-color);
}
.order-item .item-price{
  font-size: 1.15rem;
  flex-shrink: 0;
  font-weight: 600;
}
/* Cart Section */
/* .fx-cart-main{padding: 10px;} */
.fx-cart-main .fx-cart-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color-1);
}
.fx-cart-main .fx-cart-table th {
  font-size: 1.06rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 14px 10px;
}
.fx-cart-main .fx-cart-table td {
  /* text-align: left; */
  /* padding: 14px 10px; */
  color:var(--primary-color-1);
}
.fx-cart-main .qty-box .btn{
  font-size: 1.1rem;
  color: var(--primary-color-1);
  border: none;
  padding: 4px 10px 6px;
}
.fx-cart-main .qty-box .delete-item{
  padding: 4px 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.fx-cart-main .qty-box .delete-item img{width: 18px;}
.fx-cart-main .fx-item-info{
  display: flex;
  align-items: center;
  gap: 15px;
}
.fx-cart-main .fx-item-info .img-box{
  width: 120px;
  background-color: #f6f6f6;
}
.fx-cart-main .fx-item-info .img-box img{width: 100%;}
.fx-cart-main .fx-item-name{
  color: #101010;
  text-transform: uppercase;
}
.fx-cart-main .fx-item-name span{
  color:var(--primary-color-1);
  display: block;
}
/* shipping-card */
.shipping-card{
  background-color: var(--primary-color);
  border-radius: 10px;
}
.shipping-card .line{
  border-width: 3px;
  background-color: #FFFFFF;
  opacity : 1!important;
}
.shipping-card p a{
  color: #fff;
  text-decoration: underline;
}
/* empty-cart-wrap */
.empty-cart-wrap .title{color: var(--primary-color-1);}
.empty-cart-wrap .btn{background-color: var(--primary-color-1);}



/*  */
/* .menu-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 15px;
  margin-bottom:12px;
  text-decoration:none;
  color:#333;
  font-weight:600;
  border-radius:8px;
  transition:.3s;
}
.menu-link i{font-size:16px;}
.menu-link:hover, .menu-link.active{
  background:#ff5722;
  color:#fff;
} */

/* MAIN */
/* .main-area{
  flex:1;
  padding:30px;
}
.section{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  margin-bottom:25px;
}
.section h2{
  font-size:22px;
  margin-bottom:20px;
  border-bottom:2px solid #ff5722;
  padding-bottom:8px;
} */
/* PROFILE INFO */
/* .profile-row{
  display:flex;
  margin-bottom:15px;
  font-size:15px;
}
.profile-row strong{
  width:160px;
  color:#444;
} */
/* LOGOUT BUTTON */
/* .logout{
  background:#dc3545;
  color:white;
  padding:12px 30px;
  display:inline-block;
  border-radius:8px;
  text-decoration:none;
  margin-top:10px;
}
.logout:hover{background:#b02a37;} */

/* -- User admin style -- */
.content-wrap .page-title{
  color: #E14332;
  font-size: 1.2rem;
  font-weight: 700;
}
.content-wrap .card-simple{
  display: block;
  background-color: #EBF2F8;
  padding: 15px 25px;
  border: 1px solid rgba(41, 75, 101, 0.5);
  border-radius: 5px;
}
.content-wrap .card-simple .title{
  display: inline-block;
  padding: 0 35px 0 0;
  position: relative;
  font-size: 1.15rem;
}
.content-wrap .card-simple .title .icon{
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  background-color: var(--primary-color-1);
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
.content-wrap .card-simple .sub-title{
  color: #2F536F;
  font-size: 1.05rem;
  line-height: normal;
}
/* my order */
.order-table-box {
  overflow: hidden;
  margin-bottom: 40px;
}
.order-table-box .order-head {
  color: #fff;
  background:#426077;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.order-table-box .order-id,
.order-table-box .order-total{
  font-size:1.2rem;
  font-weight:700;
}
.order-table-box .order-date,
.order-table-box .order-payid{font-size: 0.95rem;}
.order-table-box .order-body {
  background:#EBF2F8;
  padding:10px 20px;
}
.order-table-box .product-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #426077;
  padding: 14px 0;
}
.order-table-box .product-row:last-child {border-bottom:none;}
.order-table-box .product-img{
  background-color: #FBFBFB;
  padding: 6px;
  border: 1px solid #426077;
  border-radius: 5px;
}
.order-table-box .product-img img {
  width: 70px;
  height: 70px;
  object-fit:cover;
}
.order-table-box .product-info {
  flex:1;
  padding-left:15px;
}
.order-table-box .product-info .product-name {
  font-size: 1.1rem;
  margin-bottom:4px;font-weight:600;
}
.order-table-box .product-info .category {
  color:#fff;
  font-size: 0.86rem;
  line-height: normal;
  background: var(--primary-color-1);
  padding: 2px 12px;
  border-radius:25px;
}
.order-table-box .product-info .qty {
  font-size: 0.9rem;
  margin-top:4px;
}
.order-table-box .product-price {
  color: #212121;
  font-size: 1.1rem;
  font-weight: 600;
}
.order-table-box .order-footer {
  padding: 20px 0px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.order-table-box .status {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  background-color: #EBF8ED;
  color: #212121;
  padding: 8px 18px;
  border-radius:30px;
}
.order-table-box .status.delivered{background:#e7f7ed;}
.order-table-box .btn-warning{
  color: #212121;
  background-color: #FFD58D;
  padding: 8px 22px;
  border: 0;
}
.order-table-box .btn-warning:hover{
  color: #fff;
  background-color: #ff5722;
}
/* pagination-group */
.pagination-group .count-info{color: #323232;}
.pagination-group .pagination{
  column-gap: 10px;
}
.pagination-group .pagination .page-item .page-link{
  background-color: #fff;
  color: #323232;
  border-color: transparent;
  border-radius: 6px;
}
.pagination-group .pagination .page-item.active .page-link{
  color: #3F6A8B;
  font-weight: 700;
  border-color: #3F6A8B;
}
.pagination-group .pagination .page-item:first-child .page-link,
.pagination-group .pagination .page-item:last-child .page-link{
  color: #3F6A8B;
  border-color: #3F6A8B;
}

/*  */
.admin-header{
  background: linear-gradient(270deg, #FAFAFA 20.19%, #EBF2F8 43.75%, #2B4C66 100%);
}
.admin-header .navbar{padding: 15px 25px;}
/* .profile-card{
  text-align:center;
  border-radius: 12px;
  background-color: #ff7a18;
  color:white;
}
.profile-card .profile-img{
  width:90px;
  height:90px;
  border-radius: 100%;
  background-color: #fff;
  border: 3px solid #fff;
}
.profile-card p{
  font-size:13px;
  opacity:0.9;
}
.profile-card .badge{
  background-color: var(--light-grey);
  font-weight: 600;
  padding: 6px 12px;
}
.menu-sidebar .list-group{border-radius: 6px;}
.menu-sidebar .list-group .list-group-item{
  color: #2D2D2D;
  border: 0;
  border-bottom: 1px solid #e9e9e9;
}
.menu-sidebar .list-group .list-group-item:last-child{border-bottom: 0;}
.menu-sidebar .list-group .list-group-item:hover{color: var(--dark-color);} */

/* .profile-information .card{
  color: #2D2D2D;
  border: 0;
  border-radius: 10px;
}
.profile-information .card .card-header{
  border: 0;
  color: #fff;
  background: linear-gradient(135deg,#ff5a1f,#ff8c42);
} */

/*  */
.admin-footer{
  flex: 0 0 auto;
  padding: 20px 25px;
}
.admin-footer p{
  line-height: normal;
  padding: 0;
}








/* -- Responsive -- */
@media only screen and (max-width: 1399px){
  .products-category-section .product-category .title{font-size: 2rem;}
}

/* @media only screen and (min-width: 1200px){} */

@media only screen and (min-width: 1199px){
  /* .filter-options{margin-bottom: 100px;}
  .filter-options .accordion-item .accordion-button{pointer-events: none;} */
  /* .filter-options .accordion-item .accordion-collapse{display: block;} */

  .product-details-page .product-information .simpleAccordion:first-child .accordion-item .accordion-button{pointer-events: none;}
  .product-details-page .product-information .simpleAccordion:first-child .accordion-item .accordion-button::after{display: none;}
  .product-details-page .product-information .simpleAccordion:first-child .accordion-item .accordion-collapse{display: block;}
}

@media only screen and (min-width: 992px) {
  header .navbar-nav .nav-item .nav-link::before{
    content: "";
    width: 100%;
    height: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 1px solid #F1A92D;
    border-bottom: 1px solid #F1A92D;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  header .navbar-nav .nav-item:hover .nav-link::before,
  header .navbar-nav .nav-item .nav-link.active::before{
    height: 60%;
    opacity: 1;
  }
  header .navbar .nav-item.dropdown{
    cursor: pointer;}
  header .navbar-nav .nav-link.dropdown-toggle{
    pointer-events: none;
  }
  header .navbar .nav-item.dropdown:hover .dropdown-menu{display: block;}
  
  .filter-options{
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
  }
  /* .filter-options .accordion-item .accordion-button::after{content: "\f068";} */

  .side-options{
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    margin-bottom: 180px;
  }
}

@media only screen and (max-width: 1199px){
  header .navbar .navbar-brand img{width: 170px;}

  .infographic-1 li p{
    font-size: 0.9rem;
    width: 70%;
  }
  .infographic-1 li .icon{
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .infographic-1 li:not(:last-child)::after{
    width: 100px;
    right: -23%;
  }
}

@media only screen and (max-width: 991px) {   
  .heading{font-size: 2.1rem;}
  .categoryDropdown .select2-container{
    width: 100%!important;
    max-width: 280px!important;
  }

  header .navbar .navbar-brand img{width: 180px;}
  /* navbar-collapse */
  header .navbar .navbar-collapse{
    background-color: rgba(39, 39, 39, 1);
    width: 100%;
    position: absolute;
    left: 0;
    margin-top: -1px;
    z-index: 10;
  }
  header .navbar .navbar-collapse .navbar-nav{
    padding: 10px 25px 20px;
  }
  header .navbar-nav .dropdown-menu{border-radius: 0 0 0 0;}

  .product-box .content{padding: 10px 10px;}
  .product-box .btn{padding: 6px 15px;}
  /* .swiper .product-box .product-img{height: 240px;} */

  .banner-slider .swiper-slide{
    position: relative;
    height: 550px;
    z-index: 1;
  }
  .banner-slider .swiper-slide::after{
    content: "";
    background: linear-gradient(280deg, rgba(255, 255, 255, 0) 7.93%, rgba(94, 94, 94, 0.799337) 66.81%, #363636 87.57%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .banner-slider .swiper-slide .caption{
    position: relative;
    z-index: 1;
  }
  .banner-slider .swiper-slide .caption .title{
    font-size: 30px;
  }
  .banner-slider .swiper-slide .caption .btn{
    color: #fff;
    background-color: var(--primary-color-1);
  }
  .banner-slider .swiper-slide .caption .btn img{filter: contrast(0) brightness(300%);}
  .banner-slider .swiper-slide .caption .btn:hover{
    background-color: var(--dark-color);
    border-color: var(--dark-color);
  }

  .products-category-section .product-category.category-2 figure{width: 36%;}
  .products-category-section .product-category.category-3 figure{width: 45%;}

  .infographic-1 li p{width: 100%;}
  .infographic-1 li .icon{
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .infographic-1 li:not(:last-child)::after{
    width: 60px;
    right: -18%;
  }

  footer .logo-box{
    text-align: center;
    background: url(../images/filafox-icon-light-img.svg) no-repeat center top / 41%;
    padding: 0px 0 40px;
  }
  footer .container.section-space {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  
  .tab-design-2 .nav{
    display: inline-flex;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    border-radius: 50px;
  }
  .tab-design-2 .nav .nav-link{
    flex: 0 0 auto;
    padding: 8px 25px;
  }
  .tab-design-2 .tab-content h3{font-size: 1.5rem;}

  .about-page .column-design-1 .title{font-size: 1.6rem;}
  .about-page .column-design-1 .title .number{
    font-size: 1.7rem;
    left: -60px;
  }
  .about-page .column-design-1 .content{padding-left: 55px;}

  .blog-page .blog-block .blog-title{font-size: 1.1rem;}
  .blog-page .blog-block-lg .blog-title{font-size: 1.3rem;}
  .blog-page .blog-block figure.img .date{
    column-gap: 5px;
    padding: 4px 8px;
  }
  .blog-details-page .blog-title{font-size: 1.6rem;}

  .contact-details-section .form-column{
    border-left: 0;
    border-top: 1px dashed #fff;
  }

}

/* @media only screen and (min-width: 768px){} */

@media only screen and (max-width: 768px) {
  .usage-grid-single {
    flex-direction: column;
  }
  .usage-box {
    width: 100%;
    border-right: 1px solid #ddd;
  }
  
  .dashboard{flex-direction:column;}
}

@media only screen and (max-width: 767px){
  .section-space {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .list-style-img-1 li{font-size: 1rem;}
  .list-style-img-1 li .icon{
    width: 11px;
    height: 11px;
  }
  .heading{font-size: 1.8rem;}
  .heading-lg{font-size: 1.4rem;}
  .banner-slider .swiper-slide{height: 430px;}
  .order-head{padding: 12px 15px;}
  .order-body{padding: 5px 15px;}

  .video-section .heading{font-size: 2.5rem;}
  
  footer .curved-bg{top: -80px;}
  footer .curved-bg svg{height: 165px;}
  
  .privacy-policy-page .content-block{padding: 15px 25px;}
  .sectionBlobk{scroll-margin-top: 350px;}
  
  .product-box .btn{font-size: 1rem;}
  .product-box .btn .icon{
    width: 22px;
    height: 22px;
    line-height: 19px;
  }
  /* .swiper .product-box .product-img {height: 200px;} */
  
  .infographic-1{row-gap: 15px;}
  .infographic-1 li{
    flex: 0 0 calc(100% / 2);
  }
  .infographic-1 li p{
    font-size: 1rem;
    width: 70%;
  }
  .infographic-1 li:nth-child(2)::after{display: none;}
  
  .tab-design-2 .tab-content h3{font-size: 1.2rem;}
  .research-page .content-section .column{
    padding: 0 10px 10px;
    margin-bottom: 20px;
  }
  .research-page .about-research{
    padding: 20px 20px;
    border-radius: 25px;
  }
  
  .column-divide .column:nth-child(even)::after{display: none;}

  .blog-details-page .blog-title{font-size: 1.4rem;}
  .blog-details-page h2{
    font-size: 1.3rem;
    margin-top: 28px;
  }
  .blog-details-page h3{font-size: 1.2rem;}
  .blog-details-page h4{font-size: 1.1rem;}
  .blog-details-page h5{font-size: 1.05rem;}
  
  .contact-details-section .details-column ul li{font-size: 1rem;}
}

@media only screen and (max-width: 575px){
  .fs-2{font-size: 1.4rem!important;}
  .fs-4{font-size: 1.1rem!important;}
  .heading{font-size: 1.4rem;}
  .btn{padding: 2px 15px 4px;}

  header .navbar .navbar-brand{margin-right: 0;}

  header .top-box{font-size: 0.82rem;}
  header .top-box img{height: 12px;}
  header .navbar-nav .nav-link{padding: 0.8rem 0;}
  header .navbar .navbar-brand img {width: 150px;}
  header.fixed .navbar .navbar-brand img{width: 120px;}

  .banner-slider .swiper-slide .caption .title{font-size: 25px;}
  .banner-slider .swiper-slide .caption .btn{font-size: 0.9rem;}

  .tab-links ul{justify-content: center;}
  .tab-links ul li{flex: 0 0 auto;}
  
  .infographic-1 li p{width: 100%;}

  .banner-slider .swiper-slide .caption{
    display: flex;
    flex-wrap: wrap;
  }
  .products-category-section .product-category .title{font-size: 1.8rem;}
  .products-category-section .product-category{
    padding: 16px 20px 10px;
  }
  .products-category-section .product-category figure{
    width: 90%!important;
    height: 180px;
    position: relative;
    bottom: 0;
    margin-top: -30px;
    margin-left: auto;
  }
  .products-category-section .product-category.category-2 figure{height: 300px;}

  .product-box .title{font-size: 1rem;}

  .video-section .viedo-wrap{padding: 20px 30px;}

  /* .swiper .product-box .product-img{height: 300px;} */

  .breadcrumb .breadcrumb-item{font-size: 0.9rem;}
  
  /* footer{margin-top: 50px;} */
  footer .curved-bg {top: -60px;}
  
  .column-divide .column:not(:last-child){
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  .column-divide .column:not(:last-child)::after{
    content: "";
    display: block!important;
    background: linear-gradient(90deg, #FFFFFF 2.4%, #515151 48.86%, #FFFFFF 100%);
    position: absolute;
    width: 80%;
    height: 1px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .about-page .column-design-1 .title{font-size: 1.4rem;}
  .about-page .column-design-1 .title .number{
    left: 0;
    position: relative;
  }
  .about-page .column-design-1 .content{padding-left: 0;}

  .accordionDesign-1 .accordion-button{
    font-size: 1rem;
    padding: 0.8rem 0.8rem 0.8rem 2.3rem;
  }
  .accordionDesign-1 .accordion-button::after{left: 8px;}
  .accordionDesign-1 .accordion-body{padding: 0rem 0.8rem 0.8rem 1.2rem;}
  
  .blog-page .blog-block figure.img .date{font-size: 0.8rem;}
  .blog-details-page .blog-title{font-size: 1.3rem;}
  .blog-details-page .btn.dropdown{
    font-size: 0.9rem;
    line-height: normal;
  }

  .back-to-top{
    right: 20px;
    bottom: 85px;
  }
}

@media only screen and (max-width: 400px){
  header .top-box{font-size: 0.66rem;}
  header .top-box img{
    height: 10px;
    margin-right: 2px!important;
  }
  header .navbar .navbar-brand img {width: 120px;}
  header.fixed .navbar .navbar-brand img{width: 100px;}
}








/* ----------------- new style ----------------------*/
.option-btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 6px 15px;
  border-radius: 2px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.option-btn.active,
.option-btn:hover {
  background-color: white;
  color: black;
  border-color: #ccc;
}

.quantity-box {
position: relative;
width: 140px;
}

.custom-input {
height: 45px;
width: 100%;
text-align: center;
font-weight: 600;
color: #333;
font-size: 16px;
padding: 0 40px; 
box-shadow: none;
}

.qty-btn {
position: absolute;
top: 0;
bottom: 0;
width: 38px;
border: none;
background: none;
font-size: 22px;
font-weight: bold;
color: black;
cursor: pointer;
transition: all 0.2s ease;
}
.qty-btn.minus {
left: 5px;
}
.qty-btn.plus {
right: 5px;
}
.qty-btn:hover {
color: black;
border-radius: 50%;
}

.btn-more-text {
background: none;
border: none;
color: #000000;
font-family: "Outfit", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 23px;
line-height: 23px;
letter-spacing: 0;
text-transform: capitalize;
text-align: center;
display: block;
width: 100%;
cursor: pointer;
transition: color 0.3s ease;
}
.btn-more-text:hover {
color: #000000;
}

.btn-add-cart{
  background: black;
    color: #fff;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;  
}
.btn-buy {
  background: #4f46e5;
  color: #fff;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
}

.btn-more {
  background: var(--primary-color);
  color: #fff;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
}

.tab-design-1 .nav-tabs {
  border: none;
  justify-content: flex-start;
  margin-top: 40px;
}

.tab-design-1 .nav-tabs .nav-link {
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  border-bottom: 2px solid transparent;
}

.tab-design-1 .nav-tabs .nav-link.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-more-text {
  background: none;
  border: none;
  color:#000000;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-more-text:hover {
  color: #c13e29;
  text-decoration: underline;
}

a i:hover {color: #c13e29;}

.download-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 18px;
  color: #000;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.download-box:hover {
  background: #f9f9f9;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.download-text {
  font-size: 16px;
  text-transform: capitalize;
}

.download-icon {
  background-color: var(--primary-color-1);
  color: #fff; 
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.recently-viewed {
  font-family: 'Outfit', sans-serif;
}
.download-icon i {
  color: #fff;   
  font-size: 20px; 
  transition: 0.3s ease;
}

.product-card {
position: relative;
border-radius: 20px;
text-align: center;
width: 260px;
padding: 15px 10px 0 10px;
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
}

.product-card.inactive .icon-strip,
.product-card.inactive .buy-btn {
opacity: 0;
visibility: hidden;
height: 0;
overflow: hidden;
}

.product-card img {
width: 100%;
height: 220px;
border-radius: 10px;
object-fit: contain;
margin-top: 10px;
}

.product-name {
font-weight: 500;
margin: 10px 0;
font-size: 15px;
}

.icon-strip {
position: absolute;
top: 0;
right: 0;
background: var(--primary-color-1);
border-radius: 0 20px 0 20px;
padding: 8px 6px;
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
transition: 0.3s;
}

.icon-btn {
background: transparent;
color: #fff;
border: none;
font-size: 14px;
}

.buy-btn {
border: none;
border-radius: 0 0 20px 20px;
width: 100%;
padding: 8px 0;
font-weight: 600;
color: white;
background: var(--primary-color-1);
transition: all 0.3s;
}

.buy-btn.black-btn {
background: #000;
}

.product-card.grey-theme {background: #f6f6f6;}

.fx-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.fx-delete{
  font-size: 13px;
  cursor: pointer;
  margin-top: 2px;
}

.fx-order-summary {
  flex: 1 1 28%;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: fit-content;
}

.fx-order-summary h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;   
  color: #e34d31;
}

.fx-summary-line {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}
.fx-delete {
  color: #9E9E9E;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.fx-checkout-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.fx-checkout-btn:hover {
  background: var(--primary-color-1);
}

.fx-recently-viewed {
  margin-top: 50px;
}

.fx-recently-viewed h3 {
font-weight: 700;
font-size: 18px;
margin-bottom: 20px;
}

.fx-recent-products {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.fx-product-card {
position: relative;
background: #fff;
width: 220px;
border-radius: 18px;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
text-align: center;
padding: 10px;
transition: 0.3s;
}

.fx-product-card:hover {
transform: translateY(-5px);
}

.fx-icon-strip {
position: absolute;
top: 0;
right: 0;
background: var(--primary-color-1);
border-radius: 0 15px 0 15px;
padding: 6px 5px;
display: flex;
flex-direction: column;
gap: 4px;
color: #fff;
}

.fx-icon-strip i {
font-size: 14px;
cursor: pointer;
}

.fx-product-card img {
width: 100%;
height: 180px;
object-fit: contain;
margin-top: 15px;
}

.fx-name {
font-size: 15px;
margin: 10px 0;
}

.fx-buy-btn {
border: none;
border-radius: 0 0 15px 15px;
padding: 8px 0;
width: 100%;
color: #fff;
font-weight: 600;
cursor: pointer;
}

.fx-buy-btn.red {
background: var(--primary-color-1);
}

.fx-buy-btn.black {
background: #000;
}

.fx-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

/* Title & Subtitle */
.product-title {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}
.product-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}
.quantity label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

/*  */
.tab-design-1 .nav-tabs {
  border-bottom: 2px solid #eee;
}
.tab-design-1 .nav-tabs .nav-link {
  border: none;
  background: none;
  color: #555;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s;
}
.tab-design-1 .nav-tabs .nav-link.active {
  color: #e74c3c;
  border-bottom: 3px solid #e74c3c;
  font-weight: 600;
}

/* Highlight Boxes */
.highlight-box {
  border: 1px solid #f1c4c0;
  background: #fdeceb;
  border-radius: 8px;
  padding: 15px 12px;
  text-align: center;
  font-size: 15px;
  height:100%;
}
.highlight-box h6 {
  font-weight: 600;
  color: #e74c3c;
}

/* Key Features List */
.key-features ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.key-features li {
  margin-bottom: 6px;
}

/* Download Section */
.download-section {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  margin-top: 25px;
}
.download-box {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.download-box:hover {background: #f4f8ff;}

.toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.toggle-label:hover {color: #e53935;}
.toggle-icon {transition: transform 0.3s ease;}

/* Rotate icon when active */
.toggle-label.active .toggle-icon {transform: rotate(180deg);}

.section-title6 {
  font-size: 1.25rem;  
  font-weight: 600;
  text-align: center;  
  letter-spacing: 0.5px; 
  color: #222;      
}

.highlight-num {
  font-size: 18px;
  padding-left: 4px;
}

/* ------------ Center the login box inside banner section  -------------*/
.page-wrapper{
  display: flex;
  height: 100vh;
  flex-direction: column;
  background: url(../images/bg/user-admin-bg-img.png) no-repeat center / cover;
}
.login-wrapper {
  width: 100%;
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
.login-wrapper a{color: #FF765C;}
.login-wrapper a:hover{text-decoration: underline;}
.login-wrapper .btn{
  color: #294B65;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 20px 5px;
}
.login-wrapper .btn:hover{text-decoration: none;}
.login-wrapper .btn-light:hover{
  color: #fff;
  background-color: #FF765C;
  border-color: #FF765C;
}
/* login-box */
.login-wrapper .login-box {
  width: 420px;
  padding: 25px 35px;
  border-radius: 40px;
  background: #294B65;
  /* backdrop-filter: blur(12px); */
  color: #fff;
  text-align: center;
}
.login-wrapper .login-box.box-lg{
  width: 600px;
  border-radius: 28px;
}
.login-wrapper .login-box.box-sm{
  width: 320px;
  padding: 35px 35px;
}
.login-wrapper .login-box .login-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.login-box .form-control::placeholder{color: #fff;}
.login-box .form-control::-moz-placeholder{color: #fff;}
.login-box .form-control::-webkit-input-placeholder{color: #fff;}
.login-box .form-control:focus{box-shadow: none; border-color: #FF765C;}
.login-box .form-control {
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  border-color: #D7D7D7;
  background: transparent;
}
.login-box .form-floating > .form-control, .login-box .form-floating > .form-select{
  min-height: auto;
  height: 2.9rem;
}
.login-box .form-floating > .form-control, .login-box .form-floating > .form-select,
.login-box .form-floating > label{
  padding: 0.6rem .65rem;
}
.login-box .form-floating > .form-control:focus,
.login-box .form-floating > .form-control:not(:placeholder-shown){
  padding: 0.9rem .65rem 0.2rem;
}
.login-box .form-floating > .form-control:focus ~ label,
.login-box .form-floating > .form-control:not(:placeholder-shown) ~ label{
  padding: 0.9rem .65rem 0.6rem;
  transform: scale(.7) translateY(-.6rem) translateX(.15rem);
}
.login-box .form-floating .form-control + label{color: #fff;}
.login-box .form-floating .form-control:required + label::after{
  content: "*";
  color: #FF6868;
  margin-left: 2px;
}
/* login-form */
.login-box .login-form .form-floating > .form-control{
  border: 0;
  border-bottom: 1px solid #D7D7D7;
  border-radius: 0;
}
.login-box .login-form .form-floating > .form-control,
.login-box .login-form .form-floating > label{
  padding-left: 0;
  padding-right: 0;
}
.login-box .login-form .form-floating > .form-control:focus,
.login-box .login-form .form-floating > .form-control:not(:placeholder-shown){
  padding-left: 0;
  padding-right: 0;}
.login-box .login-form .form-floating > .form-control:focus ~ label,
.login-box .login-form .form-floating > .form-control:not(:placeholder-shown) ~ label{
  padding-left: 0;
  padding-right: 0;
  transform: scale(.7) translateY(-.6rem) translateX(.08rem);
}
/* otp-fields */
.login-wrapper .otp-fields{
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 8px;
}
.login-wrapper .otp-fields input{
  background-color: #fff;
  color: var(--dark-color);
  font-size: 1.1rem;
  flex: 0 0 calc(100% / 6 - 10px);
  padding: 6px 6px;
  border-radius: 10px;
  -moz-appearance: textfield;
  appearance: textfield;
}
/* side-img */
.login-wrapper .side-img{max-width: 680px;}
.login-wrapper .side-img.side-img-sm{max-width: 600px;}
.login-wrapper .login-box.box-lg + .side-img{max-width: 580px;}

.login-box .login-msg {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}
.login-box .login-error {
  background: rgba(255, 0, 0, 0.2);
  color: #ffd3d3;
  border-left: 4px solid red;
}



/* ---------- Responsive ------------ */
@media (max-width: 768px) {
  .fx-container{flex-direction: column;}
  .fx-order-summary{width: 100%;}
  .fx-product-card{width: 48%;}
}

@media (max-width: 576px) {
  .warranty {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  .warranty h3 {
    font-size: 14px;
    text-align: center;
  }

  .warranty p {
    font-size: 12px;
    text-align: center;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .add-cart, .buy-now {
    width: 90%;
    font-size: 14px;
    padding: 10px;
  }

  .share {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
  }

  .share span {
    font-size: 13px;
  }

  .share-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .tab-design-1 .nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }

  .highlight-box {
    height: auto;
    margin-bottom: 15px;
  }

  .highlight-header h6 {
    font-size: 1.1rem;
  }

  .highlight-body p {
    font-size: 0.95rem;
  }

  .two-column-list {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 1rem;
  }

  .two-column-list li {
    font-size: 0.95rem;
  }

  .video-box {
    height: 200px;
    font-size: 15px;
  }

  .download-section {
    padding: 10px;
  }

  .download-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
  }

  .form-control {
    font-size: 0.9rem;
    padding: 10px;
  }
  .order-item {
    margin-top: 1rem;
    gap: 10px;
  }
  .order-item img {
    height: 50px;
    width: 50px;
  }
  .order-item .item-name {
    font-size: 0.9rem;
  }
  .order-item .item-price {
    font-size: 0.9rem;
  }

  .scrollbar-box {
    max-height: 180px;
    padding-right: 4px;
  }

  .order-total-row {
    margin-top: 0.8rem;
  }

  .order-total-row .label,
  .order-total-row .value {
    font-size: 1rem; 
  }

  .section-title6 {
    font-size: 1.1rem;
  }

  /* .btn {
    margin-top: 15px;
    width: 100%;
  } */
  
  .top-nav-actions {
    flex-direction: column;    
    align-items: center;
    gap: 15px;                
    text-align: center;
  }

  .top-nav-actions a span {
    font-size: 0.95rem;
  }

  .top-nav-actions button {
    width: 100%;               
    font-size: 1rem;
  }
  
  .breadcrumb-design {
    gap: 8px !important;
    padding: 6px 15px !important;
  }
  .breadcrumb-design span {
    font-size: 12px !important;
    white-space: nowrap;
  }

  .filter-btn{width: auto;}
}

@media (max-width: 480px) {
  .scrollbar-box {
    max-height: 280px;
    overflow-y: auto;
  }

  header .navbar .side-buttons ul li.search-block .dropdown-menu.show{
    min-width: 15rem;
    left: 0;
    right: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
  }
}