.introduce {
  font-size: 14px;
  gap: 2rem;
  text-align: justify;
}

.introduce-c {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#btnCTA {
  text-align: center;
  animation-name: pulse;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.banner.desktop{
  display: block;
}
.banner.mobile{
  display: none;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 1200px) {
  .introduce {
    gap: 1rem;
    padding: 24px;
  }
}
@media screen and (max-width: 820px) {
  .introduce {
    flex-direction: column;
    gap: 1rem;
    padding: 32px;
  }
}

@media screen and (max-width: 820px) {
  .banner.desktop{
    display: none;
  }
  .banner.mobile{
    display: block;
  }
  .introduce {
    padding: 24px;
  }
}
@media screen and (max-width: 430px) {
  .introduce {
    gap: 0.5rem;
    padding: 10px 20px 24px 10px;
  }
  .introduce-c img {
    height: 40px;
  }
}
@media screen and (max-width: 320px) {
  .introduce {
    gap: 0.2rem;
    padding: 8px 12px 16px 8px;
  }
  .introduce-c img {
    height: 35px;
  }
}

#strava-cta {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  /* width: 90px; */
  cursor: pointer;
}
/* 
#strava-cta img {
  max-width: 40px;
} */

#strava-cta .close-icon {
  position: absolute;
  /* top: 6px;
  right: 6px; */
  top: -5px;
  right: -5px;
  background-color: #000000;
  /* background-color: #3ec0d2; */
  color: #fff;
  border-radius: 9999px;
  width: 20px;
  height: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.talk-bubble {
  margin: 14px;
  display: inline-block;
  position: relative;
  min-width: 150px;
  height: auto;
  background-color: #3ec0d2;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}
/* Right triangle placed top left flush. */
.tri-right.btn-left:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: 2px;
  right: auto;
  top: auto;
  bottom: -10px;
  border: 14px solid;
  border-color: transparent transparent transparent #3ec0d2;
}

.talktext {
  padding: 0.5em;
  text-align: left;
  line-height: 1.5em;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.btn-text-2{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 20px;

  border-radius: 30px;
  background-color: rgb(255, 221, 0);
  /* color: #C8102E; */
  color: rgb(0, 114, 188);
}

