.shop_banners_heading {
  display: grid;
  grid-template-columns: 75% 24%;
  grid-gap: 1%;
  margin-top: 75px;
}
.shop_banners_heading .shop_banners_heading_right_section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop_banner_heading {
  position: relative;
  background-size: cover;
  transition: 0.3s all;
  background-position: center;
  border-radius: 25px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.shop_banner_heading a {
  text-decoration: none;
  height: 100%;
  width: 100%;
  position: absolute;
}
.shop_banner_heading .shop_banner_texts {
  position: absolute;
  bottom: 30px;
  left: 40px;
  text-align: left;
}
.shop_banner_heading .shop_banner_arrow {
  position: absolute;
  bottom: 30px;
  right: 40px;
  max-width: 25px;
  height: auto;
}
.shop_banner_heading .shop_banner_title {
  color: white;
  font-size: 25px;
  text-align: left;
}
.shop_banner_heading .shop_banner_subtitle {
  color: white;
  font-size: 18px;
  text-align: left;
}
.shop_banner_heading .shop_banner_gradient {
  height: 30%;
  pointer-events: none;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.shop_banner_heading_big {
  height: 500px;
}

.shop_banner_heading_small {
  height: 240px;
}

.shop_homepage_links_wrapper {
  display: flex;
  justify-content: space-around;
  margin-top: 45px;
  flex-wrap: wrap;
  gap: 20px;
}

.shop_homepage_link_wrapper {
  border-radius: 25px;
  height: 75px;
  max-width: 470px;
  align-items: center;
  padding-left: 35px;
  display: flex;
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 20px;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}
.shop_homepage_link_wrapper p {
  color: white;
}
.shop_homepage_link_wrapper a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.shop_homepage_link_wrapper img {
  position: absolute;
  right: 0%;
  top: -90%;
  transform: scale(0.5);
  transition: 0.3s all;
}

@media only screen and (min-width: 900px) {
  .shop_homepage_link_wrapper {
    min-width: 450px;
  }
}
@media only screen and (max-width: 900px) {
  .shop_homepage_links_wrapper {
    flex-direction: column;
  }
  .shop_homepage_link_wrapper {
    max-width: 100%;
    height: 60px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 900px) {
  .shop_banners_heading {
    grid-template-columns: 1fr;
  }
  .shop_banners_heading .shop_banners_heading_left_section {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }
  .shop_banners_heading .shop_banners_heading_left_section .shop_banner_heading {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .shop_homepage_links_wrapper {
    gap: 45px;
  }
  .shop_banners_heading {
    grid-template-columns: 1fr;
  }
  .shop_banners_heading .shop_banner_heading_big {
    height: 400px;
  }
  .shop_banners_heading .shop_banners_heading_left_section {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .shop_banners_heading .shop_banners_heading_left_section .shop_banner_heading {
    width: 100%;
  }
  .shop_homepage_link_wrapper img {
    height: 135px;
    top: -70%;
  }
}
.subsection {
  margin-top: 65px;
}/*# sourceMappingURL=shop_homepage.css.map */