body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  box-sizing: border-box;
  background-color: #f3f3f3;
  font-family: "Comfortaa", sans-serif;
}

html {
  font-size: 62.5%;
}

/* Global Classes  */

.Flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  font-family: Comfortaa;
}

.Wrapper {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

input {
  font-family: comfortaa;
}

.secHeading {
  margin: 30px 0;
  font-size: 3rem;
  color: #660000;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

/* Global Classes  */

.secWrapper {
  display: flex;
  justify-content: space-between;
}

.secWrapper {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
/* Primary Section and All Stores */
.primarySec {
  width: 70%;
  padding: 20px;
  margin-right: 30px;
  border-radius: 5px;
  background-color: white;
}

.primarySec .secHeading {
  margin-top: 0;
}
.storeWrapper {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.store {
  height: auto;
  position: relative;
  background-color: white;
  transition: all linear 0.2s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.store:hover {
  transform: scale(0.94);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.store img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.storeBG {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  transform: scale(0);
  transition: 0.3s ease;
  background-color: #660000;
}

.store:hover .storeBG {
  transform: scale(1);
}

.text {
  top: 50%;
  left: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
}

/* Primary Section and All Stores Ends */

/* Secondary Stores and Widgets */

.secondarySec {
  width: 30%;
  border-radius: 5px;
}
.secondarySec .secHeading {
  margin-top: 0;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 20px;
}

/* Secondary Stores and Widgets Ends */

/* Media Query Starts Here */

/* For screens less than or equal to 991px */
@media (max-width: 1024px) {
  .secondarySec {
    display: none;
  }
  .primarySec {
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
  }
  .secHeading {
    font-size: 2.1rem;
  }
}

/* For screens less than or equal to 991px */
@media (max-width: 991px) {
  .storeWrapper {
    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) {
  .storeWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* For screens less than or equal to 640px */
@media (max-width: 640px) {
  .widgets a {
    font-size: 1.6rem;
  }
}
/* For screens less than or equal to 480px */
@media (max-width: 480px) {
  .storeWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .primarySec {
    width: 90%;
    margin-top: 30px;
  }
}

/* For screens less than or equal to 320px */
@media (max-width: 320px) {
  /* Styles for 320px */
}

/* Media Query Ends Here */
