@font-face {
  font-family: "PlutoCondensedBlack";
  src: url(./PlutoCondBlack.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
}
* {
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 0;
  height: 0;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #0e56f8;
  width: 100%;
  height: 100%;
  font-family: "PlutoCondensedBlack";
}
.advertisement-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
.header .logo-oreo {
  height: 46px;
  width: 121px;
  display: flex;
}
.header .logo-oreo img {
  width: 100%;
}
.content-description {
  position: absolute;
  top: 98px;
  left: 0;
  width: 100%;
  display: flex;
  padding: 0;
  justify-content: center;
  text-align: center;
}
.content-description .description-slide {
  position: relative;
  display: flex;
  width: 100%;
  height: 98px;
  align-items: center;
}
.content-description .description-slide .slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 6px;
  font-size: 23px;
  line-height: 1.2;
}
.content-description .description-slide .slide:nth-child(1) {
  transform: translateX(0%);
}
.content-description .description-slide .slide:nth-child(2) {
  transform: translateX(0%);
  font-size: 20px;
}

.content-description .description-slide .slide .text-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 6px;
  position: relative;
}
.content-description .description-slide .slide .text-wrap .decoration {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
}
.content-description .description-slide .slide .text-wrap .decoration img {
  width: 100%;
}

.content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0 0 0 -39px;
  display: flex;
  align-items: center;
}
.content .cookies-slider {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.content .cookies-slider .cookies-slider-01 {
  width: 182px;
  height: 192px;
  flex-shrink: 0;
  display: flex;
  position: relative;
  z-index: 1;
  transform: translate(200%, 0%) rotate(0deg) scale(1);
  transition: all 1s ease-out;
}
.content .cookies-slider .cookies-slider-01 img {
  width: 100%;
}
.content .cookies-slider .cookies-slider-01 .element-shadow {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 60px;
  width: 50px;
  height: 14px;
  border-radius: 100%;
  background-color: #000c;
  filter: blur(5px);
  z-index: -1;
  opacity: 0;
}
.content .cookies-slider .cookies-slider-02 {
  width: 192px;
  height: 146px;
  display: flex;
  flex-shrink: 0;
  margin: 34px 0 0 -52px;
  position: relative;
  z-index: -1;
  opacity: 0;
  transform: translate(-60%, 0%);
}
.content .cookies-slider .cookies-slider-02 img {
  width: 100%;
}
.content .cookies-slider .cookies-slider-02 .element-shadow {
  display: block;
  position: absolute;
  bottom: -3px;
  right: -10%;
  width: 140%;
  height: 14px;
  border-radius: 100%;
  background-color: #000c;
  filter: blur(5px);
  z-index: -1;
  opacity: 0;
}
.content .cookies-slider-03 {
  flex-shrink: 0;
  width: 245px;
  height: 171px;
  display: flex;
  margin: -35px 0 0 -60px;
  transform: translate(50%, 0) rotate(60deg) scale(1.5);
}
.content .cookies-slider-03 img {
  width: 100%;
  animation: pulse 4s infinite ease-in-out;
}
.content-slider-decoration {
  position: absolute;
  z-index: -2;
  width: 300px;
  bottom: 0;
  left: 0;
}
.content-slider-decoration img {
  width: 100%;
}
.content-action {
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.content-action .action {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  background-color: #fff;
  padding: 0 10px;
  color: #0e56f8;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 100px;
  opacity: 0;
  transform: translate(0px, 50px) scale(1);
}
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer-logo {
  position: absolute;
  bottom: 56px;
  right: 28px;
  width: 100px;
  height: 37px;
  display: flex;
  opacity: 0;
  transform: translate(0, 100%);
}
.footer-logo img {
  width: 100%;
}
.note {
  position: absolute;
  bottom: 7px;
  left: 10px;
  z-index: 1;
  opacity: 0;
  transform: translate(0, 100%);
}
.note .text {
  font-family: sans-serif;
  font-size: 7px;
  line-height: 7.5px;
}
.strike {
  position: relative;
}
.strike::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  background: #fff;
  width: 100%;
  transform: translateY(-50%) scale(0, 1);
  transition: all 0.4s ease;
}
.strike.strike-show::after {
  transform: translateY(-50%) scale(1, 1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
