@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Medium.ttf);
  font-display: swap;
}

@font-face {
  font-family: GilroySemibold;
  src: url(../fonts/Gilroy-SemiBold.ttf);
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Gilroy;
}

:root {
  --primary-color: #10528b;
  --heading: 3rem;
  --sub-heading: 1rem;
  --item-heading: 1.125rem;
}

section {
  width: 100%;
  /* min-height: 70vh; */
  padding: 100px 5%;
  text-align: center;
  padding-bottom: 0;
}

section h1 {
  font-size: var(--heading);
  font-weight: 600;
}

section span {
  font-size: 14vw;
  font-weight: 700;
  background: linear-gradient(90deg, #1052bb, #183865);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media screen and (max-width: 568px) {
  :root {
    --primary-color: #10528b;
    --heading: 2rem;
    --sub-heading: 1rem;
    --item-heading: 1.125rem;
  }

  .go-hoeme-btn {
    font-size: 14px;
    padding: 7px 14px;
  }
}
