/*----------------------------------------------------
 *             Font Family
 * ----------------------------------------------------*/
main h1, main h2, main h3, main h4, main h5, main span, main ul {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------
 *                   utilities
 * --------------------------------------------------*/
main {
  --main-h3-font-weight: 600;
}

section:not(.main-hero, .footer-hero) {
  padding: clamp(1.5rem, 5vw, 5rem) clamp(1rem, 5vw, 3rem);
}
section:not(.main-hero, .footer-hero) p {
  line-height: 1.6;
  font-size: 1rem;
}
section:not(.main-hero, .footer-hero) h2 {
  grid-column: 1/-1;
  text-align: center;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
section:not(.main-hero, .footer-hero) h2 > span {
  background: linear-gradient(90deg, #00B2CB 48.56%, #018DE4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
section:not(.main-hero, .footer-hero) h2:has(+ p) {
  margin-bottom: 1.4rem;
}
section:not(.main-hero, .footer-hero) .content {
  width: clamp(200px, 100%, 1400px);
  margin: 0 auto;
}
section:not(.main-hero, .footer-hero) .intro {
  padding: 2rem 0;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

section:not(.main-hero, .footer-hero, .template-slider) video {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 601px) {
  .intro {
    padding: 2rem 0;
  }
}
/*----------------------------------------------------
 *              Base Style
 * ----------------------------------------------------*/
main img {
  max-width: 100%;
  height: auto;
}

main h3 {
  margin: 1rem auto 0;
}
main section:nth-last-of-type(2) .grid {
  padding-bottom: 0 !important;
}

main#main-content {
  overflow: clip;
}

#ai-marketing-advisor .content {
  width: clamp(200px, 100%, 1200px);
}

@media (max-width: 768px) {
  main.DEU h2 {
    word-break: break-word;
  }
}
/*--------------------------------------------------
 *            Hide obstructive ad if mobile
 * ----------------------------------------------------*/
@media (max-width: 1000px) {
  div.fix_bottom {
    display: none !important;
  }
}
/*----------------------------------------------------
 *              CTA buttons style
 * ----------------------------------------------------*/
main a.free-download-btn {
  background-color: var(--buy-now-bg-color);
  color: var(--buy-now-font-color);
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  font-family: system-ui, sans-serif;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70px;
  width: fit-content;
  padding: 0 2rem;
  min-width: 150px;
  max-width: 250px;
  margin: 2rem auto 0;
  text-transform: uppercase;
  transition: all 0.2s;
  justify-self: center;
  text-align: center;
}
main a.free-download-btn:hover {
  transform: scale(1.05);
}

/*----------------------------------------------------
 *              New tag style
 * ----------------------------------------------------*/
span.new {
  position: absolute;
  background: red;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: clamp(12px, 2vw, 15px);
  rotate: -15deg;
  color: #fff;
  line-height: 1;
  left: -15px;
  top: 13px;
  font-weight: bold;
}

@media (max-width: 1125px) {
  span.new {
    width: max-content;
    rotate: none;
    left: 2rem;
    top: 0;
  }
}
/*--------------------------------------------------
 *        Supercharge marketing section
 * ----------------------------------------------------*/
#supercharge-marketing h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.2;
  padding: 0.2rem 0;
}
#supercharge-marketing .btns {
  display: flex;
  position: relative;
  margin-bottom: 2.25rem;
  height: auto;
  min-height: 86px;
  border-bottom: 3px #EBECED solid;
}
#supercharge-marketing .btns .prv, #supercharge-marketing .btns .nxt {
  display: none;
}
#supercharge-marketing .btns .marker {
  position: absolute;
  width: 460px;
  height: 3px;
  background-color: #009bb1;
  bottom: -3px;
  transition: 0.2s all ease;
}
#supercharge-marketing .btns button {
  flex: 1;
  margin: 1.25rem 3.126rem;
  border: 0;
  color: var(--buy-now-bg-color);
  background-color: transparent;
  border-radius: 5px;
  transition: 0.2s background-color;
  cursor: pointer;
}
#supercharge-marketing .btns button.active, #supercharge-marketing .btns button:hover {
  background-color: #DFEEF0;
}
#supercharge-marketing .btns button.active {
  cursor: default;
}
#supercharge-marketing .grid-entries {
  display: grid;
  grid-template-columns: 1fr;
}
#supercharge-marketing .grid-entries .entry {
  grid-column: 1/-1;
  grid-row: 1;
  display: flex;
  gap: 3rem;
  transition: opacity 0.3s ease-in-out;
}
#supercharge-marketing .grid-entries .entry:not(.active) {
  opacity: 0;
}
#supercharge-marketing .grid-entries .entry .text {
  width: clamp(350px, 26vw, 480px);
  min-width: 350px;
  align-content: center;
  text-wrap-style: balance;
}
#supercharge-marketing .grid-entries h4 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  padding-bottom: 1rem;
  line-height: 1.4;
  font-weight: var(--main-h3-font-weight);
}

