/******************************************
Section | Two Column Checklist
******************************************/
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**************************************************
Stylesheet: Mixins Stylesheet
**************************************************/
/*******************
FONT MIXINS (size, color, weight, line-height)
********************/
/*********************
Column split into X columns
@include column-count(3);
*********************/
/*********************
Column split with px gap
@include column-gap(40px);
*********************/
/*********************
Column split style
@include column-rule-style(solid);
*********************/
/*********************
Column split border
@include column-rule(1px solid #ededed);
*********************/
/*********************
Background gradient 2 color
@include background-gradient($gray, #000);
*********************/
/*********************
Background gradient 3 color
@include accordion-gradient($gray, #000, #666);
*********************/
/*********************
Transform duration by X seconds
@include transition(1.5s);
*********************/
/*********************
Transform Rotate element by x degrees
@include rotate(180);
*********************/
/*********************
Creates a 6px arrow with pure css
@include arrow(#000);
*********************/
/*********************
Clip 10px corner off the bottom right corner
@include cornerclip(#000);
*********************/
/*********************
Clip 3px corner off the bottom right corner
@include cornerclipsmall(#000);
*********************/
/*********************
Clip 10px corner off the top right corner
@include cornercliptop(#000);
*********************/
/*********************
Clip 10px corner off the top left corner
@include cornercliptopleft(#000);
*********************/
.two-column-checklist {
  background: #f3f3f3;
}
.two-column-checklist .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 92px 30px 88px;
}
.two-column-checklist .checklist-eyebrow {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #109be9;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 28px;
}
.two-column-checklist h2 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 54px;
  color: #021736;
  font-weight: 800;
  line-height: 0.95em;
  max-width: 900px;
  margin: 0 0 30px;
}
.two-column-checklist .intro-text {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: #465773;
  font-weight: 500;
  line-height: 1.45em;
  max-width: 1080px;
  margin: 0 0 48px;
}
.two-column-checklist .checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  margin-bottom: 40px;
}
.two-column-checklist .checklist-column {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
}
.two-column-checklist .checklist-column li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.two-column-checklist .check {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #e4ba01;
  font-weight: 800;
  line-height: 1em;
  transform: rotate(45deg);
  margin-top: 2px;
  display: inline-flex;
  justify-content: center;
}
.two-column-checklist .item-text {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #0d1e34;
  font-weight: 700;
  line-height: 1.25em;
}
.two-column-checklist .cta-wrap {
  margin-top: 14px;
}
.two-column-checklist .btn {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 40px;
  color: #091b35;
  font-weight: 800;
  line-height: 1em;
  text-decoration: none;
  background: #f0de00;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 18px 34px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.two-column-checklist .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
@media only screen and (max-width: 991px) {
  .two-column-checklist .inner {
    padding: 70px 26px;
  }
  .two-column-checklist h2 {
    font-size: 52px;
    max-width: 760px;
  }
  .two-column-checklist .intro-text {
    font-size: 28px;
  }
  .two-column-checklist .item-text {
    font-size: 30px;
  }
  .two-column-checklist .btn {
    font-size: 30px;
    padding: 16px 28px;
  }
}
@media only screen and (max-width: 767px) {
  .two-column-checklist .inner {
    padding: 52px 20px;
  }
  .two-column-checklist .checklist-eyebrow {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .two-column-checklist h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .two-column-checklist .intro-text {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .two-column-checklist .checklist-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  .two-column-checklist .checklist-column {
    gap: 14px;
  }
  .two-column-checklist .item-text {
    font-size: 23px;
  }
  .two-column-checklist .btn {
    font-size: 24px;
    padding: 14px 24px;
  }
}
