* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
}

.desktop {
  width: 100%;
  margin: 0 auto;
}

/* headerDent */
.topDent {
  margin-top: 72px;
}

.desktop h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 0.8em;
}

.mobile h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 0.8em;
}

.desktop h3 {
  font-weight: strong;
  font-size: 1.8em;
  margin-bottom: .8em;
}

.mobile h3 {
  font-weight: strong;
  font-size: 1.5em;
  margin-bottom: .8em;
}
 
h4 {
  font-weight: strong;
  font-size: 1.4em;
  margin-bottom: 0.8em;
}

p {
  text-align: center;
  line-height: 1.8em;
}

/* desktop starts Here */

/*dFixhead felport*/

.desktop .fixedHeadBox {
  position: fixed;
  background-color: black;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: .5em;
  padding-bottom: .5em;
  z-index: 4;
  box-shadow: -0.1em -0.1em 1em 0.1em #d8d8d8;
}

.desktop .fixedHeadBox .fixheadContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5em 4em;
  text-align: center;
  align-items: center;
}

.desktop .fixheadContainer .homeImg {
  width: 200px;
}

.desktop .fixheadContainer ul li {
  display: inline-block;
  text-align: center;
  align-items: center;
  padding: 0.4em;
  cursor: pointer;
  font-size: 14px;
  color: white;
}

.desktop .fixheadContainer ul li img {
  width: 13px;
  margin-left: 2px;
}

.desktop .fixheadContainer ul li a {
  padding: 0.5em;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.desktop .fixheadContainer ul li ul.AnounceDrop {
  position: absolute;
  display: none;
  background-color: black;
  margin-left: -1em;
  padding-top: 1em;
}

.desktop .fixheadContainer ul li ul.AnounceDrop li {
  padding-right: 2em;
  padding-bottom: 1em;
}

.desktop .fixheadContainer ul li.dropAnnounceHolder:hover ul.AnounceDrop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.desktop .fixheadContainer .productsNsearch {
  display: flex;
  flex-direction: row;
  justify-content: baseline;
  align-items: flex-end;
}

.desktop .fixheadContainer .productsNsearch a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: bold;
}

.desktop .fixheadContainer .productsNsearch a img {
  width: 30px;
}

.desktop .fixheadContainer button {
  display: flex;
  align-items: center;
  text-align: center;
  height: 40px;
  border: none;
  border-radius: 1.5em;
  padding: 0.2em 1.5em;
  background-color: red;
  color: white;
  font-size: 1em;
  font-weight: strong;
  cursor: pointer;
  margin-left: 1em;
}

.desktop .fixheadContainer button img {
  width: 18px;
  margin-right: 0.2em;
}

.desktop .fixheadContainer ul li:hover,
.desktop .fixheadContainer ul li a:hover,
.desktop .fixheadContainer .productsNsearch a:hover {
  color: red;
}

.desktop .productTab {
  display: none;
  z-index: 5;
  position: fixed;
  background-color: #fbfbfb;
  width: 96%;
  height: 80vh;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  box-shadow: 0.3em 0.3em 1em 0.1em #d8d8d8;
  padding: 0.5em 2.2em;
}

.desktop .productTab span {
  float: right;
  font-size: 2em;
  font-weight: bold;
  margin-right: -0.5em;
  cursor: pointer;
}

.desktop .productTab span img {
  width: 0.6em;
}

.desktop .productTab .productGrid ul:first-child {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style-type: none;
  padding-top: 1.5em;
}

.desktop .productTab .productGrid ul:first-child li ul {
  display: flex;
  flex-direction: column;
}

.desktop .productTab .productGrid ul:first-child li ul li {
  padding-bottom: 0.6em;
  display: flex;
  align-items: center;
}

.desktop .productTab .productGrid ul:first-child li ul li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.desktop .productTab .productGrid ul:first-child li ul li a:hover {
  text-decoration: none;
  color: red;
}

.desktop .productTab .productGrid ul:first-child li ul li a img {
  width: 14px;
  margin-right: 1em;
  margin-left: 0.4em;
}

.desktop .productTab .productGrid ul:first-child li ul li.prodTitle {
  margin-bottom: 0.1em;
  margin-top: 0.2em;
}

.desktop .productTab .productGrid ul:first-child li ul li.prodContact {
  margin-top: 5em;
}

.desktop .productTab .productGrid ul:first-child li ul li.prodContact img,
.desktop .productTab .productGrid ul:first-child li ul li.prodEmail img {
  width: 26px;
  margin-right: 1em;
}

.desktop .productTab .productGrid ul:first-child li ul li.prodSocial a img {
  width: 40px;
  margin-top: 1em;
  margin-left: 0;
  margin-right: 0.3em;
}

.desktop .productSearchTab {
  position: fixed;
  z-index: 6;
  width: 100vw;
  height: 100vh;
  max-width: 100%; /* added */
  background-color: rgba(0, 0, 75, 0.9);
  overflow: hidden;
  display: none;
}

.desktop .productSearchTab .prodSearchBod {
  width: 880px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 75, 0);
  color: white;
  text-align: center;
}

.desktop .productSearchTab .prodSearchBod span {
  float: right;
  margin-top: 1.5em;
  cursor: pointer;
}

.desktop .productSearchTab .prodSearchBod span img {
  width: 28px;
}

.desktop .productSearchTab .prodSearchBod h1 {
  margin-top: 120px;
  font-size: 42px;
  margin-bottom: 0.5em;
}

.desktop .productSearchTab .prodSearchBod form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.desktop .productSearchTab .prodSearchBod form input[type="text"] {
  width: 80%;
  font-size: 18px;
  font-weight: bold;
  padding: 0.9em;
  border: none;
  border-radius: 0.6em;
  margin-right: 0.6em;
}

.desktop .productSearchTab .prodSearchBod form button {
  background-color: red;
  border: none;
  padding: 0.6em;
  border-radius: 0.4em;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: white;
  cursor: pointer;
}

.desktop .productSearchTab .prodSearchBod form button span {
  height: 100%;
  margin-top: -100em;
  border: 1px solid blue;
}

.desktop .productSearchTab .prodSearchBod form button img {
  width: 18px;
  margin-right: 0.4em;
  margin-bottom: -0.1em;
}

/*dFixedHead End*/

/* index starts */

/* homeMainSlide Starts here */
.desktop .homeSlideContainer {
  position: relative;
  width: 90vw;
  height: 90vh;
  margin-left: auto;
  margin-right: auto;
}

.desktop .homeSlideContainer .homeSlides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.desktop .homeSlideContainer .homeSlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute
}

.desktop .homeSlideContainer .homeSlides img:not(.homeActive) {
  top: 0;
  left: -100%;
}

