@font-face {
  font-family: 'Gotham';
  src: url('/wp-content/uploads/fonts/Gotham-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('/wp-content/uploads/fonts/Gotham-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('/wp-content/uploads/fonts/Gotham-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.section {
  max-width: 100%;
  width: 100%;

  padding: 0 1.5rem;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 0 0.625rem;
  }
}

.container {
  max-width: 80.125rem;
  width: 100%;

  margin: 0 auto
}

.text {
  font-family: "Gotham", sans-serif;
  line-height: 1.4;
  color: var(--color-dark);
  font-weight: 400;
  letter-spacing: 0;
  font-size: var(--text-sm);
}

.text--small {
  font-size: var(--text-xs);
}

.h1,.h2,.h3,.h4 {
  font-family: "Gotham", sans-serif;
  line-height: 1.2;
  color: var(--color-dark);
}

.h1 {
  font-size: var(--text-h1);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.h2 {
  font-size: var(--text-h2);
  font-weight: 900;
  letter-spacing: 0;
}

.h3 {
  font-size: var(--text-h3);
  font-weight: 900;
  letter-spacing: 0;
}

.h4 {
  font-size: var(--text-base);
  font-weight: 900;
  letter-spacing: 0;
}

.label {
  font-family: "Gotham", sans-serif;
  font-size: var(--text-label);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.label--small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  font-family: "Gotham", sans-serif;
  font-size: var(--text-label-small);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white);

  padding: var(--space-2);
  margin-bottom: var(--space-2);

  background-color: var(--color-primary);

  border-radius: 0.625rem;
}

.btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  font-family: "Gotham", sans-serif;
  font-size: var(--text-sm);
  line-height: 1;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  
  min-height: 2.75rem;
  
  border-radius: 0.625rem;
  border: 1px solid transparent;

  padding: 0 var(--space-5);
}

.btn--primary {
  color: var(--color-white);
  
  background-color: var(--color-primary);
}

.btn--secondary {
  color: var(--color-white);
  font-weight: 500;

  background: linear-gradient(89.8deg, #1E4D8C 33.19%, #020426 98.46%);
}

.btn--outline {
  color: var(--color-white);
  
  border-color: var(--color-white);

  transition: border-color 0.25s ease-out,
              background-color 0.25s ease-out;
}

.btn--outline::hover {
  color: var(--color-dark);

  background-color: var(--color-white);
}

.btn--outline-dark {
  color: var(--color-dark);

  border-color: var(--color-dark);
}

.btn--text {
  
}
