.ty-main-title {
  font-family: 'Poppins Bold';
  font-size: 44px;
  line-height: 45px;
}
.ty-title {
  font-family: 'Poppins Bold';
  font-size: 34px;
}
.ty-subtitle {
  font-family: 'Poppins Bold';
  font-size: 22px;
}
.ty-h1 {
  font-family: 'Poppins SemiBold';
  font-size: 18px;
  text-transform: capitalize;
}
.ty-body-1 {
  font-family: 'Poppins SemiBold';
  font-size: 18px;
  line-height: 33px;
}
.ty-body-2 {
  font-family: 'Poppins Medium';
  font-size: 18px;
  line-height: 33px;
}
.ty-body-3 {
  font-family: 'Poppins Medium';
  font-size: 14px;
}
.ty-body-4 {
  font-family: 'Poppins Medium';
  font-size: 12px;
  line-height: 24px;
}
.ty-action {
  font-family: 'Poppins SemiBold';
  font-size: 16px;
}
.ty-caption {
  font-family: 'Poppins SemiBold';
  text-transform: capitalize;
  font-size: 14px;
}
.ty-footer {
  font-family: 'Poppins Bold';
  font-size: 14px;
  line-height: 20px;
}
a,
a:hover,
a:focus,
a:link,
a:visited {
  text-decoration: none;
}
.custom-btn {
  border: none;
  display: block;
  text-align: center;
  padding: 0 30px;
  transition: 0.3s ease-out;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  font-family: 'Poppins SemiBold';
  font-size: 16px;
  z-index: 10;
  height: fit-content;
}
.custom-btn.large {
  min-height: 48px;
}
.custom-btn.xlarge {
  min-height: 56px;
}
.custom-btn.primary {
  background-color: #FEF8F1;
  color: #DD7C64;
}
.custom-btn.accent {
  background-color: #E9907A;
  color: #FFFFFF;
}
.custom-btn.accent-dark {
  background-color: #DD7C64;
  color: #FFFFFF;
}
.custom-btn.apple-download {
  box-shadow: none;
  width: 142px;
  background: transparent;
  background-image: url('/images/apple_download.png');
  background-size: contain;
  background-repeat: no-repeat;
}
a.image-btn {
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 1920px) {
  .ty-main-title {
    font-size: 54px;
    line-height: 55px;
  }
  .ty-title {
    font-size: 42px;
  }
  .ty-body-1 {
    font-size: 24px;
    line-height: 40px;
  }
  .ty-body-2 {
    font-size: 24px;
    line-height: 40px;
  }
  .ty-body-3 {
    font-size: 18px;
    line-height: 24px;
  }
  .ty-body-4 {
    font-size: 14px;
    line-height: 24px;
  }
  .ty-footer {
    font-size: 18px;
  }
  .custom-btn {
    font-size: 18px;
  }
  .custom-btn.large {
    min-height: 56px;
  }
  .custom-btn.apple-download {
    width: 202px;
  }
}
@media screen and (min-width: 2560px) {
  .ty-main-title {
    font-size: 64px;
    line-height: 65px;
  }
  .ty-title {
    font-size: 54px;
  }
  .ty-body-1 {
    font-size: 28px;
    line-height: 42px;
  }
  .ty-body-2 {
    font-size: 28px;
    line-height: 42px;
  }
  .ty-body-3 {
    font-size: 24px;
    line-height: 33px;
  }
  .ty-body-4 {
    font-size: 18px;
    line-height: 33px;
  }
  .ty-footer {
    font-size: 24px;
  }
  .custom-btn {
    font-size: 24px;
  }
  .custom-btn.large {
    min-height: 76px;
  }
  .custom-btn.apple-download {
    width: 242px;
  }
}
@media screen and (max-width: 768px) {
  .ty-main-title {
    font-size: 34px;
  }
  .ty-title {
    font-size: 28px;
  }
  .ty-footer {
    font-size: 12px;
  }
}
.legal {
  display: flex;
  flex-direction: column;
  padding: 60px 160px;
  background-color: #F6F2F0;
  position: relative;
}
.legal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-position: top;
  width: 70%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('/images/vector_text_bg_top.svg');
}
.legal::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  background-position: bottom;
  width: 70%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('/images/vector_text_bg_bottom.svg');
}
.legal ol {
  counter-reset: item;
}
.legal ol.root {
  padding-left: 0px;
}
.legal li {
  display: block;
}
.legal li::before {
  font-family: 'Poppins SemiBold';
}
.legal .ty-title {
  margin-top: 0px;
  color: #DD7C64;
}
.legal span.focused {
  font-family: 'Poppins SemiBold';
}
.legal span.accent {
  font-family: 'Poppins SemiBold';
  color: #B76F38;
}
.legal #billing p {
  padding-top: 20px;
}
.legal #billing li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}
.legal #privacy ol.root > li {
  padding-top: 20px;
}
.legal #privacy ol.root > li::before {
  counter-increment: item;
  content: counter(item, upper-alpha) ". ";
}
.legal #privacy ol:not(.root) {
  counter-reset: newItem;
}
.legal #privacy ol:not(.root) > li::before {
  color: #B76F38;
  counter-increment: newItem;
  content: "(" counters(newItem, '') ') ';
}
.legal #terms div {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .legal {
    padding: 118px 23px;
  }
  .legal::before {
    width: 90%;
  }
}
