/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #212529;
}
@media (max-width: 1023px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
}
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  h2 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 29px;
  }
}
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 8px;
}
@media (max-width: 1023px) {
  h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 22px;
    line-height: 26px;
  }
}
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1023px) {
  p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}
.btn-secondary,
.btn-primary {
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  border: 1px solid;
  text-decoration: none;
}
.btn-primary {
  background-color: #e07a30;
  color: #ffffff;
  border-color: #e07a30;
  font-weight: 600;
}
.btn-primary:hover:not(:disabled) {
  background-color: #A76736;
  border-color: #A76736;
  color: #ffffff;
  box-shadow: 0 2px 25px -37px #A76736, 0 10px 20px -15px rgba(14, 18, 22, 0.2);
}
.btn-primary:active:not(:disabled) {
  background-color: #e07a30;
}
.btn-secondary {
  font-weight: 500;
  padding: 6px 12px;
  background-color: #fff;
  color: #e07a30;
  border: 1px solid #e07a30;
}
.btn-large {
  padding: 16px 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}
.btn-large .icon {
  font-size: 20px;
}
.btn-small {
  padding: 6px 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  width: max-content;
  margin: 0 auto;
}
.btn-small .icon {
  font-size: 15px;
}
body {
  background-color: #fff;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1023px) {
  body {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}
body.menu-open {
  overflow: hidden;
  height: 100%;
}
body.menu-open .header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
h2 {
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
}
a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}
a:visited {
  color: rgba(10, 88, 202, 0.8);
}
app-root img,
app-root picture,
app-root video,
app-root canvas,
app-root svg {
  display: block;
}
.content-wrapper {
  background-color: #fff;
  margin: 0 auto;
  padding-top: 90px;
}
@media (max-width: 1023px) {
  .content-wrapper {
    padding-top: 70px;
  }
}
.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
}
.scroll-hidden {
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
}
body,
html {
  margin: 0;
  padding: 0;
}
.ts-home p {
  font-size: 16px;
}
.ts-hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ts-hero .content-inner {
  padding: 0 20px;
}
@media (max-width: 1280px) {
  .ts-hero .content-inner {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .ts-hero {
    background-color: #000;
  }
}
.ts-hero__content {
  padding: 48px 24px;
  text-align: center;
  border-radius: 4px;
}
.ts-hero__title {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #212529;
}
@media (max-width: 1023px) {
  .ts-hero__title {
    font-size: 34px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .ts-hero__title {
    font-size: 28px;
    line-height: 34px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
