@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.ttf') format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-VariableItalic.ttf') format("truetype");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --color--black: #010101;
  --color--white: white;
  --color--orange: #f1cec2;
  --color--grey: #e9eaeb;
}

body {
  color: var(--color--black);
  letter-spacing: -.015em;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

.css-styles {
  box-sizing: border-box;
}

.main-w {
  overflow: clip;
}

.section {
  z-index: 1;
  position: relative;
}

.section.is-hero {
  justify-content: space-between;
  align-items: stretch;
  min-height: 100svh;
  padding-top: 6rem;
  padding-bottom: 6rem;
  transition: all .6s cubic-bezier(.525, 0, 0, 1);
  display: flex;
}

.max-width-45ch {
  max-width: 45ch;
}

.container {
  width: 100%;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5em;
  padding-right: 2.5em;
}

.container.is-full {
  max-width: 90rem;
}

.global {
  position: fixed;
}

.max-width-50ch {
  max-width: 50ch;
}

.hero_wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.hero_img {
  width: 30rem;
  max-width: none;
  margin-bottom: -2rem;
  margin-right: -2rem;
}

.hero_img-subtitle {
  text-align: center;
  color: color-mix(in srgb, currentColor, transparent 30%);
  font-style: italic;
  font-weight: 400;
}

.hero_pf-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
}

.hero_pf {
  border: 2px solid var(--color--white);
  object-fit: cover;
  border-radius: 100rem;
  width: 2.625rem;
  height: 2.625rem;
}

.hero_pf.is-second {
  margin-left: -14px;
}

.hero_left-part {
  grid-column-gap: 7.5rem;
  grid-row-gap: 7.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero_heading {
  grid-column-gap: 1.625rem;
  grid-row-gap: 1.625rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero_h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.375rem;
  line-height: 1.2;
}

.hero_p {
  color: color-mix(in srgb, currentColor, transparent 40%);
}

.hero_buttons {
  grid-column-gap: 1.375rem;
  grid-row-gap: 1.375rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.btn {
  background-color: var(--color--orange);
  color: var(--color--black);
  border-radius: .625rem;
  padding: .75rem 1rem;
  font-weight: 700;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
}

.btn:hover {
  opacity: .7;
}

.btn.is-secondary {
  border-style: solid;
  border-width: 1.5px;
  border-top-color: color-mix(in srgb, currentColor, transparent 90%);
  border-right-color: color-mix(in srgb, currentColor, transparent 90%);
  border-bottom-color: color-mix(in srgb, currentColor, transparent 90%);
  border-left-color: color-mix(in srgb, currentColor, transparent 90%);
  background-color: #0000;
}

.hero_left-top {
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero_left-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.max-width-30ch {
  max-width: 30ch;
}

.hero_tag {
  background-color: var(--color--grey);
  border-radius: .5rem;
  padding: .35rem .75rem;
}

@media screen and (max-width: 991px) {
  .section.is-hero {
    min-height: auto;
  }

  .hero_wrap {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .hero_left-part {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .hero_h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero_img {
    width: 108%;
  }

  .hero_buttons {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    width: 100%;
  }

  .btn {
    text-align: center;
    width: 100%;
  }
}


@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}