@media (max-width: 850px) {
  #supercharge-marketing .btns button {
    margin: 1.25rem 1rem;
  }
  #supercharge-marketing .grid-entries .entry {
    flex-direction: column-reverse;
    gap: 0px;
    align-self: center;
  }
  #supercharge-marketing .grid-entries .entry .text {
    align-self: center;
    width: clamp(200px, 100%, 700px);
    text-align: center;
  }
}
@media (max-width: 700px) {
  #supercharge-marketing .btns {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
  }
  #supercharge-marketing .btns button {
    grid-column: 2;
    grid-row: 1;
    opacity: 0;
  }
  #supercharge-marketing .btns button.active {
    opacity: 1;
  }
  #supercharge-marketing .btns .prv, #supercharge-marketing .btns .nxt {
    display: block;
    grid-row: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5264 0.418042C7.82098 0.177816 8.25574 0.195226 8.53031 0.4698C8.80477 0.74439 8.82228 1.17917 8.58207 1.47371L8.53031 1.53035L2.23734 7.82332C2.13981 7.92093 2.13981 8.07922 2.23734 8.17683L8.53031 14.4698C8.82305 14.7627 8.82308 15.2375 8.53031 15.5303C8.23746 15.8232 7.76267 15.8231 7.46976 15.5303L1.17679 9.23738C0.493478 8.55398 0.493476 7.44617 1.17679 6.76277L7.46976 0.4698L7.5264 0.418042Z' fill='white'/%3E%3C/svg%3E");
    background-color: #3db0c0;
    width: 35px;
    background-repeat: no-repeat;
    background-size: 18px;
    position: relative;
    margin: 1.2rem;
    border-radius: 5px;
    justify-self: center;
    background-position: center;
  }
  #supercharge-marketing .btns .nxt {
    grid-column: 3;
    rotate: 180deg;
  }
}
@media (max-width: 500px) {
  #supercharge-marketing .grid-entries .entry .text {
    min-width: 100%;
  }
}
/*--------------------------------------------------
 *        Limitless container section
 * ----------------------------------------------------*/
#limitless-marketing .flex-container {
  display: flex;
  gap: 3rem;
  align-items: center;
}
#limitless-marketing picture {
  align-self: stretch;
  border-radius: 20px;
  overflow: hidden;
}
#limitless-marketing picture img {
  height: 100%;
  object-fit: cover;
}
#limitless-marketing .text {
  width: clamp(250px, 40vw, 490px);
  min-width: 295px;
}
#limitless-marketing .text h3 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  padding-bottom: 1rem;
  line-height: 1.4;
  font-weight: var(--main-h3-font-weight);
}
#limitless-marketing .text i {
  margin: 1rem 0 0;
  display: block;
  font-style: italic;
  font-size: 0.8rem;
}
#limitless-marketing .text .free-download-btn {
  justify-self: start;
  float: inline-start;
}

@media (max-width: 955px) {
  #limitless-marketing .flex-container {
    flex-direction: column;
    gap: 0;
  }
  #limitless-marketing .text {
    text-align: center;
    width: clamp(250px, 100%, 600px);
  }
  #limitless-marketing .text h2 {
    text-align: center;
  }
  #limitless-marketing .text .free-download-btn {
    justify-self: center;
    float: unset;
  }
}
/*--------------------------------------------------
 *        Scale your marketing section
 * ----------------------------------------------------*/
