html {
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #242424;
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

ul {
  padding-left: 0px;
  list-style-type: none;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

@media (min-width: 1366px) {
  .cmpad {
    max-width: 1526.4px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1366px) {
  .cmpad {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  .cmpad {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cmpad {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 90%;
  }
}

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eee;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #3a3a3a;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #444;
  }

  .custscroll::-webkit-scrollbar,
  .custscroll::-webkit-scrollbar-thumb {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscroll:hover::-webkit-scrollbar-thumb {
    background-color: #ccc;
  }
  .custscroll::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }

  .custscrollA::-webkit-scrollbar {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
  }
  .custscrollA::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }
}

/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: 0.3s;
}
header.active {
  background-color: white;
  height: 60px;
  box-shadow: 0px 0px 20px #0000001a;
}

.head-main {
  display: flex;
}
.head-main .logo-sec {
  width: 130px;
  transition: 0.3s;
}
header.active .head-main .logo-sec {
  width: 80px;
}
.head-main .menu-sec {
  flex: 1 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: -40px;
}
header.active .head-main .menu-sec {
  margin-top: -30px;
}
.menu-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  /* padding-top: 2rem; */
  transition: 0.3s;
  position: relative;
}
.menu-list li .dropbtn {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
}

.menu-list li .dropbtn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: rgb(255 255 255 / 30%);
  border-radius: 50%;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateX(0) translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
header.active .menu-list li a::before {
  background-color: rgb(237 28 36 / 30%);
}
.menu-list li a:hover::before {
  transform: translateX(100%) translateY(-50%);
  opacity: 1;
}
.dropdown:hover .dropbtn::before {
  transform: translateX(100%) translateY(-50%);
  opacity: 1;
}

/* .menu-list li a:hover{
  color: #ed1c24;
} */
.icon img {
  width: 18px;
}
.icon {
  width: 35px;
  height: 35px;
  background-color: #ed1c24;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s;
  cursor: pointer;
}
.icon:hover {
  background-color: #861a1f;
}
.icon a::before {
  display: none;
}

header.active .menu-list li a {
  color: #333;
}
header.active .menu-list {
  padding-top: 5px;
}

.dropdown {
  position: unset;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 900px;
  right: -185px;
  z-index: 1;
  transition: all 0.3s;
  box-shadow: 0 20px 20px -15px rgb(0 0 0 / 8%);
  min-height: 300px;
}

.dropdown:hover .dropbtn::after,
.font-list:hover .dropbtn::after {
  width: 100%;
  transition: all 0.3s;
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: all 0.3s;
  animation-name: fadeInDown;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.dropdown-content .drop-con {
  padding: 20px;
}

header .procard {
  cursor: pointer;
  padding: 10px;
  box-shadow: 0px 0px 20px #0000000a;
  margin: 10px;
}
header .heade-pro-list {
  display: flex;
  margin: -15px;
}
header .heade-pro-list li {
  flex: 1 0 33.333%;
  max-width: 33.333%;
  padding: 15px;
}

.drop-head {
  font-size: 0.9rem;
  color: black;
  margin-bottom: 8px;
}
header .heade-pro-list .procard {
  margin: 0;
  box-shadow: unset;
  border: 1px solid #ededed;
  border-radius: 5px;
  transition: 0.3s;
}
header .heade-pro-list .procard:hover {
  border: 1px solid #ed1c24;
}
header .heade-pro-list .procard .proimg {
  margin-bottom: 0;
  height: 155px;
}
.ac-list {
  display: flex;
  flex-flow: wrap;
  margin: -15px -5px;
}
.ac-list li {
  flex: 1 0 33.333%;
  padding: 5px;
  max-width: 33.33%;
}
.ac-list li a {
  display: flex;
  flex-flow: column;
  border: 1px solid #00000012;
  font-size: 0.85rem;
  padding: 13px;
  color: #333;
  border-radius: 3px;
  transition: 0.3s;
}
.ac-list li a:hover {
  border: 1px solid #ed1c24;
}
.ac-list li img {
  width: 50px;
  margin-bottom: 10px;
}
.ac-list li p {
  margin-bottom: 0;
}

header .brandlist {
  justify-content: flex-start;
}

header .brandlist li {
  flex: 1 0 calc(100% / 5);
  max-width: calc(100% / 5);
}

header .ac-list.single li {
  flex: 1 0 100%;
  max-width: 100%;
  padding: 8px;
}
header .ac-list.single li a {
  flex-flow: row;
  align-items: center;
  gap: 30px;
}
header .ac-list.single li img {
  margin-bottom: 0;
  width: 40px;
}

/* ////////////// THREE BOX /////////////// */
.box {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
}
.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}
.box h5 {
  position: absolute;
  z-index: 9;
  color: white;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  background-color: #45454530;
  padding: 8px 0;
  backdrop-filter: blur(5px);
}
.box h2 {
  position: absolute;
  z-index: 9;
  color: white;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  background-color: #45454530;
  padding: 8px 0;
  backdrop-filter: blur(5px);
}
.box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00000085, #0000004a);
  inset: 0;
}
.box:hover img {
  transform: scale(1.1);
}

