* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 98px;
  margin: 0;
  font-weight: 900;
  line-height: 90px;
}

h2 {
  font-size: 62px;
  margin: 0;
  font-weight: 900;
}

h3 {
  font-size: 60px;
  margin: 0;
  font-weight: 900;
}

h4 {
  font-size: 39px;
  margin: 0;
  font-weight: 500;
}

article {
  font-size: 29px;
  margin: 0;
  font-weight: 500;
}

h5 {
  font-size: 25px;
  margin: 0;
}

h6 {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

p {
  font-size: 19px;
  margin: 0;
}

span {
  display: block;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}

html,
body {
  height: 100%;
  font-family: "Recoleta", sans-serif;
}

body {
  overflow-y: hidden;
  margin: 0;
}

main {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  scroll-snap-align: start;
}

.container {
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
}

.grids-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

section.hero {
  height: 100vh;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
  background: #fff;
}
section.hero .logo {
  height: 100%;
  width: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
section.hero .logo img {
  position: absolute;
  right: 0;
}
section.hero .heroBg {
  background-image: url(../assets/img/herobg.svg);
  background-size: 60%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 340px;
  background-repeat: repeat-x;
  background-position-x: -30%;
  background-position-y: 0%;
  opacity: 0;
}
section.hero .heroContent {
  max-height: calc(100vh - 135px);
  position: relative;
  width: 100%;
  height: 100%;
}
section.hero .heroContent img.contentBg {
  position: absolute;
  bottom: 0;
  width: 100%;
}
section.hero .heroContent img.title {
  position: absolute;
  top: 100px;
  left: 120px;
  width: 41%;
}
section.hero .heroContent .heroImages {
  position: absolute;
  top: 0;
  right: 0;
}
section.hero .heroContent .heroImages img.krye {
  position: absolute;
  right: 100px;
  top: 0px;
  height: 800px;
  width: auto;
  object-fit: cover;
  z-index: 1;
}
section.hero .heroContent .heroImages img.twisties {
  position: absolute;
  top: 350px;
  right: 0;
  height: 566px;
  width: auto;
  object-fit: cover;
  z-index: 2;
}
section.hero .heroContent .heroImages img.order {
  position: absolute;
  right: 0px;
  top: 620px;
  width: auto;
  object-fit: cover;
  z-index: 2;
}
section.hero .heroContent h4 {
  position: absolute;
  bottom: 40px;
  left: 144px;
  color: #fff;
}

section.products {
  background-color: #dcf8ff;
  overflow: hidden;
  position: relative;
}
section.products img.putra {
  position: absolute;
  left: -50px;
  top: -50px;
}
section.products img.string {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(250px, -20px);
  width: auto;
  height: 120%;
  z-index: 1;
}
section.products .products-info-container {
  max-width: 500px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
section.products .products-info-container h6 {
  color: #ff6b06;
}
section.products .products-info-container h2 {
  margin-top: 15px;
  color: #0e79af;
}
section.products .products-info-container h2.change {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
section.products .products-info-container article {
  margin-top: 33px;
  line-height: 46px;
  color: #022016;
}
section.products .products-info-container article.change {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
section.products .products-info-container .promos {
  margin-top: 55px;
  display: flex;
  gap: 33px;
}
section.products .products-info-container .promos span {
  display: flex;
  text-align: center;
  position: relative;
  color: #ff6b06;
}
section.products .products-info-container .promos span::after {
  content: "";
  border-right: 1px solid #000;
  position: absolute;
  right: -16px;
  top: 0;
  height: 100%;
}
section.products .products-info-container .promos span:last-child::after {
  content: none;
}
section.products .products-info-container .button {
  margin-top: 65px;
  background-image: url("../assets/img/buttonBg.png");
  background-repeat: no-repeat;
  width: 289px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.products .products-info-container .button:hover {
  cursor: pointer;
}
section.products .products-info-container .button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.products .products-info-container .button article {
  margin-top: 0;
  color: #ffffff;
}
section.products .prod-wrapper::-webkit-scrollbar {
  display: none;
}
section.products .prod-wrapper {
  scroll-snap-type: y mandatory;
  height: 100vh;
  overflow-y: scroll;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
section.products .prod-wrapper > div {
  scroll-snap-align: start;
}
section.products .prod-wrapper .heroImages {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 4;
}
section.products .prod-wrapper .heroImages img.prod1 {
  height: 800px;
  width: auto;
  object-fit: cover;
}
section.products .prod-wrapper .heroImages img.twisties {
  position: absolute;
  right: -200px;
  bottom: -180px;
  height: 485px;
  width: auto;
  object-fit: cover;
  z-index: 4;
  transform: rotate(115deg);
}
section.products .prod-wrapper .heroImages2 {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 100vh;
  display: flex;
  align-items: center;
  z-index: 4;
}
section.products .prod-wrapper .heroImages2 img.prod2 {
  height: 800px;
  width: auto;
  object-fit: cover;
}
section.products .prod-wrapper .heroImages2 img.twisties2 {
  left: 360px;
  bottom: 30px;
  height: 330px;
  position: absolute;
  width: auto;
  object-fit: cover;
  z-index: 4;
}
section.products .prod-wrapper .heroImages3 {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 200vh;
  display: flex;
  align-items: center;
  z-index: 4;
}
section.products .prod-wrapper .heroImages3 img.prod3 {
  height: 800px;
  width: auto;
  object-fit: cover;
}
section.products .prod-wrapper .heroImages3 img.twisties3 {
  left: 300px;
  bottom: 30px;
  height: 395px;
  position: absolute;
  width: auto;
  object-fit: cover;
  z-index: 4;
}
section.products .prod-wrapper .heroImages4 {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 300vh;
  display: flex;
  align-items: center;
  z-index: 4;
}
section.products .prod-wrapper .heroImages4 img.prod4 {
  height: 800px;
  width: auto;
  object-fit: cover;
}
section.products .prod-wrapper .heroImages4 img.twisties4 {
  position: absolute;
  left: 300px;
  bottom: 30px;
  height: 395px;
  width: auto;
  object-fit: cover;
  z-index: 4;
}

section.happy {
  display: none;
  background-color: #ff6b06;
  position: relative;
}
section.happy .content-wrapper {
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 43px;
  position: relative;
  z-index: 2;
}
section.happy img.bone {
  position: absolute;
  top: 0;
  right: 560px;
}
section.happy img.paw {
  position: absolute;
  bottom: 0;
  left: 30px;
}
section.happy img.dog {
  position: absolute;
  top: 0;
  right: 0;
}
section.happy img.hap {
  position: absolute;
  top: 22px;
  right: 155px;
  z-index: 2;
}

section.find {
  background-color: #fcb92a;
  position: relative;
  overflow: hidden;
}
section.find img.ch {
  position: absolute;
  top: -30px;
  right: -60px;
  height: 200px;
}
section.find img.string2 {
  position: absolute;
  bottom: -30px;
  right: -60px;
  transform: rotateY(180deg) translate(0px, 200px);
}
section.find .content-wrapper .the-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin: 40px 130px 0 130px;
  gap: 20px;
  isolation: isolate;
}
section.find .content-wrapper .the-content h2 {
  color: #ff6b06;
}
section.find .content-wrapper .the-content article {
  color: #010101;
}
section.find .content-wrapper .the-content .logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.find .content-wrapper .the-content .logo-container img {
  max-height: 120px;
  width: auto;
  object-fit: cover;
}
section.find .content-wrapper .the-content .button {
  background-image: url("../assets/img/buttonBg.png");
  background-repeat: no-repeat;
  width: 289px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.find .content-wrapper .the-content .button:hover {
  cursor: pointer;
}
section.find .content-wrapper .the-content .button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.find .content-wrapper .the-content .button article {
  margin-top: 0;
  color: #ffffff;
}
section.find .content-wrapper .imgfind img {
  object-fit: cover;
  height: 100vh;
}

.mobile {
  display: none;
}

@media (max-width: 1680px) {
  .container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  h1 {
    font-size: 68px;
    margin: 0;
    font-weight: 900;
    line-height: 70px;
  }
  h2 {
    font-size: 52px;
  }
  article {
    font-size: 22px;
  }
  section.hero .heroContent {
    max-height: calc(100vh - 95px);
  }
  section.hero .heroContent .heroImages img.krye {
    height: 700px;
  }
  section.hero .heroContent .heroImages img.twisties {
    height: 350px;
    top: 430px;
    right: 250px;
  }
  section.products .prod-wrapper .heroImages img.prod1 {
    height: 600px;
  }
  section.products .prod-wrapper .heroImages img.twisties {
    height: 350px;
    right: -60px;
    bottom: -20px;
  }
  section.products .prod-wrapper .heroImages2 img.prod2 {
    height: 600px;
  }
  section.products .prod-wrapper .heroImages2 img.twisties2 {
    height: 250px;
    left: 310px;
    bottom: 100px;
  }
  section.products .prod-wrapper .heroImages3 img.prod3 {
    height: 600px;
  }
  section.products .prod-wrapper .heroImages3 img.twisties3 {
    height: 300px;
    left: 250px;
    bottom: 70px;
  }
  section.products .prod-wrapper .heroImages4 img.prod4 {
    height: 600px;
  }
  section.happy img.dog {
    height: 750px;
  }
  section.happy img.paw {
    height: 180px;
  }
  section.happy img.hap {
    height: 250px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
  section.hero .heroContent {
    max-height: calc(100vh + 5px);
  }
  section.hero .heroContent .heroImages img.krye {
    height: 500px;
    right: 100px;
    top: -30px;
  }
  section.hero .heroContent .heroImages img.twisties {
    height: 250px;
    top: 260px;
    right: 210px;
  }
  .section.products .products-info-container h2 {
    margin-top: 15px;
  }
  .section.products .products-info-container article {
    margin-top: 0px;
    line-height: 36px;
  }
  .section.products .products-info-container .promos {
    margin-top: 25px;
  }
  .section.products .products-info-container .button {
    margin-top: 25px;
  }
  .section.products .prod-wrapper .heroImages img.prod1 {
    height: 500px;
  }
  .section.products .prod-wrapper .heroImages img.twisties {
    height: 250px;
    bottom: 0px;
    right: 40px;
  }
  .section.products .prod-wrapper .heroImages2 img.prod2 {
    height: 500px;
  }
  .section.products .prod-wrapper .heroImages2 img.twisties2 {
    height: 170px;
    left: 250px;
  }
  .section.products .prod-wrapper .heroImages3 img.prod3 {
    height: 500px;
  }
  .section.products .prod-wrapper .heroImages3 img.twisties3 {
    left: 210px;
    height: 250px;
  }
  .section.products .prod-wrapper .heroImages4 img.prod4 {
    height: 500px;
  }
  .section.products .prod-wrapper .heroImages4 img.twisties4 {
    height: 250px;
    right: 320px;
  }
  .section.products .img.string {
    height: 100%;
  }
  section.happy img.hap {
    height: 200px;
  }
  section.find img.ch {
    height: 150px;
    width: auto;
    object-fit: cover;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 480px) {
  body {
    overflow: auto;
  }
  body main {
    display: none;
  }
  body .mobile {
    display: block;
  }
  body .mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}
.animate {
  transform: translateX(100px);
  transition: transform 1s;
}

.animate.show {
  transform: translateX(0);
}

.animate2 {
  opacity: 0.5;
  transform: translateX(-100px);
  transition: transform 1s, opacity 1s;
}

.animate2.show2 {
  transform: translateX(0);
  opacity: 1;
}

.animate3 {
  scale: 1.1;
  width: 0;
  transition: width 2s ease-in-out;
}

.animate3.show3 {
  width: 100%;
  scale: 1;
}

/*# sourceMappingURL=style.css.map */
