@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
.primaryClr {
  color: #5E59C0;
}

.secondaryClr {
  color: #FF8A00;
}

.primaryBack {
  background: #5E59C0;
}

.primaryFont {
  font-family: "Inter", sans-serif;
}

.dk-font {
  font-family: "DK Pardesi";
}

.backLight {
  background: whitesmoke;
}

.priHover:hover {
  color: #5E59C0;
}

html {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, h4::-moz-selection, h5::-moz-selection, h6::-moz-selection, a::-moz-selection {
  color: #FFFFFF;
  background-color: #5E59C0;
}

p::selection, h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection, a::selection {
  color: #FFFFFF;
  background-color: #5E59C0;
}

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

a:hover {
  text-decoration: none;
  color: #FF8A00;
}

button {
  cursor: pointer;
}
button:focus {
  outline: none;
}

input:focus {
  outline: none;
  border: 1px solid #5E59C0;
}

.form-control:focus {
  border-color: #5E59C0;
  outline: 0;
  box-shadow: none;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.border_1 {
  border: 1px solid #5E59C0;
}

.border_White {
  border: 1px solid #fff;
}

.rounded_6 {
  border-radius: 6px;
}

.rounded_8 {
  border-radius: 8px;
}

.bx-shadow {
  box-shadow: 0 0 0 3px rgb(134, 130, 220);
}

.bx-shadow_inner {
  box-shadow: inset 0 0 0 2px rgb(134, 130, 220);
}

/********** HEADER NAVBAR ***********/
#headNavbar ul li {
  position: relative;
  margin-left: 30px;
}
#headNavbar ul li a.active {
  color: #5E59C0;
}
#headNavbar ul li a {
  display: block;
  line-height: 70px;
  background: #FFFFFF;
  color: #000000;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
}
#headNavbar ul li a:hover {
  color: #5E59C0;
}
#headNavbar ul li a i {
  font-size: 11px;
}
#headNavbar ul li ul li {
  min-width: 230px;
  margin-left: 0px;
}
#headNavbar ul li ul li a {
  padding: 8px 0;
  line-height: 20px;
  cursor: pointer;
  border-bottom: 1px solid #e9e9e9;
}
#headNavbar ul li ul li a:hover {
  color: #5E59C0;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 9999;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  text-align: start;
  padding: 15px;
  background: #fff;
  border-top: 3px solid #5E59C0;
}

#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #000000;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

/********** MOBILE SIDE NAVBAR ***********/
#sidebar {
  min-width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #fff;
  top: 0;
  right: -3000px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

#sidebar.active {
  right: 0;
}

.nav-listBox {
  position: relative;
}

#dismiss {
  background: #5E59C0;
  font-size: 2.8rem;
  background: #fff;
  border-radius: 50%;
  padding: 0;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar li {
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 0;
}
#sidebar a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
}
#sidebar a:hover {
  color: #FF8A00;
}
#sidebar .nav-dropdown {
  background-color: #FFFFFF;
  max-width: 230px;
  width: 100%;
  padding: 6px;
  height: 100%;
  overflow-y: auto;
}

.mobileLogo img {
  width: 185px;
}

.fas.fa-bars {
  font-size: 30px;
}

.mobBav {
  padding: 20px;
}

.mobBav li {
  margin-bottom: 5px;
}

/********** TOP CENTER LOGO SIDE **********/
.headLogo img {
  width: 130px;
}

.footerLogo img {
  width: 220px;
}

.logoTxt {
  font-size: 2rem;
  font-weight: 700;
}

.logoTxt span {
  font-weight: 400;
}

/********** BOTTOM NAVBAR SIDE **********/
.bottomNavbar {
  background-image: url("../images/footer-base.png");
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  color: #fff;
  background-color: #7E7ACD;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}
.bottomNavbar ul.nav-list .list-inline-item:not(:last-child) {
  margin-right: 1.5rem;
}
.bottomNavbar ul.nav-list li a {
  font-size: 17px;
  font-weight: 500;
  font-family: "DK Pardesi";
  color: #fff;
  letter-spacing: 0.7px;
}
.bottomNavbar ul.nav-list li a:hover {
  color: #FF8A00;
}

.bottomNavbarMob {
  background-image: url("../images/footer-base.png");
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  color: #fff;
  background-color: #7E7ACD;
}

#sidebarCollapse {
  background: transparent;
  border: none;
}
#sidebarCollapse i {
  font-size: 2.5rem;
  color: #FFFFFF;
}

.headerIconHover {
  transition: 0.2s ease;
}
.headerIconHover:hover {
  background-color: #FFFFFF;
}
.headerIconHover:hover svg path {
  fill: #5E59C0;
}

/********** GENERAL STYLING SIDE **********/
.genHead {
  text-transform: capitalize;
  font-size: 2.2rem;
  font-weight: 400;
  font-family: "DK Pardesi";
}