/* ////////////// OFFER SEC /////////////// */
.off-box {
  border-radius: 0.3rem;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.off-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-slider {
  height: 100%;
}
.off-box h2.mainhead {
  padding-bottom: 2rem;

  font-size: 1.5rem;
  color: white;
}
.off-box .off-sec {
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.off-box h2.mainhead:after {
  content: "";
  position: absolute;
  background-color: #ed1d24;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  left: 0;
  bottom: 10px;
}
.off-box .bttn {
  padding: 8px 20px;
  font-size: 0.75rem;
}
.off-box .sec h2 {
  font-size: 1.1rem;
  padding-bottom: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 25px;
}
.single-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  right: 1rem;
}

/* ////////////// ABOUT /////////////// */

.abt-img {
  width: 500px;
  margin: auto;
  position: sticky;
  top: 6rem;
}
.about .subhead {
  left: 8px;
  right: 0;
  margin: auto;
  font-size: 6rem;
  top: -3.3rem;
  color: #0000000a;
}
.about .mainhead {
  font-size: 2.5rem;
}
.para {
  font-size: 0.95rem;
  color: #333;
  line-height: 25px;
}
.abt-head{
  font-size: 1.3rem;
    font-weight: 600;
}

/* ////////////// SLIDER /////////////// */
.mainslider {
  /* border-radius: 20px; */
  height: 100vh;
}
.mainslider .slide-img {
  position: relative;
}
.mainslider .slide-img img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.slider-con {
  position: absolute;
  top: 85%;
  transform: translateY(-85%);
  z-index: 1;
  width: 100%;
  color: white;
}
.slider-con h2 {
  font-size: 3.5rem;
  font-weight: 700;
  position: relative;
}
.slider-con h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: red;
  left: 0;
  bottom: -20px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 100%;
  right: 4rem;
  left: auto;
  width: max-content;
}

.mainslider .slide-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #00000030;
}

.swiper-btn .swiper-button-next:after,
.swiper-btn .swiper-button-prev:after {
  font-size: 1rem;
  filter: brightness(0) invert(1);
}

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #eb1c22;
  /* border-radius: 50px; */
  box-shadow: 0px 0px 20px #00000017;
  transition: 0.3s;
}
.swiper-btn .swiper-button-next:hover,
.swiper-btn .swiper-button-prev:hover {
  background-color: white;
}

.swiper-btn .swiper-button-next:hover:after,
.swiper-btn .swiper-button-prev:hover:after {
  font-size: 1rem;
  filter: brightness(0);
}
.swiper-btn .swiper-button-prev {
  left: 4rem;
  right: auto;
}
.swiper-btn .swiper-button-next {
  right: 4rem;
  left: auto;
}

.swiper-pagi .swiper-pagination-bullet-active {
  background: white;
  width: 15px;
  border-radius: 3px;
}

.swiper-pagi .swiper-pagination-bullet {
  background-color: white;
  transition: 0.3s;
}
.swiper-pagi
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 3px;
}

.box2 .swiper-btn .swiper-button-next {
  right: 10px;
  position: absolute !important;
}
.box2 .swiper-btn .swiper-button-prev {
  left: 10px;
  position: absolute !important;
}

