body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html {
  font-size: 62.5%;
}

/* Global Classes  */

.Flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Wrapper {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  padding: 1.5rem;
}

.secHeading {
  font-size: 3rem;
  color: #2d8ad9;
  text-align: center;
  text-transform: uppercase;
}

/* Global Classes  */

/* Banner Section Starts */

.Banner {
  width: 100%;
  overflow-x: hidden;
}
.Banner img {
  width: 100%;
}

/* Banner Section Ends */

/* Coupons  Starts */
.couponWrap {
  display: grid;
  gap: 120px 30px;
  margin-top: 100px;
  grid-template-columns: repeat(3, 1fr);
}
.Coupon {
  padding: 20px;
  display: flex;
  color: black;
  border-radius: 5px;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
  background-color: white;
  /* border: 2px solid #2d8ad9; */
  transition: all linear 0.2s;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.Coupon:hover {
  color: white;
  transform: scale(0.95);
  background: rgb(140, 56, 181);
  background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.Coupon:hover .cBtn {
  color: #2d8ad9;
  background-color: white;
}
.cLogo {
  width: 135px;
  height: 135px;
  overflow: hidden;
  margin-top: -110px;
  border-radius: 100px;
  background-color: white;
  border: 20px solid white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.cLogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cHeading {
  font-size: 2rem;
  text-align: center;
}

.cBtn {
  border: none;
  color: white;
  cursor: pointer;
  background: none;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1.3rem 2.8rem;
  transition: all linear 0.2s;
  background-color: #2d8ad9;
}

.cBtn:hover {
  border-radius: 10px;
}

/* Coupons  Ends */

/* Top Stores Section Styling Starts*/

.storeWrapper {
  gap: 30px;
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(6, 1fr);
}
.storeBox {
  height: 150px;
  border-radius: 5px;
  perspective: 1000px;
  background-color: white;
}

.storeBoxInner {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  border-radius: 5px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.storeBox:hover .storeBoxInner {
  transform: rotateY(180deg);
}

.storeBoxFront,
.storeBoxBack {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.storeBoxFront img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.storeBoxFront {
  color: black;
  background-color: #ffffff;
}

.storeBoxBack {
  color: white;
  border-radius: 5px;
  font-size: 2rem;
  transform: rotateY(180deg);
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}

/* Top Stores Section Styling Ends */

/* Calnedar Section Starts Here */

.calendarBar {
  padding: 10px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: space-around;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}

.calendarBar .secHeading {
  margin: 0;
  color: white;
  font-size: 2rem;
}

.calendarBar p {
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
}

.calendarBar button {
  width: 140px;
  border: none;
  font-weight: 700;
  color: #2d8ad9;
  font-size: 1.4rem;
  border-radius: 5px;
  background-color: #ffffff;
}

.calendarImage {
  width: 60px;
  height: 60px;
}

.calendarImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Calnedar Section Ends Here */

/* Secondary Banner Styling Starts Here */
.Sbanner {
  height: 250px;
  border-radius: 5px;
  padding: 10px;
}

.slick-next,
.slick-prev {
  display: none;
}

.Sbanner img {
  width: 100%;
  /*height: 100%;*/
  border-radius: 5px;
}

/* Secondary Banner Styling Ends Here */

/* Categories Section Starts Here  */

.categoryWrapper {
  gap: 30px;
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: repeat(6, 1fr);
}

.cBox {
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: all linear 0.2s;
}

.cBox:hover {
  transform: scale(1.1);
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}
.cBox:hover h3 {
  color: white;
}

.cBox h3 {
  color: #2d8ad9;
  margin-bottom: 0;
  font-size: 1.6rem;
  text-align: center;
}

.cImage {
  height: 115px;
  border-radius: 5px;
  background-color: white;
}

.cImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Categories Section Ends Here  */

/* Newsletter Starts */
.newsWrapper {
  display: none;
}
.newsletterWrapper,
.newsWrapper {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
  padding: 30px;
  margin-top: -20px;
  text-align: center;
  border-radius: 10px;
  background: rgb(95, 230, 194);
  background: linear-gradient(
    90deg,
    rgba(95, 230, 194, 1) 0%,
    rgba(118, 250, 193, 1) 100%
  );
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.newsletterWrapper h2,
.newsWrapper h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
}

.newsletterWrapper p,
.newsWrapper p {
  margin: 10px 0;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.nWrap,
.newsWrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nWrap input {
  width: 350px;
  padding: 10px 10px;
  font-size: 1.7rem;
  outline: none;
  border: none;
  border-radius: 5px 0 0 5px;
}
.newsWrap input {
  padding: 10px 10px;
  font-size: 1.7rem;
  outline: none;
  border: none;
  border-radius: 5px 0 0 5px;
}

.nWrap button,
.submitBtn {
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.7rem;
  padding: 11px 20px;
  border-radius: 0 5px 5px 0;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}
/* Newsletter Ends */

/* Media Query Starts Here */

/* For screens less than or equal to 991px */
@media (max-width: 991px) {
  .couponWrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .storeWrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .categoryWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* For screens less than or equal to 880px */
@media (max-width: 880px) {
  /* Styles for 880px */
}

/* For screens less than or equal to 720px */
@media (max-width: 768px) {
  .Banner {
    width: 100%;
    overflow-x: hidden;
  }
  .newsWrapper {
    /* width: 100%; */
    max-width: 100%;
    display: block;
    margin: 30px auto !important;
  }
  .newsletterWrapper {
    display: none;
  }
  .show {
    width: 90%;
    margin: auto;
    display: block;
  }

  .newsWrapper .Flex {
    flex: 1;
    flex-direction: column;
  }
  .newsWrap {
    width: 100%;
  }
  .newsWrap input {
    width: 100%;
  }
  .calendarBar {
    flex-direction: column;
  }
}

/* For screens less than or equal to 640px */
@media (max-width: 640px) {
}

/* For screens less than or equal to 560px */
@media (max-width: 560px) {
  .couponWrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .storeWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .categoryWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For screens less than or equal to 480px */
@media (max-width: 480px) {
  .calendarBar .secHeading {
    font-size: 1.6rem;
  }
}

/* For screens less than or equal to 320px */
@media (max-width: 320px) {
  /* Styles for 320px */
}

/* Media Query Ends Here */