.paginationList {
  margin-top: 20px;
}
.paginationList ul li.active a {
  background-color: #5E59C0;
  color: #FFFFFF;
}
.paginationList ul li {
  position: relative;
}
.paginationList ul li a {
  background: transparent;
  border: 1px solid #5E59C0;
  color: #5E59C0;
  min-width: 35px;
  width: 100%;
  min-height: 35px;
  height: 100%;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paginationList ul li a:hover {
  background-color: #5E59C0;
  color: #FFFFFF;
}

.genBtn {
  background-color: #fff;
  background-image: #5E59C0;
  border: none;
  color: #fff;
  padding: 15px 40px;
  border-radius: 10px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  font-size: 1.1rem;
}

.rating {
  display: flex;
  align-items: center;
  -moz-column-gap: 3;
       column-gap: 3;
}
.rating i {
  color: #ffa900;
  font-size: 1rem;
}
.rating span {
  font-size: 1rem;
}

.bold400 {
  font-weight: 400;
}

.bold500 {
  font-weight: 500;
}

.bold600 {
  font-weight: 600;
}

.bold700 {
  font-weight: 700;
}

.font18 {
  font-size: 1.2rem;
}

.font16 {
  font-size: 16px;
}

.font14 {
  font-size: 1rem;
}

.font12 {
  font-size: 12px;
}

.bottomLine {
  width: 70%;
  height: 1px;
  background-color: #5E59C0;
  margin: 2rem auto;
}

.txtStyle {
  font-size: 1.1rem;
  line-height: 28px;
  color: #727e85;
}

blockquote {
  font-size: 2rem;
  line-height: 38px;
  color: #727e85;
  font-weight: 400;
}

.orangeGredient {
  font-family: "DK Pardesi";
  color: radial-gradient(circle, rgba(255, 138, 0, 0.4714928208) 0%, rgb(255, 138, 0) 100%);
  background: radial-gradient(circle, rgba(255, 138, 0, 0.4714928208) 0%, rgb(255, 138, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.purpleGredient {
  font-family: "DK Pardesi";
  color: radial-gradient(circle, rgba(94, 89, 192, 0.7460026247) 0%, rgb(94, 89, 192) 100%);
  background: radial-gradient(circle, rgba(94, 89, 192, 0.7460026247) 0%, rgb(94, 89, 192) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.nav-tabs .nav-link.active {
  color: #5E59C0 !important;
}

.nav-tabs .nav-link {
  color: #000000 !important;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 25px;
}

.social {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.social i {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 1.1rem;
  border: 1px solid #FF8A00;
  transform: translateY(0);
  transition: 0.5s;
}
.social i:hover {
  transform: translateY(-5px);
  background: #5E59C0;
  color: #FFFFFF;
  border: 1px solid transparent;
}

/***************************************************** 
                        HOME PAGE STYLE
*******************************************************/
/********** HERO SECTION ***********/
.skyBlurClr {
  background: linear-gradient(-30deg, rgba(87, 196, 231, 0.7263947815) 0%, rgb(239, 250, 253) 50%, rgb(198, 239, 233) 100%);
  overflow: hidden;
  padding: 20px 0 30px 0;
  border-radius: 0 0 50px 50px;
}

.HeroImg1Bx, .HeroImg2Bx {
  overflow: hidden;
  border-radius: 32px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 350px;
}

.HeroImg1Bx {
  background: radial-gradient(circle, rgb(157, 152, 243) 0%, rgb(94, 89, 192) 100%);
}
.HeroImg1Bx h2 {
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
  font-family: "Baloo";
  color: #fff;
  margin-top: 50px;
}

.HeroImg1, .HeroImg2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.HeroImg1 {
  background-image: url("../images/footer-base.png");
}
.HeroImg1 img {
  position: absolute;
}
.HeroImg1 img:nth-child(2) {
  top: 5px;
  left: 0;
}
.HeroImg1 img:nth-child(3) {
  bottom: 5px;
  left: 9%;
}
.HeroImg1 img:nth-child(4) {
  top: 5px;
  right: 5px;
}
.HeroImg1 img:nth-child(5) {
  bottom: 2%;
  right: 5%;
}

.HeroImg2Bx {
  background: radial-gradient(circle, rgb(255, 231, 125) 0%, rgb(243, 201, 19) 100%);
}
.HeroImg2Bx h2 {
  font-size: 2.5rem;
  font-family: "Baloo";
  color: #fff;
  margin: 20px 0 0 20px;
}
.HeroImg2Bx h2 span {
  color: #ed2b2b;
}

.HeroImg2 img {
  position: absolute;
}
.HeroImg2 img:nth-child(2) {
  top: -5px;
  right: -5px;
}
.HeroImg2 img:nth-child(3) {
  bottom: 0;
  left: 0;
}

/********** SHOP BY AGE SECTION ***********/
.ShopAgeImg {
  width: 170px;
  height: 170px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ShopAgeImg .shopCategoryFront {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  width: 70%;
  transform: translate(-50%, -50%);
}

.ShopAgeTxt {
  font-family: "DK Pardesi";
  font-size: 1.4rem;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .ShopAgeImg {
    width: 150px;
    height: 150px;
    border-radius: 20px;
  }
}
/********* PRODUCTS ***********/
#clientswip .swiper-slide:nth-child(1) .productMain .productClr {
  background-color: #FF8A00;
}
#clientswip .swiper-slide:nth-child(1) .productMain a .productCart {
  background-color: #FF8A00;
}
#clientswip .swiper-slide:nth-child(2) .productMain .productClr {
  background-color: #57C4E7;
}
#clientswip .swiper-slide:nth-child(2) .productMain a .productCart {
  background-color: #57C4E7;
}
#clientswip .swiper-slide:nth-child(3) .productMain .productClr {
  background-color: #5E59C0;
}
#clientswip .swiper-slide:nth-child(3) .productMain a .productCart {
  background-color: #5E59C0;
}
#clientswip .swiper-slide:nth-child(4) .productMain .productClr {
  background-color: #ED2B2B;
}
#clientswip .swiper-slide:nth-child(4) .productMain a .productCart {
  background-color: #ED2B2B;
}
#clientswip .swiper-slide:nth-child(5) .productMain .productClr {
  background-color: #F3C913;
}
#clientswip .swiper-slide:nth-child(5) .productMain a .productCart {
  background-color: #F3C913;
}
#clientswip .swiper-slide:nth-child(6) .productMain .productClr {
  background-color: #20C393;
}
#clientswip .swiper-slide:nth-child(6) .productMain a .productCart {
  background-color: #20C393;
}
#clientswip .swiper-slide:nth-child(7) .productMain .productClr {
  background-color: #57C4E7;
}
#clientswip .swiper-slide:nth-child(7) .productMain a .productCart {
  background-color: #57C4E7;
}