.box2 .swiper-btn .header-next {
  right: 10px;
  width: 30px;
  height: 35px;
}
.box2 .swiper-btn .header-prev {
  left: 10px;
  width: 30px;
  height: 35px;
}

/*---------------------------------------*/
/*::::::::::::::::::BRANDS::::::::::::::*/
/*---------------------------------------*/
h2.mainhead {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
h2.mainhead1 {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}

.brandlist {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.brandlist li {
  flex: 1 0 calc(100% / 6);
  max-width: calc(100% / 6);
  padding: 5px;
}
.brandlist li .brand {
  padding: 20px;
  height: 80px;
  border-radius: 3px;
  box-shadow: 0px 0px 20px #0000000a;
  transition: 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}
.brandlist li .brand img {
  width: 100%;
  margin: auto;
  height: 100%;
  object-fit: contain;
}
.brandlist li .brand:hover {
  box-shadow: unset;
  border: 1px solid rgb(237 29 36 / 100%);
}

/*---------------------------------------*/
/*:::::::::::::: AC CATEGORY ::::::::::::*/
/*---------------------------------------*/
.ac-category {
  background-color: #ed1d24;
  background-image: url(../img/images/ac-bag.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.ac-category .mainhead {
  font-size: 2rem;
}
.ac-category .mainhead {
  color: white;
}
.ac-category:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ed1d241c;
  backdrop-filter: blur(3px);
  inset: 0;
}
.ac-category .pos {
  position: relative;
  z-index: 1;
}
.mytab {
  border-bottom: 0;
  justify-content: center;
  margin-bottom: 25px;
  gap: 10px;
}
.mytab .nav-link {
  color: rgb(255 255 255 / 70%);
  font-size: 0.9rem;
  border-radius: 10px;
  font-weight: 500;
  padding: 8px 18px;
  position: relative;
  border: none;
}
.mytab .nav-link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background-color: rgb(255 255 255 / 90%);
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 3px;
  opacity: 0;
  transition: 0.3s;
}

.mytab .nav-link.active {
  background-color: transparent;
  border: unset;
  color: white;
}
.mytab .nav-link.active:after {
  border: unset;
  opacity: 1;
}
.mytab .nav-link:hover {
  color: white;
}
.mytab .nav-link:hover:after {
  opacity: 1;
}

.procard.white {
  background: rgb(255 255 255 / 98%);
  padding: 10px;
  border-radius: 5px;
  backdrop-filter: blur(3px);
}

/*---------------------------------------*/
/*:::::::::::::::TWO BOX:::::::::::::::::*/
/*---------------------------------------*/
.two-box {
  display: flex;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #00000017;
  min-height: 350px;
  align-items: center;
  position: relative;
}
h3.subhead {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  font-weight: 800;
  font-size: 3rem;
  color: #00000012;
}
.two-box .box1 {
  width: 350px;
}
.two-box .box2 {
  width: calc(100% - 350px);
}

.two-box .box3 {
  width: 230px;
}
.two-box .box4 {
  width: calc(100% - 230px);
}
.two-box h2.mainhead {
  position: relative;
  padding-bottom: 2rem;
}
.two-box h2.mainhead:after {
  content: "";
  position: absolute;
  background-color: #ed1d24;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  left: 0;
  bottom: 10px;
}
.two-box .swiper-btn .swiper-button-next {
  right: 1rem;
}
.two-box .swiper-btn .swiper-button-prev {
  left: 1rem;
}
.two-box .procard .procon h5 {
  text-align: center;
}
.two-box .procard .procon h2 {
  text-align: center;
}
/*---------------------------------------*/
/*::::::::::::::::PRODUCTS ::::::::::::::*/
/*---------------------------------------*/

.swiper-btn.products .swiper-button-next,
.swiper-btn.products .swiper-button-prev {
  position: unset;
  height: 35px;
  width: 35px;
}
.swiper-btn.products .swiper-button-next:after,
.swiper-btn.products .swiper-button-prev:after {
  font-size: 0.8rem;
}

.swiper-btn.products {
  display: flex;
  gap: 10px;
}
.head-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.procard {
  cursor: pointer;
  position: relative;
}
.procard .proimg {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
  height: 200px;
}
.procard .proimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.procard:hover img {
  transform: scale(1.1);
}
.procard .procon h5 {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 23px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: black;
  height: 45px; 
}
.procard .procon h2{
    font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 23px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: black;
  height: 45px; 
}

.procard .procon .brand {
  font-size: 0.9rem;
  color: #666;
}
.procard .procon .star img {
  width: 13px;
}
.procard .procon p {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
  margin-bottom: 8px;
}
.procard .procon p span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.procard .procon .sold {
  background: #efefef;
  padding: 3px 8px;
  border-radius: 3px;
}
.procard .procon .rate {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
.procard .procon .rate span {
  font-weight: 500;
  color: #adadad;
  text-decoration: line-through;
}
.procard .procon .con {
      display: flex;
    align-items: center;
    flex-flow: wrap;
    gap: 3px;
    flex-direction: row;
    flex-wrap: nowrap;
}
.procard .procon .con .star {
  width: calc(100% - 30px);
}
.procard .procon .bttn {
  width: 35px;
  background-color: #ed1d24;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 8px;
  border-radius: 50px;
  transition: 0.3s;
  margin-right: 10px;
}
.procard .procon .bttn:hover {
  background-color: black;
}
.procard .s-box {
  font-size: 0.8rem;
  position: absolute;
  background-color: white;
  padding: 10px;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 20px #00000012;
  z-index: 1;
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.3s;
}
.procard:hover .s-box {
  opacity: 1;
}
.procard .s-box p {
  margin-bottom: 5px;
}
.procard .s-box span {
  font-size: 0.7rem;
  color: #959595;
}

.bttn {
  padding: 10px 30px;
  font-size: 0.95rem;
  color: white;
  background-color: #ed1c25;
  border: none;
  transition: 0.3s;
}
.bttn:hover {
  background-color: #861a1f;
  /* border: 1px solid #ed1c25; */
}

.btn-outline {
  color: #333;
  border: 1px solid #999999;
  background-color: transparent;
}
.btn-outline:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #ed1c25;
}
/* .buy{
  font-size: .85rem;
  font-weight: 500;
  padding: 0 30px;
  background: #084091;
  margin-top: 11px;
  display: flex;
  align-items: center;
  height: 38px;
  width: max-content;
  color: white;
  border-radius: .3rem;
  transition: .3s;
}
.buy:hover{
  background: #071e3f;
} */

/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/

footer {
  font-size: 0.875rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
  border-top: 1px solid #0000000a;
  background-image: url(../img/images/footer-bag1.jpg);
  position: relative;
  background-position: center;
  background-size: cover;
  /* background-attachment: fixed; */
  z-index: 0;
}
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #000000d6;
}
.pos {
  position: relative;
  z-index: 1;
}
footer a,
footer p {
  transition: 0.3s;
  color: rgb(255 255 255 / 85%);
}
footer a:hover {
  color: white;
}

footer .line {
  width: 100%;
  background-color: rgb(255 255 255 / 16%);
  height: 0.01rem;
  margin: 2rem 0;
}
.top-list {
  display: flex;
  flex-flow: wrap;
  margin: -10px;
}
.top-list li {
  flex: 1 0 25%;
  max-width: 25%;
  padding: 10px;
}
.fea-sec .con {
  width: calc(100% - 40px);
}
.fea-sec .con h5 {
  font-size: 1rem;
  color: black;
  margin-bottom: 3px;
}
.fea-sec .con h2 {
  font-size: 1rem;
  color: black;
  margin-bottom: 3px;
}
.fea-sec .con p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}
.fea-sec {
  background: rgb(255 255 255 / 10%);
  padding: 15px 0;
  border-radius: 3px;
  display: flex;
  gap: 15px;
}