#scale-your-marketing {
  position: relative;
}
#scale-your-marketing::before {
  content: "";
  width: 256px;
  height: 360px;
  position: absolute;
  right: 0;
  background-image: url(/stat/edms/product-version-images/2024/Promeo/bubble.webp);
  clip-path: inset(4% 0 4% 12%);
  opacity: 0.3;
}
#scale-your-marketing::after {
  content: "";
  width: 353px;
  height: 385px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(/stat/edms/product-version-images/2024/Promeo/play-icon.webp);
  background-repeat: no-repeat;
  opacity: 0.3;
  clip-path: inset(12% 7% 5% 10%);
}
#scale-your-marketing .intro {
  position: relative;
}
#scale-your-marketing .content {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
#scale-your-marketing video {
  width: clamp(200px, 60%, 870px);
  object-fit: cover;
}
#scale-your-marketing .flex-container {
  display: grid;
  gap: 2rem;
  width: clamp(200px, 31vw, 480px);
  transition: 0.3s all;
}
#scale-your-marketing .text {
  position: relative;
  transition: 0.3s all;
}
#scale-your-marketing .text img {
  position: absolute;
  left: -62px;
  top: 10px;
}
#scale-your-marketing .text h3 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  padding-bottom: 1rem;
  line-height: 1.4;
  font-weight: var(--main-h3-font-weight);
}
#scale-your-marketing .free-download-btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 1280px) {
  #scale-your-marketing .content {
    align-items: center;
    flex-direction: column;
    gap: 4rem;
  }
  #scale-your-marketing video {
    width: clamp(200px, 100%, 960px);
  }
  #scale-your-marketing .flex-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 5rem;
    justify-content: center;
  }
  #scale-your-marketing .text {
    max-width: 300px;
  }
}
@media (max-width: 1190px) {
  #scale-your-marketing .flex-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    translate: 24px;
    max-width: 700px;
  }
  #scale-your-marketing .text {
    max-width: 100%;
  }
  #scale-your-marketing .text:nth-of-type(2) {
    order: 3;
    grid-column: 1/-1;
  }
}
@media (max-width: 860px) {
  #scale-your-marketing .flex-container {
    display: flex;
  }
  #scale-your-marketing .text {
    max-width: 90%;
  }
}
@media (max-width: 800px) {
  #scale-your-marketing .content {
    gap: 1rem;
    padding-top: 0;
  }
}
@media (max-width: 500px) {
  #scale-your-marketing .flex-container {
    translate: 18px;
  }
  #scale-your-marketing .text img {
    left: -49px;
  }
}
/*--------------------------------------------------
 *              Stock Media section
 * ----------------------------------------------------*/
#stock-media .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.5rem, 1.5vw, 3.125rem);
}
#stock-media picture {
  align-self: stretch;
  border-radius: 20px;
  overflow: hidden;
}
#stock-media picture img {
  height: 100%;
  object-fit: cover;
}
#stock-media .text {
  width: clamp(250px, 29vw, 490px);
  min-width: 295px;
  text-align: left;
}
#stock-media .text h2 {
  text-align: left;
}
#stock-media .text .free-download-btn {
  float: inline-start;
}

@media (max-width: 750px) {
  #stock-media .content {
    flex-direction: column-reverse;
  }
  #stock-media .text {
    text-align: center;
    width: clamp(250px, 100%, 600px);
  }
  #stock-media .text h2 {
    text-align: center;
  }
  #stock-media .text .free-download-btn {
    float: unset;
  }
}
/*--------------------------------------------------
 *              Template Slider section
 * ----------------------------------------------------*/
