/*mobile-screen-template*/
.mobile-screen-template {
  padding: 20px 0px;
  font-size: 1.25rem;
}

.mobile-screen {
  margin: 20px 0px 20px;
}

.store-badge {
  width: 40%;
  margin-left: 30%
}


/*image-to-wordings-template & .wordings-to-image-template*/
.image-to-wordings-template div,
.wordings-to-image-template div {
  margin: 0px;
  padding: 0px;
}

.image-to-wordings-template img,
.wordings-to-image-template img {
  width: 100%;
}

@media (max-width: 576px) {
  .image-to-wordings-template .wording-part,
  .wordings-to-image-template .wording-part {
    margin: 15% 0%;
  }
}

/*three-bullet-points-template*/
.three-bullet-points-template {
  margin-left: 5%;
  margin-right: 5%;
}

.bullet-point-box img {
  width: 65%;
}

@media screen and (max-width: 992px) {
  .bullet-point-box img {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .bullet-point-box img {
    width: 85%;
  }
}

/*image-background-template*/
.image-background-template {
  position: relative;
  text-align: center;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  padding: 0px !important;
}

.image-background-template img {
  width: 100%;
  /*opacity: 0.4;*/
}

.responsive-background-content{
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 80%;
  margin-bottom: 5%;
}

.responsive-background-content.content-float-left{
  transform: translate(-40%, -50%);
  width: 60%;
}

.responsive-background-content.content-float-right{
  transform: translate(40%, -50%);
  width: 60%;
}

.responsive-background-content h1 {
  padding: 10px 0px;
}

@media screen and (max-width: 992px) {
  .responsive-background-content h1 {
    padding: 5px 0px;
  }
}

@media screen and (max-width: 768px) {
  .responsive-background-content,
  .responsive-background-content.content-float-left,
  .responsive-background-content.content-float-right {
    width: 80%;
    transform: translate(0%, -50%);
  }
}

@media screen and (max-width: 420px) {
  .image-background-template {
    background-size: cover;
    min-height: 325px;
  }

  .image-background-template img {
    display: none;
  }

  .responsive-background-content,
  .responsive-background-content.content-float-left,
  .responsive-background-content.content-float-right {
    position: relative;
    width: 100%;
    transform: translate(0%, 0%);
  }

}

/*timeline-template*/
.timeline-template img {
  width: 100%;
}

.timeline-template ul {
  padding: 3rem 0;
}

.bubble-content {
  font-size: 1.1rem !important;
}

.timeline-template ul li {
  list-style: none;
  position: relative;
  width: 5px;
  margin: 0 auto;
  padding-top: 3rem;
  background: blue;
}

.timeline-template ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: inherit;
}


.timeline-template ul li div {
  width: 25rem;
  font-size: 0.75rem;
  position: relative;
  bottom: 0;
  padding: 0.9rem;
  background: white;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-template ul li div::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-template ul li:nth-child(odd) div {
  left: 45px;
}

.timeline-template ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent white transparent;
}

.timeline-template ul li:nth-child(even) div {
  left: -439px;
}

.timeline-template ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent white transparent;
}

.timeline-template time {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 7px;
}

.timeline-template ul li::after {
  transition: all 0.5s ease-in-out;
}

.timeline-template ul li.slide-in::after {
  background: var(--white);
  border: 3px solid white;
}

.timeline-template ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline-template ul li:nth-child(odd) div {
  transform: translateX(10rem);
}

.timeline-template ul li:nth-child(even) div {
  transform: translateX(-10rem);
}

.timeline-template ul li.slide-in div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .timeline-template ul li div {
    width: 15.5rem;
  }

  .timeline-template ul li:nth-child(even) div {
    left: -289px;
  }
}

@media screen and (max-width: 600px) {

  .timeline-template ul li {
    margin-left: 1.25rem;
  }

  .timeline-template ul li div {
    width: calc(100vw - 91px);
  }

  .timeline-template ul li:nth-child(even) div {
    left: 45px;
  }

  .timeline-template ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent white transparent;
  }
}

/*faq-template*/
.faq-template {
  padding: 50px 10px 40px;
}

.faq-template .nav-new-item {
  color: black !important;
  font-weight: 500;
  font-size: 1.2rem;
}

.faq-template .nav-new-item>ul {
  font-size: 1.2rem;
}

.faq-template li>ul>li:last-child {
  border: none;
}

.questions-box {
  padding-top: 20px
}

.questions-box>ul>li {
  border-bottom: 1px solid purple;
}

/* onboarding-cards-template */
.onboarding-cards-pc .body-part {
  margin-top: 0.5rem;
}

.onboarding-cards-mobile .body-part {
  height: 100%;
  padding: 3%;
  background-color: white
}

.onboarding-cards-mobile .mobile-card {
  background-color: white;
  margin: 5% 0%;
}

.onboarding-cards-pc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.onboarding-cards-pc .my-card {
  width: 20%;
  position: relative;
  z-index: 1;
  -webkit-transform: scale(0.6) translateY(-2rem);
  transform: scale(0.6) translateY(-2rem);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: 1s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.onboarding-cards-pc .my-card:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 100%;
  bottom: -5rem;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}

.onboarding-cards-pc .my-card {
  z-index: 2;
  -webkit-transform: scale(0.9) translateY(-1rem) translateX(0);
  transform: scale(0.9) translateY(-1rem) translateX(0);
  opacity: 0.6;
  pointer-events: auto;
  transition: 1s;
}

.onboarding-cards-pc .my-card.active {
  z-index: 3;
  -webkit-transform: scale(1) translateY(0) translateX(0);
  transform: scale(1) translateY(0) translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: 1s;
}

.onboarding-cards-pc img,
.onboarding-cards-mobile img {
  width: 100%;
}

/* full-size-banner-template */
.full-size-banner-template {
  padding: 0px;
}

/* .two-sizes-images-template */
.two-sizes-images-template {
  padding-bottom: 0px
}

.two-sizes-images-template .offical-heading {
  margin-bottom: 7.5%;
}

.pic-large {
  margin-top: -5%;
  margin-bottom: 5%;
  margin-left: 10%;
  width: 90%
}

.pic-small {
  margin-left: 40%;
  margin-bottom: 5%;
  width: 60%
}

@media screen and (max-width: 576px) {
  .pic-large {
    margin-left: 0%;
    width: 80%
  }

  .pic-small {
    margin-left: 0%;
    width: 80%
  }
}


/*content slide-in*/
.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 0.6s; /* So they look staggered */
}

@keyframes come-in {
  to { transform: translateY(0); }
} 