.desktop .homeSlideContainer .homeSlidebutton span.homeNext, .desktop .homeSlideContainer .homeSlidebutton span.homePrev {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  padding: 14px;
  color: #eee;
  font-size: 24px;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.desktop .homeSlideContainer .homeSlidebutton span.homeNext {
  right: 20px;
}

.desktop .homeSlideContainer .homeSlidebutton span.homePrev {
  left: 20px;
}

.desktop .homeSlideContainer .homeSlidebutton span.homeNext:hover,
.desktop .homeSlideContainer .homeSlidebutton span.homePrev:hover {
  background-color: #eded6d6;
  opacity: 0.8;
  color: #222;
}

.desktop .homeSlideContainer .homeDotsContainer {
  position: absolute;
  bottom: -50px;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

.desktop .homeSlideContainer .homeDotsContainer .homeDot {
  width: 12px;
  height: 12px;
  margin: 0px 2px;
  background-color: #7A7A7A;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6 ease;
}

.desktop .homeSlideContainer .homeDotsContainer .homeActive {
  background-color: #EE3030;
}
/* homeMainSlide Ends here */

/* trendingTab Starts here */
.desktop .trendingTab {
  width: 100%;
  background-color: #F6F6F6;
  padding-top: 1em;
  padding-bottom: 1em;
}

.desktop .trendingTab .trendingCon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.desktop .trendingTab .trendingCon article {
  width: 220px;
  display: flex;
  align-items: center;
  font-size: 2.2em;
  font-weight: bold;
}

.desktop .trendingTab .trendingCon ul {
  width: 1316px;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  list-style: none;
}

.desktop .trendingTab .trendingCon ul::-webkit-scrollbar {
  display: none;
}

.desktop .trendingTab .trendingCon ul li {
  white-space: nowrap;
  background-color: #EE3030;
  padding-top: 1em;
  padding-bottom: 1em;
  margin: .5em;
  border-radius: 2em;
}

.desktop .trendingTab .trendingCon ul li a{
  color: white;
  text-decoration: none;
  padding: 1em 2em;
}

/* trendingTab Ends here */


/* promoteTab Starts here */
.desktop .promoteTab {
  position: relative;
  margin-top: 9em;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.desktop .promoteTab .promoteStartPoint {
  width: 436px;
  height: 256px;
}

.desktop .promoteTab .promoteStartPoint .promoteRow {
  display: flex;
}

.desktop .promoteTab .promoteStartPoint .promoteRow .promoteSlide,
.desktop .promoteTab .promoteStartPoint .promoteRow .promoteSlidePad {
  min-width: 100%;
  height: 256px;
}

.desktop .promoteTab .promoteRow img,
.desktop .promoteTab .promoteRow img {
  width: 408px;
  border-radius: 15px;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.desktop .promoteTab .promoteSlidebutton span.promoteNext, 
.desktop .promoteTab .promoteSlidebutton span.promotePrev {
  position: relative;
  padding: 14px;
  color: #black;
  font-size: 24px;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.desktop .promoteTab .promoteSlidebutton span.promoteNext {
  right: 20px;
}

.desktop .promoteTab .promoteSlidebutton span.promotePrev {
  left: 20px;
}

.desktop .promoteTab .promoteSlidebutton span.promotePrev:hover,
.desktop .promoteTab .promoteSlidebutton span.promotePrev:hover {
  background-color: #eded6d6;
  opacity: 0.8;
  color: #222;
}

.desktop .promoteTab .promoteDotsContainer {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.desktop .promoteTab .promoteDotsContainer .promoteDot {
  width: 12px;
  height: 12px;
  margin: 0px 4px;
  background-color: #7A7A7A; 
  border-radius: 50%;
  transition: background-color 0.6 ease;
}

.desktop .promoteTab .promoteDotsContainer .promoteActive {
  background-color: #EE3030;
}
/* promoteTab Ends here */

/* productBox Starts here */
.desktop .productBoxTab {
  margin-top: 9em;
}

.desktop .productBoxTab .productBox {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  gap: 3px;
}

.desktop .productBoxTab .productBox article {
  overflow: hidden;
}

.desktop .productBoxTab .productBox article a{
  text-decoration: none;
  color: #54595F;
}

.desktop .productBoxTab .productBox article.disabled {
  display: none;
}

.desktop .productBoxTab .productBox article .productPicBox {
  height: 320px;
  background-color: #F5F2ED;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.desktop .productBoxTab .productBox article .productPicBox p {
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 3em;
}
.desktop .productBoxTab .productBox article .productPicBox p b {
  font-family: 'Garamond', serif;
  font-size: 18px;
}

.desktop .productBoxTab .productBox article .productBoxCover {
  margin-top: -320px;
  height: 320px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}

.desktop .productBoxTab .productBox article .productBoxCover:hover {
  opacity: 0;
  transition: opacity .3s ease-in;
}

.desktop .productBoxTab .productBox article div.productTitleBox {
  text-align: center;
  background-color: #EE3030;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: .5em 0;
}

/* productBox Ends here */

/* UniqueTilesTab Starts here */
.desktop .uniqueTilesTab {
  margin-top: 9em;
}

.desktop .uniqueTilesTab p.first{
  padding: 0 4.5em;
}

.desktop .uniqueTilesTab .limestoneSlideTab,
.desktop .uniqueTilesTab .wallAccentSlideTab {
  background-color: #F4F4F4;
  box-shadow: 0.3em 0.3em 1em 0.1em #F4F4F4;
  padding: 1.2em 1em;
  border-radius: .6em;
  height: 600px;
}

.desktop .uniqueTilesTab .wallAccentSlideTab {
  margin-top: 2em;
}

.desktop .uniqueTilesTab .limestoneSlideTab p,
.desktop .uniqueTilesTab .wallAccentSlideTab p {
  text-align: left;
  font-size: 14px;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileHid {
  width: 100%;
  overflow: hidden;
  margin-top: 3.5em;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer {
  width: 638px;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow {
  display: flex;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlide,
.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlidePad {
  min-width: 100%;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlide img,
.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlidePad img {
  width: 610px;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlide p,
.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlidePad p,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlide p,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlidePad p {
  font-size: 14px;
  color: #EE3030;
} 

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlide p b,
.desktop .uniqueTilesTab .limestoneSlideTab .limeTileContainer .limeTileRow .limeTileSlidePad p b,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlide p b, 
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlidePad p b {
  font-size: 20px;
  letter-spacing: 1px;
  color: #393939;
  padding-right: 20px;
}


.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileHid {
  width: 100%;
  margin-top: 3.5em;
  overflow: hidden;
}

.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer {
  width: 320px;
}

.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow {
  display: flex;
}

.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlide,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlidePad {
  min-width: 100%;
}

.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlide img,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileContainer .wallTileRow .wallTileSlidePad img {
  width: 288px;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileButtons {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #393939;;
  font-weight: bold;
  font-size: 28px;
  z-index: 5;
  margin-top: -235px;
  margin-bottom: 235px;
}

.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileButtons {
  position: relative;
  width: 100%;
  color: #393939;;
  font-weight: bold;
  font-size: 28px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  margin-top: -210px;
  margin-bottom: 210px;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileButtons div.limeTilePrev,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileButtons div.wallTilePrev {
  margin-left: -60px;
  cursor: pointer;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileButtons div.limeTileNext,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileButtons div.wallTileNext {
  margin-right: -60px;
  cursor: pointer;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileDotsCon,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileDotsCon {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileDotsCon .limeTileDot,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileDotsCon .wallTileDot {
  width: 12px;
  height: 12px;
  margin: 0px 3px;
  background-color: #7A7A7A;
  border-radius: 50%;
  transition: background-color 0.6 ease-in;
}

.desktop .uniqueTilesTab .limestoneSlideTab .limeTileDotsCon .limeTileActive,
.desktop .uniqueTilesTab .wallAccentSlideTab .wallTileDotsCon .wallTileActive {
  background-color: #EE3030;
}
/* uniqueTilesTab Ends here */


/* shapeTilesTab Starts here */
.desktop .shapeTilesTab {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 9em;
}

.desktop .shapeTilesTab article {
  width: 50%;
  text-align: center;
}

.desktop .shapeTilesTab article:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 14px;
  width: 45%;
}

.desktop .shapeTilesTab article:first-child a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.desktop .shapeTilesTab article:first-child a div {
  background-color: #EE3030;
  padding: .6em 0;
  width: 160px;
  border-radius: 1.5em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5em;
  box-shadow: 1px 1px 10px rgb(184, 184, 184);
  transition: background-color .3s ease;
}

.desktop .shapeTilesTab article:first-child a div:hover {
  background-color: #C53535;  
}


.desktop .shapeTilesTab article:last-child {
  display: flex;
  justify-content: flex-start;
}

.desktop .shapeTilesTab article img {
  width: 85%;
  border-radius: 1em;
  margin-left: 3em;
}

/* shapeTilesTab Ends here */

.desktop .featuredToiletTab {
  margin-top: 12em;
  text-align: center;
}

.desktop .featuredToiletTab img {
  width: 100%;
  margin-bottom: 3em;
}

.desktop .featuredToiletTab p {
  padding-left: 5em;
  padding-right: 5em;
  font-size: 14px;
  margin-bottom: 3em;
}

.desktop .featuredToiletTab a {
  color: white;
  text-decoration: none;
}

.desktop .featuredToiletTab a div {
  background-color: #EE3030;
  padding: .6em 0;
  width: 180px;
  border-radius: 1.5em;
  box-shadow: 1px 1px 10px rgb(184, 184, 184);
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5em;
  transition: background-color .3s ease;
}

.desktop .featuredToiletTab a div:hover {
  background-color: #C53535;
}

.desktop .featureServicesTab {
  margin-top: 12em;
}

.desktop .featureServicesTab h2 {
  margin-bottom: 1.2em;
}

.desktop .featureServicesTab .threeBox {
  display: grid;
  grid-template-columns: 31% 31% 31%;
  gap: 1.4em;
  justify-content: center;
}

.desktop .featureServicesTab .threeBox article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em 3.5em;
  border-radius: .8em;
  box-shadow: -8px 8px 10px rgb(184, 184, 184);
  transition: box-shadow .5s ease;
}

.desktop .featureServicesTab .threeBox article:hover {
  box-shadow: 12px -8px 10px #F4F4F4
}

.desktop .featureServicesTab .threeBox img {
  width: 300px;
  border-radius: .8em;
  margin-top: 1.5em;
  margin-bottom: 4em; 
}

.desktop .featureServicesTab .threeBox b {
  font-size: 26px;
  color: #EE3030;
}

.desktop .featureServicesTab .threeBox p {
  font-size: 14px;
  margin-top: 1.2em;
  margin-bottom: 3em;
}

.desktop .featureServicesTab .threeBox a {
  text-decoration: none;
  padding: .6em 1.4em;
  background-color: #EE3030;
  color: white;
  border-radius: 1.2em;
  font-size: 16px;
  letter-spacing: 1px;
}

.desktop .surveyTab {
  margin-top: 9em;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.desktop .surveyTab article {
  width: 50%;
  text-align: center;
}

.desktop .surveyTab article:first-child {
  width: 45%;
}

.desktop .surveyTab article img {
  width: 100%;
  padding-left: 2em;
}

.desktop .surveyTab article a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.desktop .surveyTab article a div {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  background-color: #EE3030;
  padding-top: 1em;
  padding-bottom: 1em;
  border-radius: 2em;
  transition: background-color 0.3s ease;
  box-shadow: 1px 1px 10px rgb(184, 184, 184);
}

.desktop .surveyTab article a div:hover {
  background-color: #CC3740;
}

.desktop .surveyTab article a div {

}

.desktop .brandsTab {
  text-align: center;
  font-size: 24px; 
}

.desktop .brandsTab .sevenBox {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto;
  gap: .8em;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.desktop .brandsTab .sevenBox article {
  height: 150px;
  width: 150px;
  box-shadow: -2px 2px 4.5empx rgb(222, 222, 222);
  border-radius: .5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop .brandsTab .sevenBox article img {
  width: 100%;
  height: 100%;
  box-shadow: -6px 6px 10px rgb(222, 222, 222);
  border-radius: .5em;
  transition: all 0.3s ease;
}

.desktop .brandsTab .sevenBox article img:hover {
  width: 105%;
  height: 110%;
}

/* index end */

/* booking starts */

.desktop .bookingTab {
  display: flex;
  justify-content: space-between;
}

.desktop .bookingTab article {
  width: 50%;
}

.desktop .bookingTab article form{
  display: grid;
  grid-template-columns: auto auto;
  gap: 1em;
  padding: 2em 1em;
  box-shadow: 0.3em 0.3em 1em 0.1em #d8d8d8;
  width: 500px;
  margin-left: auto;
}

.desktop .bookingTab article form b{
  font-size: 26px;
}

.desktop .bookingTab article form input,
.desktop .bookingTab article form select {
  width: 100%;
  padding: .8em .6em;
  margin-top: .5em;
  font-size: 16px;
  cursor: pointer;
}

.desktop .bookingTab article form button {
  margin-top: .25em;
  font-size: 20px;
  font-weight: bold;
  border: none;
  background-color: red;
  border-radius: .9em;
  color: white;
  width: 110px;
  height: 40px;
  cursor: pointer;
}

.desktop .bookingTab article form b,
.desktop .bookingTab article form .address,
.desktop .bookingTab article form .store {
  grid-column-start: 1;
  grid-column-end: 3;
}
/* booking end */

/* contactUs starts */
.desktop .contactUsTab {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.desktop .contactUsTab h3 {
  text-align: center;
  color: #424770;
  font-size: 2.6em;
  font-weight: normal;
}

.desktop h3.cSupportHead {
  text-align: center;
  color: #424770;
  font-size: 2.6em;
  font-weight: normal;
}

.desktop .contactUsTab p {
  font-size: 24px;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #424770;
  opacity: .8;
}

.desktop .contactFillTab {
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-bottom: 1em;
}

.desktop .contactFillTab .container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
}

.desktop .contactFillTab article {
  width: 50%;
}

.desktop .contactFillTab article form {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: .5em;
  width: 450px;
  padding: 1.5em 1em;
  border-radius: .3em;
  margin-left: auto;
  background-color: white;
  color: #424770; 
  box-shadow: 1px 20px 35px -10px rgb(73, 72, 72);
  font-size: 16px;
}

.desktop .contactFillTab article form input {
  width: 100%;
  padding: .8em .6em;
  margin-top: .5em;
  font-size: 16px;
  border: 1px solid rgb(213, 213, 213);
  border-radius: .3em;
  background-color: #F6F9FC;
  color: #424770; 
}

.desktop .contactFillTab article form textarea {
  width: 100%;
  height: 100px;
  padding: .8em .6em;
  margin-top: .5em;
  font-size: 16px;
  border: 1px solid rgb(184, 184, 184);
  border-radius: .3em;
  background-color: #F6F9FC;
  cursor: pointer;
}

.desktop .contactFillTab article form .contactNo,
.desktop .contactFillTab article form .workEmail,
.desktop .contactFillTab article form .anythingElse {
  grid-column-start: 1;
  grid-column-end: 3;
  cursor: pointer;
}

.desktop .contactFillTab article form button {
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 3;
  padding: 1.2em 0;
  margin-top: .5em;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  color: white;
  background-color: #EE3030;
  border-radius: .4em;
}

.desktop .contactFillTab article:last-child {
  padding: 2.5em;
  color: white; 
}

.desktop .contactFillTab article:last-child b {
  font-size: 24px;
}

.desktop .contactFillTab article:last-child table {
  width: 350px;
  padding-top: 1em;
  padding-left: .4em;
}

.desktop .contactFillTab article:last-child table tr td {
  line-height: 1.8em;
}

.desktop .contactFillTab article:last-child table tr td:first-child {
  display: flex;
  flex-direction: rows;
  justify-content: flex-start;
  align-items: flex-start;  
  padding-top: .45em; 
}

.desktop .contactFillTab article:last-child table tr td img {
  width: 16px;
}

.desktop .contactFillTab article:last-child table tr:first-child td img {
  width: 12px 
}

.desktop .contactFillTab article:last-child table tr td:last-child {
  padding-left: .5em;
}

.desktop .cSupportTab {
  display: flex;
  justify-content: space-between;
}

.desktop .cSupportTab article {
  text-align: center;
  color: white;
  background-color: #EE3030;
  border-radius: 1em;
  margin: 0 1.2em;
  padding: 1.4em;
  box-shadow: -8px 5px 10px rgb(210,210,210), 8px 5px 10px rgb(210,210,210);
}

.desktop .cSupportTab article div {
  font-size: 22px;
  font-weight: bold;
  padding: 1em;
}
.desktop .cSupportTab article p {
  margin-bottom: 1em;
}

.desktop .cSupportTab article img {
  width: 36px;
  transition: width .3s ease;
}

.desktop .cSupportTab article img:hover {
  width: 46px;
}

/* contactUs end */


/* dealerPage starts */

.desktop .dealerBanner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.desktop .dealerBanner video {
  width: 100%;
}

.desktop .dealerGrid3 {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  gap: 1em;
  place-items: center;
}

.desktop .dealerGrid3 article {
  height: 680px;
  padding: 1.2em .8em;
  box-shadow: 0px 5px 10px rgb(210,210,210), 0px 5px 10px rgb(210,210,210);
  border-radius: .8em; 
  overflow: hidden;
  transition: box-shadow .3s ease;
}

.desktop .dealerGrid3 article:hover {
  box-shadow: -8px 5px 10px rgb(210,210,210), 8px 5px 10px rgb(210,210,210);
}

.desktop .dealerGrid3 .disabledHidden {
  opacity: 0;
}

.desktop .dealerGrid3 article a.tag {
  background-color: black;
  color: white;
  padding: .6em 1.2em;
  border-radius: .4em;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
}

.desktop .dealerGrid3 article span {
  background-color: red;
  color: white;
  padding: .6em 1.2em;
  margin-left: .6em;
  border-radius: .4em;
  font-size: 11px;
  font-weight: bold;
}

.desktop .dealerGrid3 article img.dealerMap {
  width: 100%;
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
}

.desktop .dealerGrid3 article .locationTitle {
  background-color: black;
  color: white;
  margin-top: .5em;
  padding: .4em .6em;
  border-radius: .4em;
  font-size: 22px;
  font-weight: bold;
}

.desktop .dealerGrid3 article table {
  margin-top: .5em;
  padding-left: .4em;
}

.desktop .dealerGrid3 article table tr td{
  padding-top: .1em;
  padding-bottom: .1em;
  font-size: 14px;
  font-weight: light;
  letter-spacing: 1px;
}

.desktop .dealerGrid3 article table tr td:first-child {
  display: flex;
  justify-content: center;
  padding-right: .3em;
}

.desktop .dealerGrid3 article table tr td:first-child img {
  width: 16px;
}

.desktop .dealerGrid3 article table tr td:last-child {
  line-height: 1.5em;
}

.desktop .dealerGrid3 article table tr:nth-child(4) td img {
  width: 12px;
}

.desktop .dealerGrid3 article b {
  font-size: 16px;
  margin-left: 16px;
}

.desktop .dealerGrid3 article img:last-child {
  width: 62px;
}

/* dealerPage ends */


/* careerPage starts */

.desktop .careerBanner {
  width: 100%;
  height: 87vh;
  background-position: center;
  background-size: cover;
  color: white;
}

.desktop .careerBanner .bgCover {
  width: 100%;
  height: 87vh;
  background-color: rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.desktop .careerBanner .bgCover h1 {
  font-size: 72px;
  margin-bottom: 16px;
}

.desktop .hiringTab .popUpTab h6{
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  border-left: 1px solid rgba(0, 0, 0, .15);
  border-right: 1px solid rgba(0, 0, 0, .15);
  padding: .6em .8em;
  font-size: 16px;
  font-weight: bold;
}

.desktop .hiringTab h6.popActive {
  color: #EE3030;
}

.desktop .hiringTab .popUpTab h6:first-child {
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.desktop .hiringTab .popUpTab h6 .plusMinu {
  margin-right: 10px;
  width: 16px;
}

.desktop .hiringTab .popUpTab .closeOpenTab {
  height: 0;
  padding: 0 .8em;
  overflow: hidden;
  border-left: 1px solid rgba(0, 0, 0, .15);
  border-right: 1px solid rgba(0, 0, 0, .15);
  line-height: 1.6em;
}

.desktop .hiringTab .popUpTab .closeOpenTab b {
  line-height: 3em;
}

.desktop .hiringTab .popUpTab .closeOpenTab ul {
  padding-top: .4em;
  padding-bottom: .4em;
  padding-left: 1em
}

.desktop .hiringTab .popUpTab .dropTab {
  height: 230px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  background-color: rgba(0, 0, 0, .04);
}

/* careerEnd starts */

/* Asian Tiles starts Here */

.desktop .ATbanner img {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 2em;
}

.desktop .ATbanner p {
  font-size: 18px;
  color: rgba(0,0,0,0.5);
  font-weight: light;
  padding-left: 2em;
  padding-right: 2em;
}

.desktop .ATtwoGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 48.7% 48.7%;     
  place-self: center;
  gap: 2em;                                              
}

.desktop .ATtwoGrid article {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.desktop .ATtwoGrid article.disabled {
  display: none;
}

.desktop .ATtwoGrid article div {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.desktop .ATtwoGrid article div.title {
  z-index: 2;
  font-size: 3em;
  color: white;
  margin-top: 10px;
  transition: margin-top .6s ease;
  background: none;
  cursor: pointer;
}

.desktop .ATtwoGrid article div.title:hover {
  margin-top: -60px;
}

.desktop .ATtwoGrid article div.title:hover + div.ATcover{
  opacity: 1;
  width: 100%;
  height: 300px;
  margin-top: -240px;
  opacity: 1;
  box-shadow: -8px 5px 10px rgb(210,210,210), 8px 5px 10px rgb(210,210,210);
}

.desktop .ATtwoGrid article div.ATcover {
  z-index: 1;
  width: 0;
  height: 0;
  outline: 1px solid white;
  outline-offset: -30px;
  margin-top: -300px;
  opacity: 0;
  background-color: rgba(0,0,0,.35);
  box-shadow: none;
  transition: opacity .2s ease-in, width .6s ease, height .6s ease, margin-top .6s ease;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  color: white;
  letter-spacing: 3px;
}

/* main page ends here */

/* AsianItemPage Starts Here */

.desktop .ATnav .ATseven{
  position: relative;
  width: 100%;
  display:grid;
  grid-template-columns: auto auto auto auto auto auto auto; /* 7 grid */
  gap: 1em;
  text-align: center;
  padding-top: 2em;
}

.desktop .ATnav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: font-size .3s ease;
}

.desktop .ATnav a .ATcategory{
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: .2em;
} 

.desktop .ATnav a .ATcategory .zoom {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E13F3F;
  border-radius: .2em;
  transition: all .3s ease;
}

.desktop .ATnav a .ATcategory .zoom:hover {
  min-width: 110%;
  height: 120%;
}

.desktop .ATnav a .ATcategory .active {
  background-color: #54595F;
  box-shadow: 2px 1px 10px #888888, -2px 1px 10px #888888;
}


.desktop .ATsection {
  display: grid;
  grid-template-columns: 29% 70%;
  column-gap: 1%;
  height: 1000px;
}
           
.desktop .ATsection form input[type=text]{
  width: 100%;
  margin-top: 0;
  padding: .6em;
  border-radius: .3em;
  border: 1px solid #888888;
  font-size: 16px;
}

.desktop .ATsection form .ATsurface label,
.desktop .ATsection form .ATsize label {
  display: inline-block;
  white-space: nowrap;
  padding-right: .5em;
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 18px;
}

.desktop .ATsection form .ATitemColors .ATcolor {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: blue;
  border: 2px solid #888888;
  border-radius: 50%;
  cursor: pointer;
}

.desktop .ATsection form b.title {
  font-size: 20px;
} 

.desktop .ATsection form hr {
  margin-top: .2em;
  margin-bottom: .5em;
  border: 1px solid rgba(198, 198, 198, 0.25);
}

.desktop .ATsection form .down {
  margin-top: .5em;
  margin-bottom: 1.6em;
}

.desktop .ATsection form button {
  width: 100%;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  border: none;
  background-color: #E13F3F;
  color: white;
  padding-top: 1em;
  padding-bottom: 1em;
  border-radius: .3em;
  cursor: pointer;
}

.desktop .ATsection form button:last-child {
  background-color: black;
  margin-top: .5em;
}


.desktop .ATsection .ATitemsGrid4 {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-auto-rows: 280px;
  column-gap: 1%;
  row-gap: 2.5%;
}

.desktop .ATsection .ATitemsGrid4 article{
  border: 1px solid rgb(198, 198, 198);
  justify-content: center;
  align-items: center;
  padding-top: 1.2em;
  padding-left: 1.2em;
  padding-right: 1.2em;
  transition: box-shadow .3s ease;
  cursor: pointer;
}

.desktop .ATsection .ATitemsGrid4 article:hover {
  box-shadow: 2px 1px 10px rgb(198, 198, 198), -2px 1px 10px rgb(198, 198, 198);
}

.desktop .ATsection .ATitemsGrid4 article img {
  width: 100%;
  padding-bottom: 1em;
}

/* AsianItemPage Ends Here */


/*dFooter*/
.desktop .footer {
  background-color: black;
  color: white;
  padding-bottom: 5em;
  margin-top: 10em;
}

.desktop .footer .FGridThree {
  width: 82%;
  margin: 0 auto;
  padding-top: 5em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: start center;
  gap: 5%;
}

.desktop .footer .FGridThree h3 {
  margin-left: 0;
  font-weight: bold;
}

.desktop .footer .FGridThree ul {
  list-style: none;
}

.desktop .footer ul li {
  margin-bottom: 0.5em;
}

.desktop .footer .quickLinks ul li {
  color: red;
}

.desktop .footer ul li a {
  text-decoration: none;
  font-weight: bold;
  margin-left: 1em;
  color: white;
}

.desktop .footer ul li a:hover {
  color: red;
}

.desktop .footer .contactsUsLink ul li {
  line-height: 2em;
}

.desktop .footer .contactsUsLink ul li img {
  width: 18px;
  margin-right: 1em;
}

.desktop .footer .followUs ul li {
  display: inline-block;
  margin-bottom: 1em;
}

.desktop .footer .followUs ul li img {
  width: 40px;
  margin-right: 1em;
}

.desktop .followUs form {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.desktop .followUs form input,
.desktop .followUs form button {
  width: 100%;
  border: none;
  border-radius: 0.5em;
  margin-bottom: 0.4em;
  padding: 1em;
}

.desktop .followUs form button {
  background-color: red;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 2px;
}
/* footer end */

/* desktop ends Here */

.mobile {
  display: none;
}

/*mobileNTablet Starts*/

/* mFixheadBox */

.mobile .mFixedHeadBox {
  position: fixed;
  background-color: black;
  width: 100%;
  margin: 0 auto;
  z-index: 4;
  box-shadow: -0.1em -0.1em 1em 0.1em #d8d8d8;
  padding: 0;
}

.mobile .mFixedHeadBox .mFixheadContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 0.5em 0;
  text-align: center;
  align-items: center;
}

.mobile .mFixedHeadBox .mFixheadContainer img {
  width: 40px;
  cursor: pointer;
}

.mobile .mFixedHeadBox .mFixheadContainer .mHome img {
  width: 300px;
}

.mobile .mBurgerBox {
  position: fixed;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
}

.mobile .mBurgerBox .mBurgerBG {
  padding: 1em 2em;
  background-color: white;
  margin-top: 1em;
  border: 1px solid red;
  border-radius: 1em;
}

.mobile .mBurgerBox .mBurgerBG .mBurgerX {
  float: right;
  cursor: pointer;
  margin-right: -1em;
}

.mobile .mBurgerBox .mBurgerBG .mBurgerX img {
  width: 25px;
}

.mobile .mBurgerBox .mBurgerBG ul {
  list-style: none;
  margin-top: 1em;
}

.mobile .mBurgerBox .mBurgerBG ul li {
  padding-bottom: 0.5em;
}

.mobile .mBurgerBox .mBurgerBG ul li a {
  text-decoration: none;
  color: #ff0001;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 1px 1px 1px black;
}

/* mFixheadBox end*/


/* mHomeMainSlide Starts here */
.mobile .mHomeSlideContainer {
  position: relative;
  width: 90vw;
  height: 40vh;
  border: 3px solid #eed6d6;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.mobile .mHomeSlideContainer .mHomeSlides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mobile .mHomeSlideContainer .mHomeSlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute
}

.mobile .mHomeSlideContainer .mHomeSlides img:not(.mHomeActive) {
  top: 0;
  left: -100%;
}

.mobile .mHomeSlideContainer .mHomeSlidebutton span.mHomeNext, 
.mobile .mHomeSlideContainer .mHomeSlidebutton span.mHomePrev {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  padding: 14px;
  color: #eee;
  font-size: 24px;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.mobile .mHomeSlideContainer .mHomeSlidebutton span.homeNext {
  right: 20px;
}

.mobile .mHomeSlideContainer .mHomeSlidebutton span.homePrev {
  left: 20px;
}

.mobile .mHomeSlideContainer .mHomeSlidebutton span.homeNext:hover,
.mobile .mHomeSlideContainer .mHomeSlidebutton span.homePrev:hover {
  background-color: #eded6d6;
  opacity: 0.8;
  color: #222;
}

.mobile .mHomeSlideContainer .mHomeDotsContainer {
  display: none;
}

.mobile .mHomeSlideContainer .mHomeDotsContainer .mHomeDot {
  width: 12px;
  height: 12px;
  margin: 0px 2px;
  background-color: #7A7A7A;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6 ease;
}

.mobile .mHomeSlideContainer .mHomeDotsContainer .mHomeActive {
  background-color: #EE3030;
}
/* mHomeSlide Ends here */

/* mTrendingTab Starts here */
.mobile .mTrendingTab {
  width: 100%;
  background-color: #F6F6F6;
  padding-top: 1em;
  padding-bottom: 1em;
}

.mobile .mTrendingTab .mTrendingCon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.mobile .mTrendingTab .mTrendingCon article {
  width: 220px;
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}

.mobile .mTrendingTab .mTrendingCon ul {
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  list-style: none;
}

.mobile .mTrendingTab .mTrendingCon ul::-webkit-scrollbar {
  display: none;
}

.mobile .mTrendingTab .mTrendingCon ul li {
  white-space: nowrap;
  background-color: #EE3030;
  padding-top: .5em;
  padding-bottom: .5em;
  margin: .5em;
  border-radius: 2em;
}

.mobile .mTrendingTab .mTrendingCon ul li a{
  color: white;
  text-decoration: none;
  padding: .5em 1.4em;
}
/* mTrendingTab Ends here */

/* mobile promoteTab Starts here */
.mobile .mPromoteTab {
  position: relative;
  margin-top: 9em;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.mobile .mPromoteTab .mPromoteStartPoint {
  width: 436px;
  height: 256px;
}

.mobile .mPromoteTab .mPromoteStartPoint .mPromoteRow {
  display: flex;
}

.mobile .mPromoteTab .mPromoteStartPoint .mPromoteRow .mPromoteSlide,
.mobile .mPromoteTab .mPromoteStartPoint .mPromoteRow .mPromoteSlidePad {
  min-width: 100%;
  height: 256px;
}

.mobile .mPromoteTab .mPromoteRow img,
.mobile .mPromoteTab .mPromoteRow img {
  width: 408px;
  border-radius: 15px;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.mobile .mPromoteTab .mPromoteSlidebutton span.mPromoteNext, 
.mobile .mPromoteTab .mPromoteSlidebutton span.mPromotePrev {
  position: relative;
  padding: 14px;
  color: #black;
  font-size: 24px;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.mobile .mPromoteTab .mPromoteSlidebutton span.mPromoteNext {
  right: 20px;
}

.mobile .mPromoteTab .mPromoteSlidebutton span.mPromotePrev {
  left: 20px;
}

.mobile .mPromoteTab .mPromoteSlidebutton span.mPromotePrev:hover,
.mobile .mPromoteTab .mPromoteSlidebutton span.mPromotePrev:hover {
  background-color: #eded6d6;
  opacity: 0.8;
  color: #222;
}

.mobile .mPromoteTab .mPromoteDotsContainer {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.mobile .mPromoteTab .mPromoteDotsContainer .mPromoteDot {
  width: 12px;
  height: 12px;
  margin: 0px 4px;
  background-color: #7A7A7A; 
  border-radius: 50%;
  transition: background-color 0.6 ease;
}

.mobile .mPromoteTab .mPromoteDotsContainer .mPromoteActive {
  background-color: #EE3030;
}
/* mobile promoteTab Ends here */

/* mobile productBox Starts here */
.desktop .productBoxTab {
  margin-top: 9em;
}

.mobile .productBoxTab .productBox {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 3px;
}

.mobile .productBoxTab .productBox article {
  overflow: hidden;
}

.mobile .productBoxTab .productBox article a{
  text-decoration: none;
  color: #54595F;
}

.mobile .productBoxTab .productBox article.disabled {
  display: none;
}

.mobile .productBoxTab .productBox article .productPicBox {
  height: 450px;
  background-color: #F5F2ED;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mobile .productBoxTab .productBox article .productBoxCover {
  margin-top: -450px;
  height: 450px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}

.mobile .productBoxTab .productBox article .productPicBox p {
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 3em;
}
.mobile .productBoxTab .productBox article .productPicBox p b {
  font-family: 'Garamond', serif;
  font-size: 18px;
}

.mobile .productBoxTab .productBox article .productBoxCover:hover {
  opacity: 0;
  transition: opacity .3s ease-in;
}

.mobile .productBoxTab .productBox article div.productTitleBox {
  text-align: center;
  background-color: #EE3030;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: .5em 0;
}

/* mobile productBox Ends here */

/* mobile UniqueTilesTab Starts here */
.mobile .uniqueTilesTab {
  margin-top: 9em;
}

.mobile .uniqueTilesTab p.first{
  padding: 0 4.5em;
}

.mobile .uniqueTilesTab .limestoneSlideTab,
.mobile .uniqueTilesTab .wallAccentSlideTab {
  background-color: #F4F4F4;
  box-shadow: 0.3em 0.3em 1em 0.1em #F4F4F4;
  padding: 1.2em 1em;
  border-radius: .6em;
  height: 650px;
}

.mobile .uniqueTilesTab .wallAccentSlideTab {
  margin-top: 2em;
}

.mobile .uniqueTilesTab .limestoneSlideTab p,
.mobile .uniqueTilesTab .wallAccentSlideTab p {
  text-align: left;
  font-size: 14px;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileHid {
  width: 100%;
  overflow: hidden;
  margin-top: 3.5em;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer {
  width: 638px;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow {
  display: flex;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlide,
.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlidePad {
  min-width: 100%;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlide img,
.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlidePad img {
  width: 610px;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlide p,
.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlidePad p,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlide p,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlidePad p {
  font-size: 14px;
  color: #EE3030;
} 

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlide p b,
.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileContainer .mLimeTileRow .mLimeTileSlidePad p b,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlide p b, 
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlidePad p b {
  font-size: 20px;
  letter-spacing: 1px;
  color: #393939;
  padding-right: 20px;
}


.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileHid {
  width: 100%;
  margin-top: 3.5em;
  overflow: hidden;
}

.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer {
  width: 320px;
}

.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow {
  display: flex;
}

.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlide,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlidePad {
  min-width: 100%;
}

.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlide img,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileContainer .mWallTileRow .mWallTileSlidePad img {
  width: 288px;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileButtons {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #393939;;
  font-weight: bold;
  font-size: 28px;
  z-index: 5;
  margin-top: -235px;
  margin-bottom: 235px;
  display: none;
}

.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileButtons {
  position: relative;
  width: 100%;
  color: #393939;;
  font-weight: bold;
  font-size: 28px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  margin-top: -210px;
  margin-bottom: 210px;
  display: none;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileButtons,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileButtons {
  display: none;
}



.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileButtons div.mLimeTilePrev,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileButtons div.mWallTilePrev {
  margin-left: -60px;
  cursor: pointer;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileButtons div.mLimeTileNext,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileButtons div.mWallTileNext {
  margin-right: -60px;
  cursor: pointer;
}


.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileDotsCon,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileDotsCon {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileDotsCon .mLimeTileDot,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileDotsCon .mWallTileDot {
  width: 12px;
  height: 12px;
  margin: 0px 3px;
  background-color: #7A7A7A;
  border-radius: 50%;
  transition: background-color 0.6 ease-in;
}

.mobile .uniqueTilesTab .limestoneSlideTab .mLimeTileDotsCon .mLimeTileActive,
.mobile .uniqueTilesTab .wallAccentSlideTab .mWallTileDotsCon .mWallTileActive {
  background-color: #EE3030;
}
/* mobile uniqueTilesTab Ends here */

/* shapeTilesTab Starts here */
.mobile .shapeTilesTab {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 9em;
}

.mobile .shapeTilesTab article {
  width: 50%;
  text-align: center;
}

.mobile .shapeTilesTab article:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 14px;
  width: 45%;
}

.mobile .shapeTilesTab article:first-child a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.mobile .shapeTilesTab article:first-child a div {
  background-color: #EE3030;
  padding: .6em 0;
  width: 160px;
  border-radius: 1.5em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5em;
  box-shadow: 1px 1px 10px rgb(184, 184, 184);
  transition: background-color .3s ease;
}

.mobile .shapeTilesTab article:first-child a div:hover {
  background-color: #C53535;  
}


.mobile .shapeTilesTab article:last-child {
  display: flex;
  justify-content: flex-start;
}

.mobile .shapeTilesTab article img {
  width: 85%;
  border-radius: 1em;
  margin-left: 3em;
}

/* mobile shapeTilesTab Ends here */

/* mobile Featured Tab Starts here */
.mobile .featuredToiletTab {
  margin-top: 12em;
  text-align: center;
}

.mobile .featuredToiletTab img {
  width: 100%;
  margin-bottom: 3em;
}

.mobile .featuredToiletTab p {
  padding-left: 5em;
  padding-right: 5em;
  font-size: 14px;
  margin-bottom: 3em;
}

.mobile .featuredToiletTab a {
  color: white;
  text-decoration: none;
}

.mobile .featuredToiletTab a div {
  background-color: #EE3030;
  padding: .6em 0;
  width: 180px;
  border-radius: 1.5em;
  box-shadow: 1px 1px 10px rgb(184, 184, 184);
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5em;
  transition: background-color .3s ease;
}

.mobile .featuredToiletTab a div:hover {
  background-color: #C53535;
}

.mobile .featureServicesTab {
  margin-top: 12em;
}

.mobile .featureServicesTab h2 {
  margin-bottom: 1.2em;
}

.mobile .featureServicesTab .threeBox {
  display: grid;
  grid-template-columns: 80%;
  gap: 1.4em;
  justify-content: center;
}

.mobile .featureServicesTab .threeBox article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em 3.5em;
  border-radius: .8em;
  box-shadow: -8px 8px 10px rgb(184, 184, 184);
  transition: box-shadow .5s ease;
}

.mobile .featureServicesTab .threeBox article:hover {
  box-shadow: 12px -8px 10px #F4F4F4
}

.mobile .featureServicesTab .threeBox img {
  width: 300px;
  border-radius: .8em;
  margin-top: 1.5em;
  margin-bottom: 4em; 
}

.mobile .featureServicesTab .threeBox b {
  font-size: 26px;
  color: #EE3030;
}

.mobile .featureServicesTab .threeBox p {
  font-size: 14px;
  margin-top: 1.2em;
  margin-bottom: 3em;
}

.mobile .featureServicesTab .threeBox a {
  text-decoration: none;
  padding: .6em 1.4em;
  background-color: #EE3030;
  color: white;
  border-radius: 1.2em;
  font-size: 16px;
  letter-spacing: 1px;
}

/* mobile surveyTab starts Here */

.mobile .surveyTab {
  margin-top: 9em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile .surveyTab article {
  width: 50%;
  text-align: center;
}

.mobile .surveyTab article:first-child {
  width: 45%;
}

.mobile .surveyTab article:first-child h2 {
  font-size: 22px;
}

.mobile .surveyTab article img {
  width: 100%;
  padding-left: 2em;
}

.mobile .surveyTab article a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.mobile .surveyTab article a div {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  background-color: #EE3030;
  padding-top: 1em;
  padding-bottom: 1em;
  border-radius: 2em;
  transition: background-color 0.3s ease;
  box-shadow: 1px 1px 10px rgb(184, 184, 184);
}

.mobile .surveyTab article a div:hover {
  background-color: #CC3740;
}


/* mobile Brands starts Here */
.mobile .brandsTab {
  text-align: center;
  font-size: 24px; 
}

.mobile .brandsTab .sevenBox {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: .8em;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.mobile .brandsTab .sevenBox article {
  height: 150px;
  width: 150px;
  box-shadow: -2px 2px 4.5empx rgb(222, 222, 222);
  border-radius: .5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile .brandsTab .sevenBox article img {
  width: 100%;
  height: 100%;
  box-shadow: -6px 6px 10px rgb(222, 222, 222);
  border-radius: .5em;
  transition: width 0.3s ease, height 0.3s ease;
}

.mobile .brandsTab .sevenBox article img:hover {
  width: 110%;
  height: 110%;
}

/* mobile index end */

/* contactUs starts */
.mobile .contactUsTab {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover; 
  margin-top: 8em;
}

.mobile .contactUsTab h3 {
  text-align: center;
  color: #424770;
  font-size: 2em;
  font-weight: normal;
}

.mobile h3.cSupportHead {
  text-align: center;
  color: #424770;
  font-size: 2em;
  font-weight: normal;
}

.mobile .contactUsTab p {
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #424770;
  opacity: .8;
}

.mobile .contactFillTab {
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-bottom: 1em;
}

.mobile .contactFillTab .container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
}

.mobile .contactFillTab article {
  width: 100%;
}

.mobile .contactFillTab article form {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: .5em;
  width: 450px;
  padding: 1.5em 1em;
  margin-left: auto;
  margin-right: auto;
  border-radius: .3em;
  background-color: white;
  color: #424770; 
  box-shadow: 1px 20px 35px -10px rgb(73, 72, 72);
  font-size: 16px;
}

.mobile .contactFillTab article form input {
  width: 100%;
  padding: .8em .6em;
  margin-top: .5em;
  font-size: 16px;
  border: 1px solid rgb(213, 213, 213);
  border-radius: .3em;
  background-color: #F6F9FC;
  color: #424770; 
}

.mobile .contactFillTab article form textarea {
  width: 100%;
  height: 100px;
  padding: .8em .6em;
  margin-top: .5em;
  font-size: 16px;
  border: 1px solid rgb(184, 184, 184);
  border-radius: .3em;
  background-color: #F6F9FC;
  cursor: pointer;
}

.mobile .contactFillTab article form .contactNo,
.mobile .contactFillTab article form .workEmail,
.mobile .contactFillTab article form .anythingElse {
  grid-column-start: 1;
  grid-column-end: 3;
  cursor: pointer;
}

.mobile .contactFillTab article form button {
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 3;
  padding: 1.2em 0;
  margin-top: .5em;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  color: white;
  background-color: #EE3030;
  border-radius: .4em;
}

.mobile .contactFillTab article:last-child {
  padding: 2.5em;
  color: white; 
}

.mobile .contactFillTab article.disabled {
  display: none;
}

.mobile .contactFillTab article:last-child b {
  font-size: 24px;
}

.mobile .contactFillTab article:last-child table {
  width: 350px;
  padding-top: 1em;
  padding-left: .4em;
}

.mobile .contactFillTab article:last-child table tr td {
  line-height: 1.8em;
}

.mobile .contactFillTab article:last-child table tr td:first-child {
  display: flex;
  flex-direction: rows;
  justify-content: flex-start;
  align-items: flex-start;  
  padding-top: .45em; 
}

.mobile .contactFillTab article:last-child table tr td img {
  width: 16px;
}

.mobile .contactFillTab article:last-child table tr:first-child td img {
  width: 12px 
}

.mobile .contactFillTab article:last-child table tr td:last-child {
  padding-left: .5em;
}

.mobile .cSupportTab {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
}

.mobile .cSupportTab article {
  text-align: center;
  color: white;
  background-color: #EE3030;
  border-radius: 1em;
  padding: 1.4em;
  margin-bottom: 2em;
  box-shadow: -8px 5px 10px rgb(210,210,210), 8px 5px 10px rgb(210,210,210);
}

.mobile .cSupportTab article div {
  font-size: 22px;
  font-weight: bold;
  padding: 1em;
}
.mobile .cSupportTab article p {
  margin-bottom: 1em;
}

.mobile .cSupportTab article img {
  width: 36px;
  transition: width .3s ease;
}

.mobile .cSupportTab article img:hover {
  width: 46px;
}

/* mobile contactUs end */

/* mobile booking starts */

.mobile .bookingTab {
  display: flex;
  justify-content: space-between;
  margin-top: 8em;
}

.mobile .bookingTab article {
  width: 100%
}

.mobile .bookingTab article form{
  display: grid;
  grid-template-columns: auto auto;
  gap: 1em;
  padding: 2em 1em;
  box-shadow: 0.3em 0.3em 1em 0.1em #d8d8d8;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mobile .bookingTab article form b{
  font-size: 26px;
}

.mobile .bookingTab article form input,
.mobile .bookingTab article form select {
  width: 100%;
  padding: .8em .6em;
  margin-top: .5em;
  font-size: 16px;
  cursor: pointer;
}

.mobile .bookingTab article form button {
  margin-top: .25em;
  font-size: 20px;
  font-weight: bold;
  border: none;
  background-color: red;
  border-radius: .9em;
  color: white;
  width: 110px;
  height: 40px;
  cursor: pointer;
}

.mobile .bookingTab article form b,
.mobile .bookingTab article form .address,
.mobile .bookingTab article form .store {
  grid-column-start: 1;
  grid-column-end: 3;
}
/* mobile booking end */

/* mobile dealerPage starts */

.mobile .dealerBanner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mobile .dealerBanner video {
  width: 100%;
}

.mobile .dealerGrid3 {
  margin-top: -9em;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 1em;
  place-items: center;
}

.mobile .dealerGrid3 article {
  height: 680px;
  padding: 1.2em .8em;
  box-shadow: 0px 5px 10px rgb(210,210,210), 0px 5px 10px rgb(210,210,210);
  border-radius: .8em; 
  overflow: hidden;
  transition: box-shadow .3s ease;
}

.mobile .dealerGrid3 article:hover {
  box-shadow: -8px 5px 10px rgb(210,210,210), 8px 5px 10px rgb(210,210,210);
}

.desktop .dealerGrid3 .disabledHidden {
  opacity: 0;
}

.mobile .dealerGrid3 article a.tag {
  background-color: black;
  color: white;
  padding: .6em 1.2em;
  border-radius: .4em;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
}

.mobile .dealerGrid3 article span {
  background-color: red;
  color: white;
  padding: .6em 1.2em;
  margin-left: .6em;
  border-radius: .4em;
  font-size: 11px;
  font-weight: bold;
}

.mobile .dealerGrid3 article img.dealerMap {
  width: 100%;
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
}

.mobile .dealerGrid3 article .locationTitle {
  background-color: black;
  color: white;
  margin-top: .5em;
  padding: .4em .6em;
  border-radius: .4em;
  font-size: 22px;
  font-weight: bold;
}

.mobile .dealerGrid3 article table {
  margin-top: .5em;
  padding-left: .4em;
}

.mobile .dealerGrid3 article table tr td{
  padding-top: .1em;
  padding-bottom: .1em;
  font-size: 14px;
  font-weight: light;
  letter-spacing: 1px;
}

.mobile .dealerGrid3 article table tr td:first-child {
  display: flex;
  justify-content: center;
  padding-right: .3em;
}

.mobile .dealerGrid3 article table tr td:first-child img {
  width: 16px;
}

.mobile .dealerGrid3 article table tr td:last-child {
  line-height: 1.5em;
}

.mobile .dealerGrid3 article table tr:nth-child(4) td img {
  width: 12px;
}

.mobile .dealerGrid3 article b {
  font-size: 16px;
  margin-left: 16px;
}

.mobile .dealerGrid3 article img:last-child {
  width: 62px;
}

.mobile .dealerGrid3 article.disabled {
  display: none;
}

/* mobile dealerPage ends */

/* careerPage starts */

.mobile .careerBanner {
  width: 100%;
  height: 87vh;
  background-position: center;
  background-size: cover;
  color: white;
}

.mobile .careerBanner .bgCover {
  width: 100%;
  height: 87vh;
  background-color: rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.mobile .careerBanner .bgCover h1 {
  font-size: 72px;
  margin-bottom: 16px;
}

.mobile .hiringTab .popUpTab h6{
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  border-left: 1px solid rgba(0, 0, 0, .15);
  border-right: 1px solid rgba(0, 0, 0, .15);
  padding: .6em .8em;
  font-size: 16px;
  font-weight: bold;
}

.mobile .hiringTab h6.popActive {
  color: #EE3030;
}

.mobile .hiringTab .popUpTab h6:first-child {
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.mobile .hiringTab .popUpTab h6 .plusMinu {
  margin-right: 10px;
  width: 16px;
}

.mobile .hiringTab .popUpTab .closeOpenTab {
  height: 0;
  padding: 0 .8em;
  overflow: hidden;
  border-left: 1px solid rgba(0, 0, 0, .15);
  border-right: 1px solid rgba(0, 0, 0, .15);
  line-height: 1.6em;
}

.mobile .hiringTab .popUpTab .closeOpenTab b {
  line-height: 3em;
}

.mobile .hiringTab .popUpTab .closeOpenTab ul {
  padding-top: .4em;
  padding-bottom: .4em;
  padding-left: 1em
}

.mobile .hiringTab .popUpTab .dropTab {
  height: 230px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  background-color: rgba(0, 0, 0, .04);
}
/* careerEnd starts */

/* Asian Tiles starts Here */

.mobile .ATbanner img {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 2em;
}

.mobile .ATbanner p {
  font-size: 18px;
  color: rgba(0,0,0,0.5);
  font-weight: light;
  padding-left: 2em;
  padding-right: 2em;
}

.mobile .ATtwoGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 48.7% 48.7%;     
  place-self: center;
  gap: 2em;                                              
}

.mobile .ATtwoGrid article {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mobile .ATtwoGrid article.disabled {
  display: none;
}

.mobile .ATtwoGrid article div {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.mobile .ATtwoGrid article div.title {
  z-index: 2;
  font-size: 3em;
  color: white;
  margin-top: 10px;
  transition: margin-top .6s ease;
  background: none;
  cursor: pointer;
}

.mobile .ATtwoGrid article div.title:hover {
  margin-top: -60px;
}

.mobile .ATtwoGrid article div.title:hover + div.ATcover{
  opacity: 1;
  width: 100%;
  height: 300px;
  margin-top: -240px;
  opacity: 1;
  box-shadow: -8px 5px 10px rgb(210,210,210), 8px 5px 10px rgb(210,210,210);
}

.mobile .ATtwoGrid article div.ATcover {
  z-index: 1;
  width: 0;
  height: 0;
  outline: 1px solid white;
  outline-offset: -30px;
  margin-top: -300px;
  opacity: 0;
  background-color: rgba(0,0,0,.35);
  box-shadow: none;
  transition: opacity .2s ease-in, width .6s ease, height .6s ease, margin-top .6s ease;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  color: white;
  letter-spacing: 3px;
}

/* main page ends here */

/* AsianItemPage Starts Here */

.mobile .ATnav .ATseven{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto; /* 4 grid */
  gap: 1em;
  text-align: center;
  padding-top: 2em;
}

.mobile .ATnav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: font-size .3s ease;
}

.mobile .ATnav a .ATcategory{
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: .2em;
} 

.mobile .ATnav a .ATcategory .zoom {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E13F3F;
  border-radius: .2em;
  transition: all .3s ease;
}

.mobile .ATnav a .ATcategory .zoom:hover {
  min-width: 110%;
  height: 120%;
}

.mobile .ATnav a .ATcategory .active {
  background-color: #54595F;
  box-shadow: 2px 1px 10px #888888, -2px 1px 10px #888888;
}


.mobile .ATsection {
  display: grid;
  grid-template-columns: 28% 69%;
  column-gap: 3%;
  width: 100%;
}
           
.mobile .ATsection form input[type=text]{
  width: 100%;
  margin-top: 0;
  padding: .6em;
  border-radius: .3em;
  border: 1px solid #888888;
  font-size: 16px;
}

.mobile .ATsection form .ATsurface label,
.mobile .ATsection form .ATsize label {
  display: inline-block;
  white-space: nowrap;
  padding-right: .5em;
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 18px;
}

.mobile .ATsection form .ATitemColors .ATcolor {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: blue;
  border: 2px solid #888888;
  border-radius: 50%;
  cursor: pointer;
}

.mobile .ATsection form b.title {
  font-size: 20px;
} 

.mobile .ATsection form hr {
  margin-top: .2em;
  margin-bottom: .5em;
  border: 1px solid rgba(198, 198, 198, 0.25);
}

.mobile .ATsection form .down {
  margin-top: .5em;
  margin-bottom: 1.6em;
}

.mobile .ATsection form button {
  width: 100%;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  border: none;
  background-color: #E13F3F;
  color: white;
  padding-top: 1em;
  padding-bottom: 1em;
  border-radius: .3em;
  cursor: pointer;
}

.mobile .ATsection form button:last-child {
  background-color: black;
  margin-top: .5em;
}


.mobile .ATsection .ATitemsGrid4 {
  display: grid;
  grid-template-columns: auto auto; /* 2 grid */
  grid-auto-rows: 340px;
  column-gap: 3%;
  row-gap: .30%;
}

.mobile .ATsection .ATitemsGrid4 article{
  border: 1px solid rgb(198, 198, 198);
  justify-content: center;
  align-items: center;
  padding-top: 1.2em;
  padding-left: 1.2em;
  padding-right: 1.2em;
  transition: box-shadow .3s ease;
  cursor: pointer;
}

.mobile .ATsection .ATitemsGrid4 article:hover {
  box-shadow: 2px 1px 10px rgb(198, 198, 198), -2px 1px 10px rgb(198, 198, 198);
}

.mobile .ATsection .ATitemsGrid4 article img {
  width: 100%;
  padding-bottom: 1em;
}

/* AsianItemPage Ends Here */


/* mFooter starts */
.mobile .mFooter {
  background-color: black;
  color: white;
  padding-top: 10em;
  margin-top: 10em;
}

.mFooter h3 {
  margin-bottom: 5px;
}

.mFooter h4 {
  margin-bottom: 1px;
  margin-top: 1em;
}

.mobile .mFooter .mFGridTwo {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto auto auto);
  place-items: start center;
  gap: 1em;
}

.mobile .mFooter .mFGridTwo h3 {
  margin-left: 0;
  font-weight: bold;
}

.mobile .mFooter .mFGridTwo ul {
  list-style: none;
}

.mobile .mFooter ul li {
  margin-bottom: 0.25em;
}

.mobile .mFooter ul li a {
  text-decoration: none;
  font-weight: bold;
  margin-left: 1em;
  color: white;
}

.mobile .mFooter ul li a:hover {
  color: red;
}

.mobile .mFooter .mContactsUsLink ul li {
  line-height: 2em;
}

.mobile .mFooter .mContactsUsLink ul li img {
  width: 18px;
  margin-right: 1em;
}

.mobile .mFooter .mFollowUs {
  grid-column-start: 1;
  grid-column-end: 3;
  padding: 2.8em;
}

.mobile .mFooter .mFollowUs ul li {
  display: inline-block;
  margin-bottom: 1em;
}

.mobile .mFooter .mFollowUs ul li img {
  width: 40px;
  margin-right: 1em;
}

.mobile .mFollowUs form {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.mobile .mFollowUs form input,
.mobile .mFollowUs form button {
  width: 100%;
  border: none;
  border-radius: 0.5em;
  margin-bottom: 0.4em;
  padding: 1em;
}

.mobile .mFollowUs form button {
  background-color: red;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 2px;
}

/* footer end */

.container {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}

/* desktop */
@media (max-width: 1536px) {
  .container {
    max-width: 1280px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1024px;
  }

  /*fixhead felport*/

  .desktop .fixedHeadBox {
    height: 68px;
    box-shadow: -0.1em -0.1em 1em 0.1em #d8d8d8;
  }

  .desktop .fixedHeadBox .fixheadContainer {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .desktop .fixheadContainer .homeImg {
    width: 180px;
  }

  .desktop .ATtwoGrid {
    grid-template-columns: 48.38% 48.38%;                                                
  }
  /*fixedHead End*/

  /* ATcontent */

  .desktop .ATsection .ATitemsGrid4 article span{
    font-size: 14px;
  }

  .desktop .ATsection .ATitemsGrid4 {
    grid-auto-rows: 240px;
  }

  /*footerXtra */

  .desktop .footer {
    padding-bottom: 3em;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .desktop .footer .FGridThree {
    width: 100%;
  }

  /* footerXtra end */
}

/* mobileNTablet Mode */
@media (max-width: 1024px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }

  .container {
    max-width: 768px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 640px;
  }

  .mobile .mBookAppoint-container {
    height: 600px;
  }

  .mobile .ATtwoGrid article div.ATcover {
    font-size: 14px;
  }

  .mobile .ATtwoGrid article div.tooLong {
    font-size: 2.4em;
  }

  .mobile .ATsection .ATitemsGrid4 {
    grid-auto-rows: 280px;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 475px;
  }

  .mobile .mFooter .mQuickLinks ul li {
    font-size: 14px;
    color: red;
  }

  .mobile .mFooter .mQuickLinks ul li a {
    font-size: 14px;
  }

  .mobile .mBookAppoint-container {
    height: 500px;
  }

  .mobile .productBoxTab .productBox article .productPicBox {
    height: 330px;
  }
  
  .mobile .productBoxTab .productBox article .productBoxCover {
    margin-top: -330px;
    height: 330px;
  }

  .mobile .shapeTilesTab {
    flex-direction: column-reverse;
  }

  .mobile .shapeTilesTab article {
    width: 100%;
    padding-bottom: 1em;
    padding-left: 0;
    padding-right: 0;
  }
  
  .mobile .shapeTilesTab article:first-child {
    width: 450px;
    margin: 0;
    padding: 0;
  }

  .mobile .mHomeSlideContainer {
    height: 40vh;
  }

  .mobile .dealerBanner {
    height: 50vh;
  }
  
  .mobile .dealerGrid3 {
    margin-top: 1em;
    grid-template-columns: 90%;
    justify-content: center;
  }

  .mobile .ATtwoGrid {
    grid-template-columns: auto;
  }

  .mobile .ATtwoGrid article div.tooLong {
    font-size: 2.8em;
  }

  .mobile .ATsection {
  grid-template-columns: auto;
  }

  .mobile .ATsection .ATitemsGrid4 {
    grid-template-columns: auto; /* just one */
    margin-top: 1em;
    grid-auto-rows: 520px;
    row-gap: -2%;
  }

  /* last Media Mobile */
  
}

@media (max-width: 475px) {
  .container {
    width: 100%;
  }
}

/* keyframes here */
@keyframes homeNext1 {
  from{
    left: 0%;
  }
  to{
    left: -100%;
  }
}

@keyframes homeNext2 {
  from{
    left: 100%;
  }
  to {
    left: 0%;
  }
}

@keyframes homePrev1 {
  from{
    left: 0%;
  }
  to{
    left: 100%;
  }
}

@keyframes homePrev2 {
  from{
    left: -100%;
  }
  to{
    left: 0%;
  }
}

@keyframes mHomeNext1 {
  from{
    left: 0%;
  }
  to{
    left: -100%;
  }
}

@keyframes mHomeNext2 {
  from{
    left: 100%;
  }
  to {
    left: 0%;
  }
}

@keyframes mHomePrev1 {
  from{
    left: 0%;
  }
  to{
    left: 100%;
  }
}

@keyframes mHomePrev2 {
  from{
    left: -100%;
  }
  to{
    left: 0%;
  }
}


