/**
 * Screen sizes
 */
/**
  * Colors
  */
:root {
  --primary-color: #275ccb;
  --secondary-color: #45b29d;
  --heading-font: system-ui;
  --body-font: system-ui;
}

.home .main {
  background: #f0f0f0;
}
.home .breadcrumbs {
  display: none;
}
.home-hero {
  background-color: #275ccb;
  padding: 1rem 0 0;
  color: white;
  position: relative;
}
.home-hero .wrapper {
  display: flex;
  flex-wrap: wrap;
}
.home-hero-text {
  flex: 1 1 400px;
}
@media (min-width: 1020px) {
  .home-hero-text {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.home-hero-text h1 {
  margin-top: 0;
}
.home-hero-text-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .home-hero-text-ctas {
    margin-top: 1rem;
  }
}
.home-hero-text-ctas .button {
  flex: 0 0 200px;
}
@media (max-width: 500px) {
  .home-hero-text-ctas .button {
    flex: 1 1 100%;
  }
}
.home-hero-media {
  flex: 1 1 400px;
  margin: auto 0 1px 0;
  position: relative;
}
.home-hero-media figcaption {
  position: absolute;
  bottom: -3rem;
  background: #091a33;
  font-size: 12px;
  text-align: center;
  width: 100%;
}
.home-hero:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: url("../img/texture.svg") no-repeat bottom center/100% 100%;
  position: absolute;
}
.home-articles {
  background: #091a33;
  padding: 2rem 0 15rem;
  position: relative;
}
.home-articles:after {
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: url("../img/texture.svg") no-repeat bottom center/100% 100%;
  transform: rotate(180deg);
  position: absolute;
}
.home-articles .wrapper > h2 {
  text-align: center;
  color: white;
  margin: 4rem 0 2rem;
}
.home-articles .wrapper > svg {
  display: block;
  margin: 2rem auto 3rem;
}
.home-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.home-articles .text-center {
  margin-top: 3rem;
}
.home-articles .text-center a {
  color: white;
  font-size: var(--step-1);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.home-articles .text-center a:hover, .home-articles .text-center a:focus {
  color: #ea9c41;
}