.productMain .productClr {
  background-color: #5E59C0;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.productBx {
  background-image: url("../images/product-back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  color: #fff;
  padding: 15px;
}
.productBx .productImg {
  width: 100%;
  height: 220px;
  overflow: hidden;
  padding: 10px;
  border-radius: 24px;
  background-color: #F0F0F0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.productBx .productImg img {
  height: 180px;
}
.productBx .productImg .productHeart {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ed2b2b;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productBx .productContent h4 {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 10px;
  color: #fff;
  font-family: "DK Pardesi";
}
.productBx .productContent h5 {
  font-weight: 500;
  font-size: 12px;
  margin-top: 10px;
  color: #fff;
}

.productCart {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding: 8px;
  background: #5E59C0;
  text-align: center;
  border-radius: 20px;
  margin-top: 6px;
}

/********* BEST SELLER SECTION ***********/
.rot_month {
  max-width: 1366px;
  margin: 0 auto;
}

.sellerCartoon1, .sellerCartoon2 {
  position: absolute;
  top: 20%;
  animation: bounce 2s;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  animation-iteration-count: infinite;
}

.sellerCartoon1 {
  left: 0;
  width: 240px;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 50px, 0);
  }
}
.sellerCartoon2 {
  right: 0;
  width: 250px;
}

.recomendBody .swiper-button-next:after,
.recomendBody .swiper-button-prev:after {
  font-size: 15px !important;
  color: #fff;
  background: #032974;
  padding: 14px;
  border-radius: 50%;
}

.recomendBody .swiper-button-next:hover::after,
.recomendBody .swiper-button-prev:hover::after {
  background-color: #fff;
  border: 1px solid #032974;
  color: #032974;
}

.recomendBody .swiper-button-next:after {
  content: "➔" !important;
}

.recomendBody .swiper-button-prev:after {
  content: "➔" !important;
  transform: rotate(180deg);
}

.recomendBody .swiper-button-next.swiper-button-disabled,
.recomendBody .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.recomendBody .swiper {
  padding-bottom: 40px;
}

.recomendBody .swiper-pagination-bullet {
  background: transparent;
  opacity: 1;
  border: 1px solid #032974;
}

.recomendBody .swiper-pagination-bullet-active {
  background: #032974;
  width: 20px;
  border-radius: 5px !important;
}

/********* SHOP BY CATEGORY SECTION ***********/
.peachClr {
  padding: 30px 0;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-30deg, rgb(255, 228, 224) 16%, rgb(255, 244, 230) 50%, rgb(255, 223, 184) 100%);
}

.shopCategoryMain .shopCategory_:nth-child(1) .shopCategoryClr {
  background: radial-gradient(circle, rgb(184, 181, 249) 0%, rgb(94, 89, 192) 100%);
}
.shopCategoryMain .shopCategory_:nth-child(2) .shopCategoryClr {
  background: radial-gradient(circle, rgb(251, 129, 129) 0%, rgb(238, 52, 52) 100%);
}
.shopCategoryMain .shopCategory_:nth-child(3) .shopCategoryClr {
  background: radial-gradient(circle, rgb(254, 235, 154) 0%, rgb(243, 201, 19) 100%);
}
.shopCategoryMain .shopCategory_:nth-child(4) .shopCategoryClr {
  background: radial-gradient(circle, rgba(51, 196, 242, 0.7235936611) 0%, rgb(25, 175, 223) 100%);
}