section.template-slider {
  padding: 3rem 0;
}
section.template-slider .intro {
  width: 86%;
}
section.template-slider .clear {
  display: none;
}
section.template-slider .wrapper {
  text-align: center;
}
section.template-slider .slider {
  margin-top: 2.5rem;
}
section.template-slider div:has(> button) {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
section.template-slider .slider-chooser {
  background: no-repeat;
  margin: 0px 5px;
  padding: 3px 20px;
  border-radius: 20px;
  border: 1px solid #000;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
section.template-slider .slider-chooser:hover {
  transform: scale(1);
  background: #000;
  color: #fff;
}
section.template-slider .slider-chooser.focus {
  background: black;
  color: white;
  cursor: default;
}

/*--------------------------------------------------
 *        Ai Powered Tools section
 * ----------------------------------------------------*/
#ai-powered-tools .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  /* gap: 3rem; */
  row-gap: 6rem;
  margin: clamp(0px, 3vw, 3rem) auto 0;
  width: clamp(200px, 100%, 1200px);
}
#ai-powered-tools .content > div {
  width: clamp(350px, 80%, 470px);
  text-align: center;
}
#ai-powered-tools .content h3 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  padding-bottom: 1rem;
  line-height: 1.4;
  font-weight: var(--main-h3-font-weight);
}

@media (max-width: 900px) {
  #ai-powered-tools .content {
    gap: 3rem;
  }
  #ai-powered-tools .content > div {
    width: clamp(200px, 100%, 470px);
  }
}
@media (max-width: 680px) {
  #ai-powered-tools .content {
    grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------
 *            japan-branding section
 * ----------------------------------------------------*/
#japan-branding .grid {
  display: grid;
  row-gap: 0;
  grid-template-columns: 1.2fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
  gap: clamp(3rem, 4vw, 5rem);
}
#japan-branding .grid > div {
  display: block;
  height: fit-content;
  z-index: 2;
  max-width: 850px;
}
#japan-branding .grid .intro {
  grid-column: 1/-1;
  padding-bottom: 0;
}
#japan-branding .grid .intro + div {
  grid-column: 1/-1;
}
#japan-branding h3 {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  margin: 1rem 0 !important;
}
#japan-branding a {
  font-weight: 800;
  width: fit-content;
  transition: all 0.2s;
  padding: 0.3rem 0.5rem;
  border-radius: 7px;
}
#japan-branding a:hover {
  transform: scale(1.05);
  color: white;
  background: black;
}
#japan-branding .ig-story {
  grid-row: span 2;
  justify-self: end;
}
#japan-branding .ig-promo-post {
  justify-self: start;
}
#japan-branding .square-video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  --yt-video-border-radius: 20px;
  border-radius: var(--yt-video-border-radius);
}
#japan-branding #embedded-video {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: var(--yt-video-border-radius);
}

@media (max-width: 1500px) {
  #japan-branding .grid {
    grid-template-columns: 1.1fr 1fr;
  }
}
@media (max-width: 1400px) {
  #japan-branding .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  #japan-branding .grid {
    grid-template-columns: 1fr;
    place-self: center;
  }
  #japan-branding .ig-story, #japan-branding .ig-promo-post {
    justify-self: unset;
  }
}
/*--------------------------------------------------
 *                   utilities
 * --------------------------------------------------*/
main .hero {
  padding: 0 3rem;
}
main .hero .wrapper {
  padding: 0;
  margin: 5rem auto;
}
main .hero h1 {
  line-height: 1.2 !important;
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 3.3rem);
  color: white;
}
main .hero p {
  text-align: left;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: black;
  line-height: 1.6;
  font-weight: normal !important;
  color: white;
}
main p a {
  color: #00aeff;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.1rem);
}
main p a:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.sp-font {
  background: -webkit-linear-gradient(45deg, #2a39ff, #8b2ded 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

section.simple3 .wrapper {
  background: linear-gradient(125deg, #C2EBEF 13.82%, #AFFDE2 86.34%);
}

.intro {
  padding: 2rem;
}
.intro p {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ff-list li .cover-btn {
  background: linear-gradient(125deg, rgba(70, 162, 252, 0.6) 13.82%, rgba(215, 99, 193, 0.9411764706) 86.34%);
  background: rgba(31, 32, 32, 0.6784313725);
  backdrop-filter: blur(2px);
}
.ff-list li p {
  line-height: normal;
}

@media (max-width: 1100px) {
  main .hero {
    padding: 0 3rem;
  }
}
@media (max-width: 601px) {
  .intro {
    padding: 2rem 0;
  }
}