.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;
  }
}
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  /* make scrollbar transparent */
}
html,
body {
  min-height: 100vh;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  color: #3D3431;
  background: #EA9A86;
  background-image: url('/images/background_desktop.png');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body {
    background-image: unset;
  }
}
@media screen and (min-width: 1920px) {
  body {
    background-position-y: 95%;
  }
}
@media screen and (min-width: 2560px) {
  body {
    background-position-y: 85%;
  }
}
body .content-container {
  flex: 1;
  justify-content: flex-start;
}
body .content-container.mobile {
  display: none;
}
body .content-container.desktop {
  display: flex;
  padding: 45px 140px 0;
}
body .content-container.desktop .typography {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body .content-container.desktop .typography img.logo {
  width: 89px;
  height: 88px;
}
body .content-container.desktop .typography h1.ty-main-title {
  max-width: 548px;
  margin-top: 30px;
  color: #FFFFFF;
}
body .content-container.desktop .typography p.ty-body-2 {
  margin-top: 20px;
  max-width: 415px;
  color: #FFFFFF;
}
body .content-container.desktop .typography .actions-container {
  display: flex;
  padding-top: 70px;
  justify-content: flex-start;
}
body .content-container.desktop .typography .actions-container a:not(:first-child) {
  margin-left: 20px;
}
body .content-container.desktop .mobile-frames {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex: 1;
}
body .content-container.desktop .mobile-frames .app-showcase.web.slider1 {
  margin-top: 102px;
}
body .content-container.desktop .mobile-frames .app-showcase.web.slider2 {
  margin-left: 327px;
}
@media screen and (min-width: 1920px) {
  body .content-container.desktop {
    padding: 5% 9% 0;
  }
  body .content-container.desktop .typography h1.ty-main-title {
    max-width: 645px;
  }
  body .content-container.desktop .typography p.ty-body-2 {
    max-width: 548px;
  }
  body .content-container.desktop .mobile-frames .app-showcase.web.slider1 {
    margin-top: 102px;
  }
  body .content-container.desktop .mobile-frames .app-showcase.web.slider2 {
    margin-left: 10%;
  }
}
@media screen and (min-width: 2560px) {
  body .content-container.desktop {
    padding: 8% 10% 0;
  }
  body .content-container.desktop .typography h1.ty-main-title {
    padding-top: 40px;
    max-width: 745px;
  }
  body .content-container.desktop .typography p.ty-body-2 {
    padding-top: 50px;
    max-width: 648px;
  }
  body .content-container.desktop .mobile-frames .app-showcase.web.slider1 {
    margin-top: 120px;
  }
  body .content-container.desktop .mobile-frames .app-showcase.web.slider2 {
    margin-left: 20%;
  }
}
@media screen and (max-width: 768px) {
  body .content-container.desktop {
    display: none;
  }
  body .content-container.mobile {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  body .content-container.mobile .typography {
    color: #FFFFFF;
    margin-left: 45px;
    margin-right: 45px;
  }
  body .content-container.mobile .hero-container {
    padding: 33px 5px;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #DD7C64;
    position: relative;
  }
  body .content-container.mobile .hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 329px;
    width: 279px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('/images/vector_mobile_top.svg');
  }
  body .content-container.mobile .hero-container .logo,
  body .content-container.mobile .hero-container .ty-main-title {
    z-index: 1;
  }
  body .content-container.mobile .hero-container h1.ty-main-title {
    margin-top: 20px;
  }
  body .content-container.mobile .hero-container .logo {
    width: 60px;
  }
  body .content-container.mobile .hero-container .app-showcase.mobile.slider1 {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    background-image: url('/images/phone_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
  }
  body .content-container.mobile .hero-container p.intro {
    margin-top: 34px;
  }
  body .content-container.mobile .hero-container a {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  body .content-container.mobile .hero-container a .action {
    margin-top: 34px;
    width: calc(100% - 90px);
  }
  body .content-container.mobile .download-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #C07644;
    position: relative;
    padding: 93px 5px 100px;
    z-index: 0;
  }
  body .content-container.mobile .download-container::before {
    content: '';
    display: block;
    position: absolute;
    top: -70px;
    height: 120px;
    width: 100%;
    z-index: -1;
    background-position: bottom;
    left: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('/images/vector_hero_mobile.svg');
  }
  body .content-container.mobile .download-container::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -190px;
    right: 0px;
    height: 324px;
    width: 279px;
    background-size: auto;
    background-repeat: no-repeat;
    background-image: url('/images/vector_mobile_bottom.svg');
  }
  body .content-container.mobile .download-container .app-showcase.mobile.slider2 {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    background-image: url('/images/phone_bg_light.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
  }
  body .content-container.mobile .download-container p.intro {
    margin-top: 34px;
  }
  body .content-container.mobile .download-container .action {
    margin-top: 34px;
  }
}
