/* making sure header stay at top */
.header {
  top: 0;
}

.margin-block {
  margin-block: 10rem;
}

img {
  max-width: 100%;
  object-fit: cover;
}

h2 {
  line-height: 1.2;
  margin-bottom: 2rem;
}

.position-relative {
  position: relative;
}

.max-width110 {
  max-width: 110rem;
  margin: auto;
}

/* shine-effect */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect:before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 1;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: left 0.5s ease-in-out;
}

.shine-effect:hover:before {
  animation: shine 1.3s forwards;
}

@keyframes shine {
  0% {
    left: -80%;
  }

  100% {
    left: 100%;
  }
}

/* Start of feature-summary Section */
.feature-summary {
  margin-top: 5rem;
}

.feature-summary__grid {
  display: grid;
  align-items: center;
  text-align: center;
  margin-top: 4rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}

.feature-summary__title {
  line-height: 1.1;
  font-size: 1.7rem;
  color: #000000;
  font-weight: 500;
  margin-top: 1rem;
}

.feature-summary__icon {
  height: 6rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-summary__icon:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* End of feature-summary Section */

/* Start of About Section */
.about-decor {
  background-color: #fcf9de;
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-decor__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  padding-inline: 2rem;
  grid-template-areas: "image text";
}

.about-decor__image {
  grid-area: image;
}

.about-decor__text-section {
  grid-area: text;
}

.about-decor__image img {
  max-width: 100%;
  height: 100%;
}


.about-decor_text-section {
  flex: 1 1 55%;
  min-width: 300px;
}

.about-decor_text-section .text-block {
  margin-bottom: 4rem;
}

.about-decor_text-section .text-block:last-child {
  margin-bottom: 0;
}

.about-decor_text-section .text-block h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

/* End of About Section */

/* Start of More Stickers Section */
.more-stickers-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  gap: 3rem;
}

.more-stickers-item {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
}

.more-stickers-item:hover img {
  transform: scale(1.1);
}

.more-stickers-item img {
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}

.more-stickers-content {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  width: 85%;
  text-align: center;
  font-weight: 900;
  font-size: 2.4rem;
  color: rgb(0, 0, 0);
  padding: 0.3rem 0.5rem;
  /* opacity: 0.702; */
  opacity: 0.851;
  border-radius: .7rem;
  background-color: #ffffff;
}

/* End of More Stickers Section */

/* Media query */
/*FOR-TABLET-START*/
@media screen and (max-width: 1003px) {
  .more-stickers-content {
    font-size: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .heading-2 {
    font-size: 2.8rem;
  }

  .margin-block {
    margin-block: 5rem;
  }

}

@media screen and (max-width: 883px) {
  .more-stickers-content {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 862px) {
  .about-decor__content {
    padding-inline: unset;
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image";
  }

  .about-decor__image {
    margin-top: 1.5rem;
  }

}

/*FOR-MOBILE-START*/
/* Small Devices: 767px and below */
@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 1rem;
  }

  .heading-2 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .btn--primary {
    font-size: 1.7rem !important;
    padding: 0.7rem 2rem !important;
    font-weight: 700 !important;
  }

  .feature-summary__grid {
    margin-top: 3rem;
  }

  .feature-summary__title {
    margin-top: .5rem;
  }

  .more-stickers-grid {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 2fr);
    gap: 2rem;
  }

  .about-decor__image img {
    max-width: 100%;
    width: 100%;
  }

  .about-decor_text-section .text-block h2 {
    font-size: 2rem;
  }
}

/* Small Devices: 380px and below */
@media (max-width: 380px) {}