@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/ubuntu-400-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/ubuntu-400-latin.woff2) format("woff2");
  unicode-range: U+00??, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/ubuntu-700-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/ubuntu-700-latin.woff2) format("woff2");
  unicode-range: U+00??, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: Ubuntu-fallback;
  src: local("Arial");
  ascent-override: 91.32%;
  descent-override: 18.52%;
  line-gap-override: 2.74%;
  size-adjust: 102.06%;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body,
html {
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  color: #212121;
  font-family: Ubuntu, Ubuntu-fallback;
  font-style: normal;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 544px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 1280px;
    padding: 0 48px;
  }
}

/* Header */
.header {
  background-image: url(/images/header-bg-mobile.jpeg);
  background-image: -webkit-image-set(
    url("/images/header-bg-mobile.webp") type("image/webp"),
    url("/images/header-bg-mobile.jpeg") type("image/jpeg")
  );
  background-image: image-set(
    url("/images/header-bg-mobile.webp") type("image/webp"),
    url("/images/header-bg-mobile.jpeg") type("image/jpeg")
  );
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .header {
    background-image: url(/images/header-bg.jpeg);
    background-image: -webkit-image-set(
      url("/images/header-bg.webp") type("image/webp"),
      url("/images/header-bg.jpeg") type("image/jpeg")
    );
    background-image: image-set(
      url("/images/header-bg.webp") type("image/webp"),
      url("/images/header-bg.jpeg") type("image/jpeg")
    );
  }
}
.header-content {
  color: #303033;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.header-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.header-text {
  line-height: 1.5;
}

/* Slides */
.slides {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 24px;
  padding-top: 24px;
}
@media screen and (min-width: 480px) {
  .slides {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.slide {
  color: #37352f;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .slide {
    width: calc(50% - 15px);
  }
}
@media screen and (min-width: 768px) {
  .slide {
    flex: 1 1;
    width: auto;
  }
}
.slide-img {
  height: auto;
  width: 100%;
}
.slide-title {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 32px;
}
.slide-text {
  line-height: 28px;
}

/* CTA */
.cta {
  background-color: #303033;
  padding: 32px 0;
}
.cta-wrapper {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
}
.cta-text {
  line-height: 28px;
}
.cta-link {
  background-color: #fff;
  border-radius: 4px;
  color: #212121;
  line-height: 36px;
  max-width: 360px;
  text-transform: uppercase;
  width: 100%;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 24px;
  padding-top: 24px;
  text-align: center;
}
.footer-text {
  line-height: 1.5;
}
