.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 100%) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 980px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1160px) {
  .container {
    max-width: 1160px;
  }
}
@media (min-width: 1380px) {
  .container {
    max-width: 1380px;
  }
}
.m-0 {
  margin: 0px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.w-full {
  width: 100%;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-6 {
  gap: 1.5rem;
}
.bg-blue {
  background-color: var(--blue);
}
.bg-green {
  background-color: var(--green);
}
.bg-purple {
  background-color: var(--purple);
}
.p-0 {
  padding: 0px;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.text-center {
  text-align: center;
}
.font-gig-medium {
  font-family: Gig Medium, Verdana, Arial;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.font-normal {
  font-weight: 400;
}
.text-white {
  color: var(--white);
}
:root {
  --default-font-family: "Gilroy Medium", Arial, Verdana, sans-serif;
  --highlight-font-family: "Gig Medium", Arial, Verdana, sans-serif;
  --white: #fff;
  --black: #000;
  --blue: #2ea7f7;
  --green: #1fc968;
  --purple: #5705ba;
  --sm-screen: 540px;
  --md-screen: 720px;
  --lg-screen: 980px;
  --xl-screen: 1160px;
  --2xl-screen: 1380px;
}

@font-face {
  font-family: "Gig Medium";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/gig-medium.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy Medium";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/gilroy-medium.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scrollbar-color: var(--white) var(--black);
  scrollbar-width: thin;
  scrollbar-gutter: stable;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: var(--white);
  color: var(--black);
  text-shadow: none;
}

::selection {
  background: var(--white);
  color: var(--black);
  text-shadow: none;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--default-font-family);
  font-size: 1em;
  font-weight: 400;
  margin: 0;
  padding: 0;
  scrollbar-color: var(--white) var(--black);
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

a {
  color: var(--white);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: manipulation;
}

h1, h2, h3, h4 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.fill-current {
  fill: currentColor;
}

.headroom {
  will-change: transform;
}

.headroom--pinned {
  transition: all 0.5s ease-in-out;
  transform: translateY(0%);
  position: fixed;
}

.headroom--unpinned {
  transition: all 0.5s ease-in-out;
  transform: translateY(-100%);
  position: fixed;
}

.wrapper {
  padding-bottom: 2rem;
}

.bt {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background-color: var(--white);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1;
  color: var(--black);
  text-decoration-line: none;
}
.no-touch .bt:hover {
  background-color: var(--black);
  color: var(--white);
}
.bt svg {
  margin-left: 0.5rem;
  fill: currentColor;
}

.bt--invert {
  background-color: var(--black);
  color: var(--white);
}
.no-touch .bt--invert:hover {
  background-color: var(--white);
  color: var(--black);
}

.header {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 50;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  transition: opacity 0.3s 0.3s ease-in-out;
}
.js .header {
  opacity: 0;
}
.loaded .header {
  opacity: 1;
}
.header a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .header a:hover {
    text-decoration-line: none;
  }
}

.entry-header {
  background: url(../images/background-header.jpg) center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  width: 100%;
}
.no-touch .entry-header {
  background-attachment: fixed;
}
.entry-header .container {
  min-height: 100vh;
}
.entry-header h1 {
  margin: 0px;
  padding: 0px;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .entry-header h1 {
    font-size: 9.35rem;
  }
}
.entry-header h1 em {
  display: block;
  font-family: Gig Medium, Verdana, Arial;
  font-style: italic;
}

.tagline {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .tagline {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.tagline h2 {
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .tagline h2 {
    font-size: 3.75rem;
    line-height: 1;
  }
}
.tagline img {
  display: inline-block;
  padding: 0.5rem;
  vertical-align: middle;
}

.block-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--white);
}

@media (min-width: 1024px) {
  .block-item {
    padding: 2rem;
  }
}

.block-item {
  min-height: 15rem;
}
@media (min-width: 1024px) {
  .block-item {
    min-height: 20rem;
  }
}
.block-item h4 {
  margin: 0px;
  padding: 0px;
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .block-item h4 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.block-item p {
  max-width: 75%;
}
@media (min-width: 1024px) {
  .lg\:w-10\/12 {
    width: 83.333333%;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