.fea-sec span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  background: white;
  padding: 10px;
  box-shadow: 0px 0px 20px #0000000f;
}
.fea-sec span img {
  filter: brightness(0);
}

footer h3 {
  position: relative;
  font-size: 0.95rem;
  padding-bottom: 10px;
  color: white;
  z-index: 9;
}
footer h3::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #ed841d;
  /* border-radius: 50%; */
  /* position: absolute; */
  /* left: -8px; */
  z-index: -1;
  opacity: 80%;
  bottom: 0;
}

footer .foot-list.brands {
  display: flex;
  flex-flow: wrap;
}
footer .foot-list li {
  padding-bottom: 10px;
}

footer .foot-list span {
  background-color: rgb(237 29 36);
  border-radius: 50px;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
footer .foot-list li {
  display: flex;
  align-items: center;
}
footer .foot-list span img {
  width: 16px;
  filter: brightness(0) invert(1);
}
footer .foot-list.add-list li:not(:last-child) {
  padding-bottom: 10px;
}

footer .foot-list.brands li {
  flex: 1 0 50%;
  max-width: 50%;
}
.pow p {
  text-align: right;
}

.foot-logo {
  width: 100px;
  margin-bottom: 20px;
}
.foot-para {
  margin-bottom: 0;
  max-width: 300px;
}
.social:after {
  display: none;
}
.social {
  display: flex;
  gap: 5px;
}

.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #ffffff33;
  border-radius: 50px;
  transition: 0.3s;
}

