@font-face {
  font-family: 'NouvelR';
  src: url('../fonts/NouvelR-Light.woff2') format('woff2'),
    url('../fonts/NouvelR-Light.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'NouvelR';
  src: url('../fonts/NouvelR-Book.woff2') format('woff2'),
    url('../fonts/NouvelR-Book.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'NouvelR';
  src: url('../fonts/NouvelR-Regular.woff2') format('woff2'),
    url('../fonts/NouvelR-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NouvelR';
  src: url('../fonts/NouvelR-Semibold.woff2') format('woff2'),
    url('../fonts/NouvelR-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'NouvelR';
  src: url('../fonts/NouvelR-Bold.woff2') format('woff2'),
    url('../fonts/NouvelR-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NouvelR';
  src: url('../fonts/NouvelR-Extrabold.woff2') format('woff2'),
    url('../fonts/NouvelR-Extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'NouvelR-Variable';
  src: url('../fonts/NouvelR-Variable.woff2') format('woff2'),
    url('../fonts/NouvelR-Variable.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

:root {
  --max-width: 1280px;
}

html,
body,
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "NouvelR", sans-serif;
}

.section-container {
  width: 100%;
  line-height: 1.5;
}

.s-c-inner {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 20px;
}

.black {
  background: #000;
}

img {
  display: block;
  width: 100%;
}

/* PAGE TITLE */

.page-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 70px 0;
  color: #FFF;
}

.page-title__title {
  font-size: 28px;
  text-transform: uppercase;
}

.page-title__intro {
  font-size: 18px;
}

/* END OF PAGE TITLE */

/* IMAGE AND COPY */

.image-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 32px 0;
}

.image-copy.reverse {
  display: flex;
  flex-direction: row-reverse;
}

.image-copy.reverse > div {
  width: 100%;
  max-width: 50%;
}

.image-copy__copy-title {
  font-size: 20px;
  font-weight: bold;
}

.image-copy__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 0 32px;
}

.image-copy__copy-body {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.image-copy__copy-body ul {
  padding: 0 0 0 18px;
}

.image-copy__copy-cta {
  padding: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-copy__copy-cta a {
  padding: 14px 32px;
  background: #000;
  font-size: 16px;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  transition: background ease .25s, color ease .25s;
}

.image-copy__copy-cta a:hover {
  background: #efdf00;
  color: #000;
}

/* END IMAGE AND COPY */

/* SECTION TITLE */

.section-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
}

.section-title__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

.section-title__intro {
  font-size: 18px;
  text-align: center;
}

/* END SECTION TITLE */


/* FEATURE PROMO */

.feature-promo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

.feature-item__title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 12px 0;
}

.feature-item__title:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.feature-item__body {
  font-size: 14px;
  text-align: center;
}

.feature-item__cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.feature-item__cta a {
  padding: 14px 15px;
  background: #000;
  font-size: 16px;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  margin: 16px 0 0 0;
  transition: background ease .25s, color ease .25s;
}

.feature-item__cta a:hover {
  background: #efdf00;
  color: #000;
}

/* END FEATURE PROMO */

/* CTA BAR */

.cta-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
}

.cta-bar__button {
 text-align: center;
}

.cta-bar__button a {
  display: inline-block;
  padding: 14px 32px;
  background: #000;
  font-size: 16px;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  transition: background ease .25s, color ease .25s;
}

.cta-bar__button a:hover {
  background: #efdf00;
  color: #000;
}

.cta-bar__button ~ .cta-bar__button a {
  background: #FFF;
  color: #000;
  border: 1px solid #000;
}

.cta-bar__button ~ .cta-bar__button a:hover {
  background: #000;
  color: #FFF;
}

.cta-bar__button ~ .cta-bar__button ~ .cta-bar__button a {
  background: #FFF;
  color: #000;
  border: 1px solid #d9d9d6;
}

.cta-bar__button ~ .cta-bar__button ~ .cta-bar__button a:hover {
  background: #313131;
  color: #FFF;
}

/* END OF CTA BAR */

/* LEGAL */

.legal {
  padding: 32px 0;
  font-size: 14px;
}

/* END OF LEGAL */
