.thanks-inner {
  text-align: center;
  width: 80%;
  margin: 15rem auto 10rem;
}
.thanks-inner p {
  margin: 5rem 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .thanks-inner p {
    font-size: 2.4rem;
  }
}
.thanks-inner-line {
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 25px;
  padding: 3rem 0;
  width: 118rem;
  box-shadow: 0px 3.587px 53.8px -2.69px rgba(30, 43, 105, 0.05);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .thanks-inner-line {
    width: 100%;
    flex-wrap: wrap;
    padding: 6rem;
  }
}
.thanks-inner-line h4 {
  font-size: 2.4rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .thanks-inner-line h4 {
    font-size: 3.2rem;
  }
}
.thanks-inner-line p {
  font-size: 1.6rem;
  color: var(--main-color-text);
  margin: 1rem 0;
}
@media only screen and (max-width: 767px) {
  .thanks-inner-line p {
    font-size: 2.4rem;
  }
}
.thanks-inner-line img {
  width: 20%;
  background: #4cc764;
  border-radius: 25px;
  padding: 1rem;
}
@media only screen and (max-width: 767px) {
  .thanks-inner-line img {
    width: 100%;
  }
}
.thanks-inner-line span {
  display: inline-block;
}
.thanks-inner .btn-line {
  background: #4cc764;
  padding: 2.5rem 6rem;
  font-size: 2.4rem;
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
}
.thanks-inner .btn-m {
  margin: 10rem 0 0 !important;
}

/* SEND ANIMATION */
.circle {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: var(--main-color-linear);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem auto 2.5rem;
}

.checkmark {
  width: 5rem;
  height: 5rem;
  position: absolute;
  transform: scale(0);
}

.checkmark path {
  stroke: #fff;
  stroke-width: 5;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  fill: none;
  transition: stroke-dashoffset 1.5s ease, transform 1.5s ease;
}

.circle.animate .checkmark {
  transform: scale(1);
}

.circle.animate .checkmark path {
  stroke-dashoffset: 0;
}

.footer {
  display: none;
}/*# sourceMappingURL=thanks.css.map */