/* ==========
Template Defaults
========== */
@import url('default-chapter.0515.css');
/* MULI FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Muli:wght@300;700;900&display=swap');

/* ====================
Universal Overrides
==================== */

:root {
  /* Base */
  --bodyFontFamily: 'Muli', Verdana, Geneva, sans-serif;
  --colorHeadline: var(--colorBody);
  /*  Colors */
  --color1: #1038bb;
  --color2: #000;
  --color3: #1f1f1f;
  /* Boxes & Quotes*/
  --colorBox1: #adccda;
  --colorBox2: #eee;
  --colorQuoteBorder1: #5350f0;
  /* Bullet Colors */
  --color1Bullet: #5350f0;
}

/* ====================
General
==================== */
.content h1,
.content h2,
.content h3 {
 font-weight: 900;
}

/* ===================
HERO
==================== */

.hero__image {
 max-width: 500px;
}

/* ==========
Opt-in
========== */

.opt-in {
  background: #edf2ff;
  margin: 0 auto;
  border: 1px solid #dfe5f5;
  padding: 10px 20px 30px;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  gap: 1em;
 }
 
 .opt-in__cover {
  max-width: 200px;
  width: 100%;
 }
 
 .opt-in__cover img {
  margin: 20px auto 0;
 }

 .opt-in__copy {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
 }
 
 .opt-in__title {
  font-size: 34px;
 }

 .opt-in__button {
	display: block;
	margin: 18px 0;
}

 @media(max-width: 1124px) {
  .opt-in {
   max-width: 600px;
   flex-wrap: wrap;
  }
 
  .opt-in__button {
   text-align: center;
  }
 
  .opt-in__title {
   font-size: 28px;
  }
} 