.social img {
  width: 13px;
  filter: brightness(0) invert(1);
}

.site-list {
  display: flex;
  flex-flow: wrap;
  column-gap: 20px;
  row-gap: 5px;
  justify-content: flex-end;
}
.site-list li {
  position: relative;
  font-size: 0.8rem;
}
.site-list li:not(:first-child):before {
  content: "";
  position: absolute;
  width: 1px;
  inset: 0;
  height: 100%;
  background-color: #ffffff59;
  left: -9px;
}

.off-bag {
  background-color: #00000005;
  position: relative;
  z-index: 0;
}

.foot-icon {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.foot-icon span {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  background-color: #ffffff33;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.foot-icon span img {
  width: 13px;
  filter: brightness(0) invert(1);
}
.foot-icon p{
  width: calc( 100% - 28px );
}

.dow {
  color: rgb(255 255 255 / 98%);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
}
.dow span {
  font-weight: 300;
  color: rgb(255 255 255 / 80%);
  font-size: 1.1rem;
}

.app {
  display: flex;
  gap: 5px;
}

.app .play {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ffffff52;
  border-radius: 0.3rem;
  padding: 5px 10px;
  width: 150px;
  transition: 0.3s;
}
.app .play:hover {
  border: 1px solid white;
}
.app .play .icon {
  width: 35px;
  height: 35px;
  background: #ffffff26;
}
.app .play .con {
  width: calc(100% - 35px);
}
.app .play .con p {
  margin-bottom: 0;
  width: max-content;
}
.app .play .con span {
  color: white;
  font-size: 0.65rem;
}
.ser {
  border: 1px solid #ffffff52;
  padding: 13px;
  border-radius: 0.3rem;
  color: white;
  /* height: 90px; */
}

/* ///////// LOGIN MODAL ////////// */

.mymodal .modal-content {
  border: none;
  overflow: hidden;
}
@media (min-width: 576px) {
  .mymodal .modal-dialog {
    max-width: 800px;    
  }
}
.mymodal .modal-body {
  padding: 0;
  background-image: url(../img/images/login-bag.jpg);
  background-size: cover;
  position: relative;
}
.mymodal .cen {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
}
.mymodal .left {
  min-height: 400px;
  /* padding: 50px; */
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: flex-end;
  position: relative;
  /* background-color: white; */
}
.mymodal .left img {
  width: 300px;
  margin: auto;
}
.mymodal .right .bttn {
  border-radius: 0.3rem;
}
.mymodal .modal-body::before {
  content: "";
  position: absolute;
  background: #ffffff63;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0.05rem);
}
.mymodal .left h5,
.mymodal .left h2 {
  color: white;
  position: relative;
}
.mymodal .right h5 {
  font-size: 1.3rem;
  font-weight: 700;
}
.mymodal .right p {
  line-height: 20px;
  color: #333;
  font-size: 0.93rem;
}

.mymodal .bttn {
  font-size: 0.8rem;
  border: 1px solid #ed1c25;
}

.mymodal .bttn:hover {
  border: 1px solid #861a1f;
  background-color: #861a1f;
}

label {
  font-size: 0.8rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.myform input,
.myform textarea,
.myform select {
  width: 100%;
  padding: 10px 13px;
  font-size: 0.85rem;
  border: 1px solid #0000001c;
  border-radius: 0.3rem;
  transition: 0.3s;
  color: #666;
}
.myform input:focus,
.myform textarea:focus,
.myform select:focus {
  border: 1px solid #ee1c25;
  outline: none;
}
.myform input::placeholder,
.myform textarea::placeholder {
  color: #33333357;
  font-size: 0.8rem;
}
.myform input[type="checkbox"] {
  width: auto;
}

button {
  background: unset;
}
.otp-sec {
  display: flex;
  gap: 3px;
}
.otp-sec input {
  width: 50px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px;
}
.wrong {
  font-size: 0.85rem !important;
}

.link-color {
  color: #e38813;
  transition: 0.3s;
  cursor: pointer;
}
.link-color:hover {
  color: #9c5f0f;
}

.com {
  font-size: 1.6rem;
  font-weight: 700;
}

.close {
  position: absolute;
  background: #1964cd;
  top: 1rem;
  right: 1.5rem;
  border-radius: 50px;
  padding: 8px;
  cursor: pointer;
}
.close img {
  width: 10px;
}
.tick {
  width: 80px;
  margin: auto;
  margin-bottom: 20px;
}

.dropdown-toggle::after {
  display: none !important;
}

.input-box {
  position: relative;
  max-width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  margin-left: 1.5rem;
}
.input-box.open {
  max-width: 350px;
}
.input-box input {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  padding: 0 15px;
  border: none;
  border-radius: 50px;
  outline: none;
  transition: all 0.5s ease-in-out;
  background-color: transparent;
}
.input-box.open input {
  padding: 0 20px 0 50px;
}

.input-box .search {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ed1c24;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.input-box .search:hover {
  background-color: #861a1f;
}

.input-box.open input {
  background-color: #f5f5f5;
}
/* .input-box.open input::placeholder{
  color: rgba(0, 0, 0, 0.308);
} */
.search .search-icon {
  width: 18px;
}
.input-box .close-icon {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 23px;
  font-size: 30px;
  color: #1c1c1c;
  padding: 5px;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  filter: brightness(0) invert(1);
}
.input-box.open .close-icon {
  transform: translateY(-50%) rotate(180deg);
  pointer-events: auto;
  opacity: 1;
}
header.active .input-box.open .close-icon {
  filter: brightness(0);
}

.mob-menu {
  margin-left: 1.5rem;
}
header.active .mob-menu img {
  filter: brightness(0);
}

/* //////////// RESPONSIVE ////////// */

@media (max-width: 1199px) {
  .menu-list {
    display: none;
  }
  .off-box {
    min-height: 180px;
  }
  .two-box {
    display: block;
    min-height: 600px;
  }
  .two-box .box1,
  .two-box .box3 {
    width: 100%;
    margin-bottom: 3rem;
  }
  .two-box .box2 {
    width: 100%;
  }
  .two-box .box4 {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
  h3.subhead {
    right: 1.5rem;
    left: auto;
  }
  .off-bag {
    display: none;
  }
}

@media (min-width: 1200px) {
  .mob-menu {
    display: none;
  }
}

@media (max-width: 991px) {
  .brandlist li {
    flex: 1 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
  .mytab {
    display: flex;
    flex-flow: nowrap;
    overflow: hidden;
    overflow-x: auto;
    justify-content: flex-start;
  }
  li.nav-item {
    flex: 1 0 auto;
  }
  .mainslider {
    height: 80vh;
  }
  .mainslider .slide-img img {
    height: 80vh;
  }
}

@media (max-width: 767px) {
  .brandlist li {
    flex: 1 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
  .site-list {
    justify-content: flex-start;
    margin-top: 15px;
  }
  .two-box {
    min-height: auto;
  }
  .mainslider {
    height: 70vh;
  }
  .mainslider .slide-img img {
    height: 70vh;
  }
}

@media (max-width: 575px) {
  .off-box {
    min-height: 230px;
  }
  .off-box .sec h2 {
    padding-bottom: 2rem;
    font-size: 1.5rem;
    color: white;
  }
  .brandlist li {
    flex: 1 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
  .head-main .logo-sec {
    width: 100px;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    right: 1rem;
  }
  .input-box {
    display: none;
  }
  .procard .proimg {
    height: 130px;
  }
  .procard .procon h5 {
    line-height: 20px;
  }
  .procard .procon h2 {
    line-height: 20px;
  }
  .two-box .procard .proimg {
    height: 230px;
  }
  .head-main .menu-sec {
    margin-top: -20px;
  }
  .mymodal .left img {
    width: 300px;
    padding: 20px;
  }
  .mymodal .left {
    min-height: 200px;
  }
  .close {
    top: -20rem;
}
.procard .procon .con{
    flex-wrap: wrap;
}
}
@media (max-width: 767px) {
  .desk {
    display: none;
  }
}
@media (min-width: 768px) {
  .mob {
    display: none;
  }
}

/*mobilw css*/

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: -20px 0 20px rgb(0 0 0 / 10%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  border-top: 4px solid #ed1c24;
}

.sidebar.show {
  width: 300px;
  opacity: 1;
}

.sidebar .sidehead {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 86px;
}
.sidebar .sidehead p {
  margin-bottom: 0;
}
.sidebar .sidehead span {
  font-size: 0.85rem;
  color: #666;
}

.sidebar .sidehead .logo {
  width: 60px;
  display: flex;
}

.sidebar .sidehead .closebtn {
  font-size: 1rem;
  padding: 5px;
  border: none;
  background-color: #371415;
  position: absolute;
  top: 7px;
  right: 0.5rem;
  color: white !important;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 50px;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .sidehead .closebtn:hover {
  color: #3a3a3a;
}

.sidebar .sidemenu {
  padding: 15px;
  overflow-y: auto;
  height: calc(100vh - 124px);
}

.sidebar .sidemenu ul.menulist {
  display: flex;
  flex-flow: column;
}

.sidebar .sidemenu ul.menulist li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar .sidemenu ul.menulist li a {
  color: #333;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 0.5rem;
  cursor: pointer;
  background: rgb(0 0 0 / 3%);
  font-weight: 400;
  font-size: 1rem;
  box-shadow: unset;
}

.sidebar .sidemenu ul.menulist li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #ed1d25;
  background-color: rgb(236 28 34 / 9%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.sidebar .sidemenu ul.menulist li a p{
  width: calc( 100% - 30px );
  margin-bottom: 0;
}

.sidebar .sidemenu ul.menulist li a .icon img {
  width: 15px;
}


.sidebar .sidemenu ul.menulist li button {
  color: #333;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 0.5rem;
  cursor: pointer;
  background: rgb(0 0 0 / 3%);
  font-weight: 400;
  font-size: 1rem;
  box-shadow: unset;
}

.sidebar .sidemenu ul.menulist li button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #ed1d25;
  background-color: rgb(236 28 34 / 9%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.sidebar .sidemenu ul.menulist li button p{
  width: calc( 100% - 30px );
  margin-bottom: 0;
}

.sidebar .sidemenu ul.menulist li button .icon img {
  width: 15px;
}



.sidebar .dropdown.show .dropdown-toggle {
  color: #3498db;
  background-color: #eaf3ea;
}

.sidebar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-weight: 600;
  position: absolute;
  right: 30px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border: none;
}

.sidebar .dropdown.show .dropdown-toggle:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.sidebar .dropdown-menu {
  position: relative !important;
  transform: none !important;
  width: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 0.875rem;
}

.sidebar .dropdown-menu a:hover {
  background-color: transparent !important;
}

.sidebar .seperate {
  font-size: 0.875rem;
  color: #9e9e9e;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

.sidebar ul.social {
  padding: 0 15px;
  display: flex;
  gap: 5px;
}

.sidebar ul.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #ed1d25;
  background-color: rgb(236 28 34 / 9%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.sidebar ul.social li a img {
  filter: unset;
}
.sidebar .accordion-item {
  border: unset;
}
.sidebar .accordion-button::after {
  width: 13px;
  height: 13px;
  background-size: contain;
}
.sidebar .search {
  position: relative;
}
.sidebar .search input {
  width: 100%;
  background: #0000000a;
  border: none;
  padding: 8px 20px;
  padding-left: 45px;
  height: 38px;
}
.sidebar .search input:focus {
  outline: none;
}
.sidebar .search img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  left: 13px;
  filter: brightness(0.5);
}
.sidebar .search input::placeholder {
  color: rgba(0, 0, 0, 0.281);
}



.bknw {
  padding: 10px 30px;
  font-size: 0.95rem;
  color: white;
  background-color: #ed1c25;
  border: none;
  transition: 0.3s;
}
.bknw:hover {
  background-color: #861a1f;
  /* border: 1px solid #ed1c25; */
}

.fly-img {
    position: absolute;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.1s ease-in-out;
}

.float-reg a{
    position: relative;
    display: flex;
    height: 45px;
    width: 45px;
    border-radius: 30px;
    background: #1FAF38;
    -webkit-animation: pulsing 2s infinite 
cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 2s infinite 
cubic-bezier(0.66, 0, 0, 1);
    justify-content: center;
    align-items: center;
}
@keyframes pulsing {
  50% {
    box-shadow: 0 0 0 10px #25d36621;
  }
  100% {
    box-shadow: 0 0 0 0px #25d36621;
  }
}
.float-reg {
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 1000;
}
.float-reg a img{
    width: 30px;
    height: 30px;
}


@media (max-width: 1024px){
    .ytb-thumbn a{
        right: 20px!important;
        bottom: 20px!important;
    }
}

.ytb-thumbn a{
          position: absolute;
    display: flex;
    height: 60px;
    width: 60px;
           bottom: 82px;
    right: 22%;
    border-radius: 30px;
    background: #ed1b24;
    -webkit-animation: pulsinggg 2s infinite 
cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsinggg 2s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsinggg 2s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsinggg 2s infinite 
cubic-bezier(0.66, 0, 0, 1);
    justify-content: center;
    align-items: center;
}
@keyframes pulsinggg {
  50% {
    box-shadow: 0 0 0 10px #ed1b243b;
  }
  100% {
    box-shadow: 0 0 0 0px #ed1b243b;
  }
}
.ytb-thumbn {
        position: relative;
    width: 500px;
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}
.ytb-thumbn a img{
    width: 40px;
    height: 40px;
}




.abtcrd{
        padding: 25px;
    background: #f5f9ff;
    border-radius: 10px;
    width: 50%;
    overflow: hidden;
     transform: scale(1);
    position: relative;
    transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.abtcrd p{
    margin-bottom: 0px;
        color: #000;
        font-weight: 500;
    margin-top: 7px;
}
.abtcrd2{
    background: #f4fffd;
}
.abtcrd:hover{
    transform: scale(1.04);
     transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.abt-imgh{
   width: 560px;
}
.abtcrd-btn{
    position: absolute;
    top: 0;
    right: 0;
    background: #ffffff;
    box-shadow: -2px 0px 10px #0000001a;
    width: 44px;
    height: 44px;
    display: flex;
    border-radius: 0 10px 0 24px;
    justify-content: center;
    align-items: center;
}


.logindrp{
    position: relative;
}
.logindrp .dropdown-content{
       right: 0;
    width: 200px;
    top: 30px;
    height: auto;
    min-height: 255px;
}

.logindrp .ac-list{
    flex-direction: column;
}
.logindrp .ac-list li{
        flex: 1 0 100%;
    padding: 3px;
    max-width: 100%;
}
.logindrp .ac-list li img {
    width: 24px;
    margin-bottom: 0;
}
.logindrp .ac-list li a {
    padding: 8px;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}
.logindrp .dropdown-content .drop-con {
    padding: 10px;
}

.dflxr{
        display: flex!important;
    flex-direction: row!important;
    align-items: center;
    gap: 15px;
}
.dflxr img{
    margin-bottom: 0px!important;
}


@media (max-width: 767px){
    .abtcrd{
        width: 100%;
    }
}

