/* HEADER */
header {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  z-index: 999;
}
/* BANNER */
.banner__section {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("/assets/svg/Home-Page-Banner.svg");
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__content {
  color: var(--text100);
  padding: 3rem 1rem 0rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero__content h1 {
  font-size: clamp(26pt, 8vw, 50pt);
  text-transform: uppercase;
  font-family: var(--organic-font);
}

.hero__content p {
  font-family: "Typo Gortesk Regular";
  font-size: clamp(12pt, 4vw, 12pt);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 480px;
}

.hero__content img {
  width: auto;
  height: 70px;
  aspect-ratio: 1/2;
}

/* CONTENT SECTION */
.content__section {
  height: 100%;
  width: 100%;
  position: relative;
  background: url("/assets/webp/paper-textured-background.webp") no-repeat;
  background-position: center;
  background-size: cover;
}

.skewed__wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.skewed {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("/assets/svg/White-pattern.svg") repeat var(--brand-red);
  transform-origin: right bottom;
  -webkit-transform: skewY(4deg);
  transform: skewY(4deg);
}

.skewed > img {
  position: absolute;
  top: 0;
  left: 0;
}

.content__wrap {
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text100);
  padding: var(--r100);
  height: max-content;
}

.content__wrap h2 {
  font-size: clamp(26pt, 8vw, 34pt);
  text-transform: uppercase;
  font-family: var(--organic-font);
  align-items: center;
  position: relative;
}
.content__section hr {
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  border-top: 0;
  width: 10%;
  opacity: 1;
  margin: 0;
}
.content__wrap p {
  font-family: "Typo Gortesk Regular";
  font-size: clamp(12pt, 4vw, 12pt);
  font-weight: 400;
  line-height: 1.5;
  max-width: 97%;
}
.content__wrap img {
  padding: var(--r30) 0;
}
.obj-1 {
  position: absolute;
  width: auto;
  height: 40%;
  z-index: 89;
  bottom: 0;
  right: 0;
  transform: translate(30%, 30%);
}
/* MAP */
.map_section {
  background: url("/assets/webp/paper-textured-background.webp");
  background-position: center;
  background-size: cover;
  height: 100%;
}

.map_section h3 {
  font-size: 26pt;
  text-transform: uppercase;
  font-family: var(--organic-font);
  padding: var(--r16) 0 5px;
  margin: 0 var(--r100) var(--r30);
  position: relative;
}

.map_section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  width: 10%;
}
.map__wrap {
  display: flex;
  align-items: center;
}
#storerocket-widget {
  /* margin: 0rem var(--r80) 10rem !important;
   border-radius: 25px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important; */
  /* margin: 0rem 0rem 10rem !important; */
}

/* SLIDER */
.slider__section {
  height: 100vh;
  width: 100%;
  background: url("/assets/webp/paper-textured-background.webp");
  background-position: center;
  background-size: cover;
  padding-top: 5rem;
}
.slider__title-wrap {
  padding: var(--r30) var(--r100);
}
.slider__section h2 {
  font-size: 26pt;
  text-transform: uppercase;
  font-family: var(--organic-font);
  position: relative;
  text-align: start;
}
.slider__section hr {
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  border-top: 0;
  width: 10%;
  opacity: 1;
  margin: 0;
}

@media only screen and (max-width: 860px) {
  .slider__section {
    height: 50vh;
  }
}
@media only screen and (max-width: 768px) {
  .obj-1 {
    position: absolute;
    width: auto;
    height: 80%;
    z-index: 89;
    bottom: 0;
    right: 0;
    transform: translate(30%, 0%);
  }
}

@media screen and (max-width: 560px) {
  .hero__content {
    padding: 1rem 1rem 3rem;
  }
  .content__wrap {
    padding: var(--r80);
  }
  .content__wrap h2 {
    align-items: flex-start;
  }
  .content__wrap p {
    font-family: "Typo Gortesk Regular";
    font-size: clamp(12pt, 4vw, 12pt);
    font-weight: 400;
    line-height: 1.5;
  }
  .obj-1 {
    height: 25%;
    bottom: 0;
    right: 0;
    transform: translate(20%, 50%);
  }

  .skewed {
    -webkit-transform: skewY(6deg);
    transform: skewY(6deg);
  }
  .content__wrap img {
    padding: var(--r16) 0 var(--r30);
    width: 70%;
  }
  .slider__section {
    height: 90vh;
  }
  .slider__title-wrap {
    padding: var(--r56) var(--r30) 0;
  }
  .map_section h3 {
    padding: var(--r80) 0 5px;
    margin: 0 var(--r30) var(--r30);
  }
  .map_section h3::after {
    width: 20%;
  }
  /* .slider__section h2 {
    padding: var(--r16) var(--r80);
    transform: translateY(100px);
  } */

  #storerocket-widget {
    /* margin-bottom: 8rem !important; */
    min-height: 300px !important;
  }
  #storerocket-panel {
    height: 700px !important;
  }
}
@media screen and (max-width: 380px) {
  .content__section h2 {
    line-height: 1.5;
  }
  .content__section hr {
    background: var(--brand-yellow);
    height: 5px;
    border-radius: 10px;
    width: 20%;
    opacity: 1;
    margin: 0;
  }
}
