.joann_page {
    width:100%;
    overflow:hidden;
}
.main_container_joann {
    display: flex;
    flex-direction: column;
    margin: auto;
    /* gap: 10px; */
    /* padding: 0px 0 20px 0; */
    width: -webkit-fill-available;
    /* background: linear-gradient(180deg, #3eac13, transparent); */
    /* color: #000; */
}

.joann_img {
       width: 100%;
    margin: auto;
 /*   background: linear-gradient(180deg, rgb(0 0 0 / 75%) 0%, #3eac13); */
}

.joann_img img {
    width: 90%;
    max-width: 660px;
    margin: auto;
    display: block;
    width: -webkit-fill-available;
    /* background: rgb(0 0 0 / 65%); */
    padding: 10px;
    border-radius: 10;
    padding: 20px;
    /* box-shadow: var(--box-shadow-img); 
    filter: drop-shadow(0px 0px 50px #000); */
}

.joann_explain {
   font-size: var(--font_title);
    text-align: justify;
    /* max-width: 650px; */
    margin: auto;
    width: calc(100% - 40px);
   /* background: linear-gradient(180deg, #3eac13, transparent); */
    padding: 0px 20px 10px 20px;
    text-align: center;
}

.joann_explain_more {
    font-size: var(--font_large);
        max-width: 650px;
    margin: auto;
    width: 80%;
    white-space: pre-line;
}

a.gift_btn_joann {
    background: #9A7CC6;
    color: #fff;
    font-weight: var(--fontweight_max);
    box-shadow: var(--box-shadow-img);
    border-radius: 10px;
    padding: 10px 30px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    margin: 0px auto;
    display: block;
    color: #fff;
    width: max-content;
    font-size: var(--font_title);
    width: -webkit-fill-available;
    max-width: 300px;
}

.special_text {
    padding: 0px 3px;
    background: rgb(191 153 255 / 67%);
    border-radius: 7.5px 2px;
    width: fit-content;
    display: inline-block;
    color: #000;
    font-size:inherit;
    }

.about_us_video {
    margin:15px auto;
    position: relative;
   /* padding-top: 56.25%;
    width:100%; */
    width: 315px;
    height: 680px;
}

.about_us_video iframe {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 1;
    transform: translateX(-50%);
    border-radius:10px;
}

.about_ribblr_joann {
    max-width: 650px;
    margin: 40px auto;
    width: 80%;
}

.about_ribblr_joann_title {
font-size: var(--font_title);
    color: #bf99ff;
    font-weight: var(--fontweight_heavy);
    display: block;
    margin: 10px auto;    
}

.about_ribblr_joann a {
    display: block;
    font-weight: var(--fontweight_slim);
}

span.faq_ribblr_joann {
    font-weight: var(--fontweight_heavy);
    display: block;
}

span.faq_ribblr_joann::after {
    content: " 💜";
}

.about_ribblr_joann a::before {
    content: " - ";
}

@keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;
  }
  
  .animated.fadeInDown {
    animation-name: fadeInDown;
  }
  
  .joann_img.animated {
    animation-delay: 0.25s; /* Delay for the image */
  }
  
  .joann_explain.animated {
    animation-delay: 1s; /* Delay for the explanation */
  }
  
  .gift_btn_joann.animated {
    animation-name: slideFromRight;
    animation-duration: 1.75s;
    animation-delay: 1.5s; /* Delay for the button */
  }

  .joann_explain_more.animated {
    animation-delay: 2s; /* Delay for the explanation */    
  }

  .about_ribblr_joann.animated {
    animation-delay: 4s; /* Delay for the explanation */
  }

  
  @keyframes slideFromRight {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  