.shopCategoryClr {
  background-color: #5E59C0;
  border-radius: 32px;
}
.shopCategoryClr .shopCategoryBx {
  background-image: url("../images/product-back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 250px;
  cursor: pointer;
}
.shopCategoryClr .shopCategoryBx img {
  width: 150px;
}

.brandGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0px, 1fr));
  grid-gap: 10px;
}

/********* PRODUCT CATEGORY SECTION ***********/
.cartoon3 {
  position: absolute;
  top: -72px;
  right: -20px;
  width: 210px;
  animation: ukijuki 3s ease-in-out infinite alternate;
}

@keyframes ukijuki {
  0%, 100% {
    transform: rotate(-5deg) translateX(-10%);
  }
  10% {
    transform: rotate(3deg);
  }
  20% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(-15deg);
  }
}
.productTabs .nav {
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.productTabs .nav-pills .nav-link.active, .productTabs .nav-pills .show > .nav-link {
  background-color: #5E59C0;
  border: 1px solid transparent;
  color: #fff;
}
.productTabs .nav-pills .nav-link {
  border: 1px solid #5E59C0;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}
.productTabs .nav-pills .nav-link:hover {
  background-color: #5E59C0;
  color: #fff;
}
.productTabs .productAllbtn {
  font-family: "DK Pardesi";
  background: #5E59C0;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1.2px;
  margin-top: 23px;
  display: inline-block;
}

.productCategoryMain .productCategory_:nth-child(1) .productClr, .productCategoryMain .productCategory_:nth-child(1) a .productCart {
  background-color: #ED2B2B;
}
.productCategoryMain .productCategory_:nth-child(2) .productClr, .productCategoryMain .productCategory_:nth-child(2) a .productCart {
  background-color: #57C4E7;
}
.productCategoryMain .productCategory_:nth-child(3) .productClr, .productCategoryMain .productCategory_:nth-child(3) a .productCart {
  background-color: #FF8A00;
}
.productCategoryMain .productCategory_:nth-child(4) .productClr, .productCategoryMain .productCategory_:nth-child(4) a .productCart {
  background-color: #5E59C0;
}
.productCategoryMain .productCategory_:nth-child(5) .productClr, .productCategoryMain .productCategory_:nth-child(5) a .productCart {
  background-color: #FF8A00;
}
.productCategoryMain .productCategory_:nth-child(6) .productClr, .productCategoryMain .productCategory_:nth-child(6) a .productCart {
  background-color: #F3C913;
}
.productCategoryMain .productCategory_:nth-child(7) .productClr, .productCategoryMain .productCategory_:nth-child(7) a .productCart {
  background-color: #20C393;
}
.productCategoryMain .productCategory_:nth-child(8) .productClr, .productCategoryMain .productCategory_:nth-child(8) a .productCart {
  background-color: #57C4E7;
}
.productCategoryMain .productCategory_:nth-child(9) .productClr, .productCategoryMain .productCategory_:nth-child(9) a .productCart {
  background-color: #a900ff;
}
.productCategoryMain .productCategory_:nth-child(10) .productClr, .productCategoryMain .productCategory_:nth-child(10) a .productCart {
  background-color: #00ff81;
}
.productCategoryMain .productCategory_:nth-child(11) .productClr, .productCategoryMain .productCategory_:nth-child(11) a .productCart {
  background-color: #003bff;
}
.productCategoryMain .productCategory_:nth-child(12) .productClr, .productCategoryMain .productCategory_:nth-child(12) a .productCart {
  background-color: #542000;
}

/********* CONTACT US SECTION ***********/
.contactBack {
  padding: 70px 0;
  background: linear-gradient(90deg, rgba(232, 247, 252, 0.7707457983) 0%, rgba(232, 247, 252, 0.356179972) 100%);
}

.contactBx {
  padding-right: 50px;
}
.contactBx h1 {
  font-size: 2.5rem;
  font-family: "DK Pardesi";
  color: radial-gradient(circle, rgba(94, 89, 192, 0.5858718487) 0%, rgb(94, 89, 192) 100%);
  background: radial-gradient(circle, rgba(94, 89, 192, 0.5858718487) 0%, rgb(94, 89, 192) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contactBx p {
  font-size: 14px;
  color: gray;
}
.contactBx input, .contactBx textarea {
  width: 100%;
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid rgba(94, 89, 192, 0.431372549);
  box-shadow: 0 0 0 3px rgba(134, 130, 220, 0.11);
  color: #5E59C0;
  font-weight: 500;
  font-size: 14px;
}
.contactBx button {
  background-image: radial-gradient(circle, rgba(94, 89, 192, 0.5858718487) 0%, rgb(94, 89, 192) 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  color: #fff;
  font-family: "DK Pardesi";
  font-size: 16px;
  margin-top: 30px;
}

.contactDetail {
  background: linear-gradient(-40deg, rgb(252, 176, 69) 0%, rgb(255, 138, 0) 50%, rgb(252, 176, 69) 100%);
  padding: 50px;
  border-radius: 32px;
  box-shadow: 0 0 0 3px rgba(252, 169, 56, 0.18);
  color: #FFFFFF;
}
.contactDetail h2, .contactDetail h3 {
  font-family: "DK Pardesi";
}
.contactDetail .contactD {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.contactDetail .contactD .txt {
  width: 50%;
}
.contactDetail a:hover {
  color: #fff;
}

.privacyPoly, .termsCont {
  background: linear-gradient(90deg, rgb(244, 251, 253) 0%, rgb(255, 255, 255) 100%);
}

/***************************************************** 
                        CREATION IMAGINATION PAGE STYLE
*******************************************************/
/********** ITEMS / SORTING SECTION ***********/
.borderB {
  border-bottom: 1px solid #032974;
}

.cib00, .pdb00 {
  text-align: center;
  padding: 70px 0;
}
.cib00 h1, .pdb00 h1 {
  font-family: "DK Pardesi";
  color: #032974;
}
.cib00 ul li, .pdb00 ul li {
  color: #032974;
  font-weight: 500;
}

.ciis00 {
  display: flex;
  justify-content: end;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 20px 0;
}
.ciis00 .cii01, .ciis00 .cis01 {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.ciis00 .cii01 h3, .ciis00 .cis01 h3 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.ciis00 .cii01 select, .ciis00 .cis01 select {
  padding: 7px 12px;
  border-radius: 8px;
  border-color: rgba(38, 38, 38, 0.2);
  outline: none;
}
.ciis00 .cii01 select:focus, .ciis00 .cis01 select:focus {
  border-color: #5E59C0;
}

.ciFh002 {
  display: none;
}

.ciFh003 {
  display: block;
}

.ciFh01 {
  border-radius: 24px 24px 0 0;
  background-color: rgba(87, 196, 231, 0.1);
  padding: 16px;
  border: 1px solid #032974;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ciFh01 h4 {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}
.ciFh01 h5 {
  margin-bottom: 0;
  background: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid #032974;
  font-size: 15px;
  cursor: pointer;
}
.ciFh01 h5:hover {
  background: #032974;
}
.ciFh01 h5:hover a {
  color: #fff;
}

.checkBx {
  position: relative;
}

.checkBx_in {
  background: #fff;
  border: 1px solid #032974;
}

.checkBx label {
  margin-left: 10px;
  padding-top: 3px;
  font-weight: 500;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
}

.checkBx_in:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
  border: 1px solid #032974;
}

input[type=checkbox]:checked + label::before {
  content: "";
  display: block;
  position: absolute;
  text-align: center;
  height: 22px;
  width: 22px;
  left: -1px;
  top: 2px;
  background-color: #5E59C0;
  font-family: "Montserrat";
  border-radius: 4px;
  border: 1px solid rgba(150, 150, 150, 0.3);
}

input[type=checkbox]:checked + label::after {
  content: "✓";
  display: block;
  position: absolute;
  left: 5px;
  top: 3px;
  color: #fff;
}

.ciFb02 {
  border-radius: 0 0 24px 24px;
  background-color: rgba(87, 196, 231, 0.1);
  border-bottom: 1px solid #032974;
  border-left: 1px solid #032974;
  border-right: 1px solid #032974;
}
.ciFb02 .ciFb002 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.ciFb02 .ciFb001 {
  padding: 16px;
}
.ciFb02 .ciFb001:not(:nth-child(1)) {
  border-top: 1px solid #032974;
}
.ciFb02 h4 {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}
.ciFb02 select {
  padding: 7px 12px;
  border-radius: 8px;
  border-color: #032974;
  outline: none;
}
.ciFb02 select:focus {
  border-color: #5E59C0;
}

.page-link:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.active > .page-link, .page-link.active {
  background: #5E59C0;
  color: #fff !important;
  border-color: #5E59C0;
}

.page-link {
  color: #000 !important;
}
.page-link:hover {
  color: #5E59C0 !important;
}

/***************************************************** 
            PRODUCT DETAIL PAGE STYLE
*******************************************************/
/********** PRODUCT IMAGE SECTION ***********/
.pd01, .atc00, .bdF00 {
  padding: 30px 0;
  border-radius: 0 0 64px 64px;
  background: linear-gradient(336deg, rgb(224, 235, 247) 16%, rgb(239, 250, 253) 50%, rgb(208, 239, 248) 100%);
}

.pdi02 {
  background-color: #032974;
  border-radius: 26px;
}

.pdiB03 {
  background-image: url(../images/product-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  color: #fff;
  padding: 15px;
}

.pdiS04 {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}
.pdiS04 img {
  width: 80%;
}

.pdiT05 {
  background-color: #fff;
  padding: 6px;
  border-radius: 10px;
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
}
.pdiT05 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.pdD02 ul {
  display: flex;
  align-items: center;
}
.pdD02 ul li {
  padding: 0 10px;
}
.pdD02 h2 {
  font-family: "DK Pardesi";
  margin-bottom: 15px;
  color: #032974;
}

.pdDT03 {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
}

.pdDT04 {
  color: #383838;
  font-size: 14px;
  font-weight: 500;
}

.pdD05 h5 {
  font-size: 16px;
  font-weight: 500;
}
.pdD05 h5 span {
  font-weight: 600;
}

.pdD06 h4 {
  font-weight: 600;
  font-size: 24px;
}
.pdD06 h5 {
  font-weight: 600;
  font-size: 16px;
}

.pdD07 {
  display: flex;
  background: #fff;
  width: 100%;
  justify-content: space-around;
  padding: 10px 5px;
  border-radius: 100px;
  border: 1px solid #032974;
}
.pdD07 input {
  width: 40%;
  border: none;
  text-align: center;
  color: #000000;
  font-weight: 900;
}
.pdD07 input ::-moz-placeholder {
  color: #000000;
}
.pdD07 input ::placeholder {
  color: #000000;
}

.pdD08 {
  width: 100%;
  padding: 10px 5px;
  border-radius: 100px;
  text-align: center;
  border: 1px solid #032974;
  background-color: #032974;
  color: #fff;
  font-weight: 600;
}
.pdD08:hover {
  background-color: #fff;
  color: #032974;
}

.pdD09 {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  color: #383838;
  margin-top: 10px;
}

.pdTab00 {
  background-color: #F7FCFE;
  border-radius: 32px;
  padding: 20px;
}

.pdTab00 .nav.nav-pills li {
  margin-right: 15px;
}

.pdTab00 .nav-pills .nav-link.active, .pdTab00 .nav-pills .show > .nav-link {
  background-color: #57C4E7;
}

.pdTab00 .nav-pills .nav-link {
  border-radius: 100px;
}

.pdTab00 .nav-link {
  color: #262626;
  border: 1px solid rgba(38, 38, 38, 0.2);
  background: #fff;
}

.pdTab00 p, .pdTab00 ul li {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.pdSp00 h2 {
  color: #032974;
  text-align: center;
}

.pdTable00 tr {
  border-color: #57c4e7;
}

.pdTable00 tr td {
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
}
.pdTable00 tr td:nth-child(even) {
  background-color: #DDF3FA;
}

.pdrew001 {
  border: 1px solid #57c4e7;
  border-radius: 10px;
  overflow: hidden;
}
.pdrew001 .pdrew01 {
  background: #ABE1F3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.pdrew001 .pdrew01 h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.pdrew001 .pdrew01 h5 {
  font-size: 14px;
  margin-bottom: 0;
}
.pdrew001 .pdrew02 {
  padding: 10px;
}
.pdrew001 .pdrew02 h4 {
  font-size: 14px;
}

.pdrew03 h3 {
  font-size: 16px;
  font-weight: 500;
}

.pdDT03 svg:hover path {
  fill: #f3c913;
}

.pdrew03 input, .pdrew03 textarea {
  width: 100%;
  border: 1px solid #57c4e7;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
}
.pdrew03 textarea {
  height: 170px;
  resize: none;
}
.pdrew03 button {
  font-family: "DK Pardesi";
  border: none;
  background: radial-gradient(circle, rgb(70, 209, 254) 0%, rgb(25, 175, 223) 100%);
  color: #fff;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 13px;
}

/***************************************************** 
            ADD TO CART PAGE STYLE
*******************************************************/
/********** ORDER BOX SECTION ***********/
.atcP01 {
  border-radius: 16px;
  border: 1px solid #032974;
  overflow: hidden;
}

.atcHeader02 {
  background-color: #032974;
  padding: 10px;
  color: #FFFFFF;
}

.atcBody03 {
  padding: 20px;
  background-color: #FFFFFF;
}
.atcBody03 .img img {
  border-radius: 10px;
  border: 6px solid #F0F0F0;
}
.atcBody03 p {
  margin-bottom: 5px;
  font-weight: 600;
}
.atcBody03 .atcBx04:not(:nth-last-child(1)) {
  margin-bottom: 15px;
}

.atcBx04 .img {
  background: #F0F0F0; 
  height: 115px; 
  width: 115px; 
  border-radius: 10px;
}

.atcAc05 h5 {
  font-size: 16px;
  font-weight: 600;
}
.atcAc05 textarea {
  width: 100%;
  height: 120px;
  border: 1px solid rgba(94, 89, 192, 0.5);
  border-radius: 16px;
  padding: 10px;
  resize: none;
}

.atcOs06 {
  padding: 15px;
  border-radius: 16px;
  color: #FFFFFF;
  background: linear-gradient(-336deg, rgb(255, 161, 51) 16%, rgb(255, 138, 0) 50%, rgb(255, 161, 51) 100%);
}
.atcOs06 h4 {
  font-family: "DK Pardesi";
  font-size: 18px;
}
.atcOs06 p {
  margin-bottom: 0;
  font-size: 14px;
}
.atcOs06 input {
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  border: none;
  margin-top: 5px;
}
.atcOs06 h6 {
  font-size: 11px;
  margin-top: 5px;
}
.atcOs06 ul li:not(:nth-last-child(1)) {
  border-bottom: 1px solid #919191;
}
.atcOs06 ul li:nth-child(1) {
  padding-bottom: 15px;
  padding-top: 5px;
}
.atcOs06 ul li:nth-child(2), .atcOs06 ul li:nth-child(3) {
  padding: 20px 0;
}
.atcOs06 ul li:nth-child(4) {
  padding-top: 15px;
  padding-bottom: 5px;
}

.atcOsB07 a, .atcOsB08 a {
  width: 100%;
  border-radius: 100px;
  display: block;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.atcOsB07 a {
  background: #FFFFFF;
  border: 1px solid rgba(38, 38, 38, 0.2);
  color: #000000;
}
.atcOsB07 a:hover {
  border: 1px solid #032974;
}

.atcOsB08 a {
  background: #032974;
  border: 1px solid #032974;
  color: #FFFFFF;
}
.atcOsB08 a:hover {
  border: 1px solid #FFFFFF;
}

/***************************************************** 
            BILLING DETAIL PAGE STYLE
*******************************************************/
/********** HEADER SIDE SECTION ***********/
.bdH000 {
  padding: 20px 0;
  background-color: #5E59C0;
}
.bdH000 .bdH01 {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.bdH000 .bdH01 h5 {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 0;
}
.bdH000 .bdH02 ul {
  display: flex;
  justify-content: end;
  align-items: center;
}
.bdH000 .bdH02 ul li.active .circle::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 3px;
  width: 100%;
  height: 100%;
  background-color: #FF8A00;
  font-size: 15px;
}
.bdH000 .bdH02 ul li.active .circle {
  background-color: #FF8A00;
  border: 1px solid #C2C2C2;
  color: #FFFFFF;
}
.bdH000 .bdH02 ul li.active h4 {
  color: #FFFFFF;
}
.bdH000 .bdH02 ul li.active span {
  background-color: #FFFFFF;
}
.bdH000 .bdH02 ul li {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.bdH000 .bdH02 ul li .circle {
  border: 1px solid #C2C2C2;
  font-size: 11px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #C2C2C2;
  position: relative;
  overflow: hidden;
}
.bdH000 .bdH02 ul li h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  color: #C2C2C2;
}
.bdH000 .bdH02 ul li span {
  width: 30px;
  height: 2px;
  background-color: #C2C2C2;
}

.bdOr01 {
  padding: 15px;
  border-radius: 16px;
  color: #FFFFFF;
  background: linear-gradient(-336deg, rgb(255, 161, 51) 16%, rgb(255, 138, 0) 50%, rgb(255, 161, 51) 100%);
}
.bdOr01 h4 {
  font-family: "DK Pardesi";
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3098039216);
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.bdOr01 p {
  margin-bottom: 0;
  font-size: 14px;
}
.bdOr01 .bdOr02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-bottom: 10px;
}
.bdOr01 .bdOr03 {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.bdOr01 .bdOr03 img {
  width: 45px;
  border: 5px solid #FFFFFF;
  border-radius: 3px;
}
.bdOr01 .bdOr04 {
  border-top: 1px solid rgba(255, 255, 255, 0.3098039216);
  padding-top: 15px;
}

/********** FORM SIDE SECTION ***********/
.bdF01 {
  padding-right: 40px;
}

.bdF01 h2, .bdPm00 h2 {
  font-family: "DK Pardesi";
  font-size: 32px;
  color: #032974;
  margin-bottom: 25px;
}
.bdF01 h5, .bdPm00 h5 {
  font-size: 14px;
  font-weight: 600;
}
.bdF01 input.bdFi02, .bdPm00 input.bdFi02 {
  background: #FFFFFF;
  border: 1px solid rgba(94, 89, 192, 0.5);
  border-radius: 8px;
  height: 45px;
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
}
.bdF01 .checkBx label, .bdPm00 .checkBx label {
  margin-left: 4px;
  padding-top: 6px;
  font-weight: 500;
  font-size: 11px;
}

.bdPm00 {
  margin: 40px 0;
}
.bdPm00 label {
  font-size: 14px;
  font-weight: 600;
  margin-left: 4px;
}
.bdPm00 .bdPmb01, .bdPm00 .bdPmb02 {
  background: #FFFFFF;
  border: 1px solid rgba(94, 89, 192, 0.5);
  border-radius: 8px;
  height: 45px;
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
}
.bdPm00 .bdPmb01 input, .bdPm00 .bdPmb02 input {
  transform: translateY(2px);
}
.bdPm00 .bdPmb02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bdPm00 .bdPmb02 img {
  height: 25px;
}
.bdPm00 button {
  width: 100%;
  border-radius: 100px;
  background-color: #032974;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  border: 1px solid #032974;
}
.bdPm00 button:hover {
  background-color: #FFFFFF;
  color: #032974;
}
.bdPm00 h6 {
  font-size: 14px;
  border-top: 1px solid #bdbdbd;
  margin-top: 20px;
  padding-top: 10px;
}

/********** THANK YOU PAGE **********/
.thanky00 {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.thanky00 .thank_img01 {
  width: 200px;
}
.thanky00 h4 {
  font-size: 16px;
  padding: 12px 5px;
}
.thanky00 button {
  border-radius: 100px;
  border: transparent;
  background: radial-gradient(circle, rgb(136, 131, 232) 0%, rgb(94, 89, 192) 100%);
  color: #fff;
  font-size: 16px;
  font-family: "DK Pardesi";
  padding: 12px 24px;
  transition: 0.5s ease;
}
.thanky00 button:hover {
  transform: translateY(-5px);
}
.thanky00 .thank_pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.signBtn {
    width: 100px;
    text-align: center;
}
/********* FOOTER SECTION ***********/
@keyframes animatedBackground {
  0% {
    background-position: 0;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
.fooBox {
  background-image: url("../images/footer-base.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  background-color: #7E7ACD;
  color: #fff;
  font-family: "DK Pardesi";
  animation: animatedBackground 15s linear infinite;
}
.fooBox p {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}
.fooBox ul li {
  margin-bottom: 10px;
}
.fooBox ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

.fooHead {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.fooNavbar ul li a:hover, .fooCon ul li a:hover {
  color: #FF8A00;
}

.fooCon ul li {
  margin-bottom: 6px;
}
.fooCon ul li a {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: flex-start;
}

.fooSocialIcon ul li a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
}
.fooSocialIcon ul li a:hover {
  background-color: #FF8A00 !important;
  border: 1px solid #FFFFFF;
}
.fooSocialIcon ul li a i {
  color: #fff;
  font-size: 16px;
  align-items: center;
  display: flex;
}
.fooSocialIcon ul li:nth-child(1) a {
  background-color: #C13584;
}
.fooSocialIcon ul li:nth-child(2) a {
  background-color: #47D2FF;
}
.fooSocialIcon ul li:nth-child(3) a {
  background-color: #4267B2;
}
.fooSocialIcon ul li:nth-child(4) a {
  background-color: #0077b5;
}
.fooSocialIcon ul li:nth-child(5) a {
  background-color: #25D366;
}
.fooSocialIcon ul li:nth-child(5) a i {
  font-size: 18px;
}

.copyRight {
  border-top: 1px solid #fff;
  font-size: 12px;
}
.copyRight span {
  font-weight: 500;
}
.copyRight a:hover {
  color: #5E59C0;
}

/********** SCREEN SIZE 0px to 480px **********/
@media (max-width: 480px) {
  .HeroImg1 img:nth-child(2) {
    display: none;
  }
  .HeroImg1 img:nth-child(5) {
    bottom: 2%;
    right: 3%;
    width: 240px;
  }
  .HeroImg1 img:nth-child(3) {
    left: -10%;
    width: 170px;
  }
  .HeroImg1Bx h2 {
    font-size: 2.5rem;
    margin-top: 24px;
  }
  .sellerCartoon1 {
    display: none;
  }
  .sellerCartoon2 {
    right: -29px;
    width: 250px;
    bottom: unset;
    top: 65px;
  }
  .brandGrid {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    grid-gap: 16px;
  }
  .productTabs .nav-pills .nav-link {
    margin-bottom: 16px;
  }
  .cartoon3 {
    display: none;
  }
  .peachClr {
    padding: 50px 0;
  }
  .ciis00 {
    flex-direction: column;
    row-gap: 20px;
  }
  .ciFh002 {
    display: flex;
    justify-content: start;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .ciFh002 .bi.bi-list {
    font-size: 20px;
  }
  .ciFh003 {
    display: none;
  }
  .ciFb02 {
    display: none;
  }
  .ciFb02.active {
    display: block;
  }
  .pd01, .atc00 {
    border-radius: 0 0 40px 40px;
  }
  .pdD02 ul li {
    padding: 0 0px;
  }
  .pdTab00 .nav.nav-pills li {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
  .pdTab00 .nav-pills .nav-link {
    border-radius: 100px;
    width: 100%;
  }
  .pdTable00 tr td {
    font-size: 13px;
    font-weight: 500;
    padding: 10px;
  }
  .atcBody03 .atcBx04:not(:nth-last-child(1)) {
    margin-bottom: 25px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 25px;
  }
  .bdPm00 .bdPmb02 img {
    height: 16px;
  }
  .atcBx04 .img {
    height: 80px; 
    width: 80px; 
    border-radius: 5px;
  }
}
/********** SCREEN SIZE 0px to 1023px **********/
@media (max-width: 1023px) {
  .mobileLogo img {
    width: 90px;
  }
  .contactBx {
    padding-right: 0px;
  }
  .footerLogo img {
    width: 120px;
  }
  .bdF01 {
    padding-right: 0;
  }
}
/********** SCREEN SIZE 481px to 1023px **********/
@media screen and (min-width: 481px) and (max-width: 1023px) {
  #sidebar {
    overflow-y: auto;
  }
  .mobBav li a {
    color: #000;
  }
  .cartoon3 {
    top: unset;
    bottom: 0;
  }
}
/********** SCREEN SIZE 0px to 1023px **********/
@media (min-width: 481px) {
  .recomendBody .swiper-button-next {
    right: 12%;
    left: auto;
  }
  .recomendBody .swiper-button-prev {
    left: 12%;
    right: auto;
  }
}
/********** SCREEN SIZE 1280px to 1024px **********//*# sourceMappingURL=style.css.map */