@import url(../../theme/global/_root.scss);
@import url(../../theme/global/font.scss);

a {
  text-decoration: none;
}
.website_congrats {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
.logo {
  width: 100%;
  position: relative;
  text-align: start;
  padding: 50px 85px;
}
.website_congrats .inner_congrats {
  width: 100%;
  max-width: 525px;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  padding-block: 50px;
  min-height: 100%;
  margin-block: auto;
}

.website_congrats .congrats_content {
  width: 100%;
  max-width: 525px;
  height: 100%;
  padding-inline: 20px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tick_circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--clr_frm_primary_03);
}
.tick_circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tick_circle span img {
  width: 100%;
  height: 100%;
}
.congrats_text {
  margin-block: 50px 100px;
}
.congrats_text h2 {
  margin-block: 0px 14px;
  color: var(--clr_dark_01);
}
.congrats_text p {
  color: var(--clr_frm_dark_04);
}
.congrats_link {
  color: var(--clr_dark_01);
}
.border_line {
  width: 16px;
  height: 2px;
  background: var(--clr_frm_primary_03);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-block: 25px;
}
.congrats_btn_group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 0;
}
.congrats_btn_group .congrats_btn {
  width: 100%;
  max-width: 332px;
  color: var(--clr_dark_01);
}

@media (max-width: 991px) {
  .logo {
    text-align: center;
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .website_congrats .inner_congrats {
    padding-block: 30px;
  }
}
