/* N2M (Age-in) styles */
html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
h1, h2 {
  font-family: 'fields', sans-serif;
  font-weight: 700;
  line-height: 1;
}
h1 {
  font-size: 6rem;
}
h2 {
  font-size: 4.8rem;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 4.8rem;
  }
  h2 {
    font-size: 3.6rem;
  }
}
p:last-child {
  margin-bottom: 0;
}
.xl {
  font-size: 2rem;
}
.lg {
  font-size: 1.8rem;
}
a {
  display: inline-block; /* fix for img link filling length of div */
}
/* form field overrides */
.n2m .formFieldContainer .formFieldRow:not(:last-child) {
  padding-bottom: 2rem;
}
.n2m .formFieldContainer .formFieldRow .formFieldCol:not(:last-child) {
  margin-right: 2rem;
}
.n2m .formFieldContainer label {
  color: black;
  font-weight: 600;
}
.n2m .formFieldContainer .formFieldRow input[type='text'], .n2m .formFieldContainer .formFieldRow input[type='email'], .n2m .formFieldContainer .formFieldRow input[type='tel'], .n2m .formFieldContainer .formFieldRow input[type='date'] {
  border-radius: 8px;
  border: 2px solid #DBDEE1;
  color: black;
}
.n2m .formFieldContainer .formFieldRow input::placeholder, .n2m .formFieldContainer .formFieldRow textarea::placeholder {
  color: #929BA4;
}
.n2m .formFieldContainer .formFieldRow input[type='text']:focus, .n2m .formFieldRow input[type='email']:focus, .n2m .formFieldRow input[type='tel']:focus, .n2m .formFieldRow input[type='date']:focus {
  border: 2px solid #473D5C;
}
.n2m .formFieldContainer .checkboxWrapper label {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 1240px) {
  .n2m .formFieldContainer .formFieldRow {
    display: block;
    padding-bottom: 2rem;
  }
  .n2m .formFieldContainer .formFieldRow .formFieldCol:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .n2m .formFieldContainer .formFieldRow {
    display: flex;
    padding-bottom: 0;
  }
  .n2m .formFieldContainer .formFieldRow .formFieldCol:not(:last-child) {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
@media (max-width: 639px) {
  .n2m .formFieldContainer .formFieldRow {
    display: block;
  }
  .n2m .formFieldContainer .formFieldRow .formFieldCol:not(:last-child) {
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
}
/* flex overrides */
.n2m .flex-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.n2m .flex-items .item:first-child {
  margin-left: 0;
}
.n2m .flex-items .item {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}
.n2m .flex-items .item:last-child {
  margin-left: 1.6rem;
  margin-right: 0;
}
.n2m .flex-items .item.right {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 2;
  order: 2;
}
.n2m .flex-items .item img {
  max-height: 100%;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
}
@media (max-width:1024px) {
  .n2m .flex-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
  }
  .n2m .flex-items .item.right {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .n2m .flex-items .item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0;
  }
  .n2m .flex-items .item:last-child {
    margin-left: 0;
  }
}
.section-separator {
  margin-bottom: 3.2rem;
}
@media (max-width:768px) {
  .section-separator {
    margin-bottom: 1.6rem;
  }
}
.radius {
  border-radius: 16px;
}
/* button overrides */
.n2m .btn {
  border-radius: 8px;
}
.n2m .btn.small {
  height: 4.4rem;
  line-height: 4.4rem;
}
.n2m .btn span {
  margin-right: .8rem;
}
.n2m .btn svg {
  transition: all 0.25s linear;
}
.n2m .btn:hover svg {
  transform: translateX(10px) rotate(45deg);
}
.n2m .btn.hollow.download:hover svg {
  transform: rotate(180deg);
}
.n2m .btn.hollow {
  border: 2px solid white;
  background-color: transparent;
}
.n2m .btn.hollow:hover {
  background-color: white;
  color: #473D5C;
}
.n2m .btn.hollow.download:hover {
  background-color: white;
  color: #20507A;
}
.n2m .btn.hollow .svg-arrow, .n2m .btn.hollow .svg-download {
  --fillColor: white;
}
.n2m .btn.hollow:hover .svg-arrow {
  --fillColor: #473D5C;
}
.n2m .btn.hollow:hover .svg-download {
  --fillColor: #20507A;
}
.n2m .form .btn, .n2m .feature .btn {
  width: 100%;
}
/* top bar styles */
.topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 80px;
}
.topbar .logo {
  width: 50%;
}
.topbar .content {
  width: 50%;
  text-align: right;
  margin: 0;
}
.topbar .content.mobile {
  display: none;
}
@media (max-width:480px) {
  .topbar .content {
    display: none;
  }
  .topbar .content.mobile {
    display: block;
  }
}
.n2m .layout-wrapper {
  margin-bottom: 3.2rem;
}
/* top hero & form styles */
.intro {
  background-color: #20507A;
  text-align: center;
  color: white;
}
.n2m .flex-items.form .item.border {
  border: 6px solid #20507A;
}
.n2m .flex-items.form .title {
  font-family: 'fields', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 3.2rem;
}
@media (max-width:1024px) {
  .ntm .flex-items .item img {
    max-height: 100%;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
  .n2m .flex-items.form .item.right {
    margin-bottom: 3.2rem;
  }
  .n2m .flex-items.form .title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
}
@media (max-width:768px) {
  .n2m .flex-items.form .item.right {
    margin-bottom: 1.6rem;
  }
}
/* testimonial styles */
.testimonial {
  background-color: #C3B8DB;
  text-align: center;
}
.testimonial .title {
  font-family: 'fields', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 3.2rem;
}
.testimonial .svg {
  margin-bottom: 2rem;
}
.testimonial p.lead {
  font-size: 3.6rem;
  line-height: 1.2;
}
.workshops .testimonial p.lead {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.testimonial .member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial .member .img {
  max-width: 100px;
  margin-right: 1.6rem;
}
.testimonial .member .img img {
  border-radius: 100px;
}
.testimonial .member .text {
  font-size: 1.4rem;
  text-align: left;
}
.workshops .testimonial .member .text {
  text-align: center;
}
.testimonial .member .text p {
  margin-bottom: .4rem;
}
@media (max-width:1024px) {
  .testimonial .title {
    font-family: 'fields', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  .testimonial p.lead {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
/* feature styles */
.flex-items.feature .item:first-child {
  background-color: #473D5C;
  color: white;
}
@media (max-width:1024px) {
  .flex-items.feature .item:first-child {
    margin-bottom: 3.2rem;
  }
}
@media (max-width:768px) {
  .flex-items.feature .item:first-child {
    margin-bottom: 1.6rem;
  }
}
/* bullet check styles */
ul.li-check {
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 4rem;
}
ul.li-check li {
  background: url('https://image.health.bcbsri.com/lib/fe3811747364047d761170/m/1/check.png') no-repeat left 0px;
}
ul.li-check li {
  list-style: none;
  padding: 0 0 1.6rem 3.2rem;
  margin-bottom: 0;
}
ul.li-check li:last-child {
  padding-bottom: 0;
}
/* email signup and bottom cta styles */
.cta-bottom {
  background-color: #F0EEF2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.2rem;
}
.workshops .cta-bottom {
  background-color: #473D5C;
  color: white;
}
.cta-bottom .title {
  font-family: fields, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-right: 1.6rem;
}
@media (max-width:768px) {
  .cta-bottom {
    display: block;
  }
  .cta-bottom .title {
    margin-right: 0;
    margin-bottom: 1.6rem;
    text-align: center;
  }
}
/* success page 3col styles */
.cta-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cta-block .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #F0EEF2;
}
.cta-block .item:not(:last-child) {
  margin-right: 3.2rem;
}
.cta-block .item .child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cta-block .cta-button {
  margin-top: 3.2rem;
}
.cta-block .cta-button .btn {
  width: 100%;
}
.cta-block .svg {
  margin-bottom: 3.22rem;
}
@media (min-width:1060px) {
  .cta-block .item {
    padding: 3.2rem;
  }
}
@media (min-width:1260px) {
  .cta-block .item {
    padding: 6.4rem;
  }
}
@media (max-width:768px) {
  .cta-block .cta-button {
    margin-top: 1.6rem;
  }
}
@media (max-width:1060px) {
  .cta-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cta-block .item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
  .cta-block .item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1.6rem;
  }
  .cta-block .svg {
    margin-bottom: 1.6rem;
  }
}
@media (max-width:768px) {
  .cta-block .item:not(:last-child) {
    margin-bottom: 1.6rem;
  }
}
/* sales rep page styles */
.n2m .flex-items.details .item.left-col {
  background-color: #F0EEF2;
}
.n2m .flex-items.details .item.right-col {
  border: 6px solid #20507A;
}
@media (max-width:1024px) {
  .n2m .flex-items.details .item.left-col {
    margin-bottom: 3.2rem;
  }
}
@media (max-width:768px) {
  .n2m .flex-items.details .item.left-col {
    margin-bottom: 1.6rem;
  }
}
.n2m .flex-items.details .title {
  font-family: 'fields', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: .8rem;
}
.n2m .flex-items.details .svg {
  margin-bottom: 3.2rem;
}
.n2m .flex-items.details ul.li-check li {
  background: url('https://image.health.bcbsri.com/lib/fe3811747364047d761170/m/1/check-lcl.png') no-repeat left 2px;
  font-size: 1.8rem;
}
.n2m .flex-items.details .rep-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.n2m .flex-items.details .rep-blocks:last-child {
  margin-bottom: 0;
}
.n2m .flex-items.details .rep-blocks p {
  margin-bottom: .4rem;
}
.n2m .flex-items.details .rep-blocks p:last-child {
  margin-bottom: 0;
}
.n2m .flex-items.details .rep-blocks .img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 1.6rem;
}
.n2m .flex-items.details .rep-blocks .img img {
  border-radius: 1000px;
}
.n2m .flex-items.details .rep-blocks .content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
}
/* footer styles */
.n2m .footer {
  border-top: none;
  padding-top: 0;
  padding-bottom: 3.2rem;
}
.n2m .footer .top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.8;
}
.n2m .footer .top-row .content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
}
.n2m .footer .top-row .content p {
  margin-bottom: .8rem;
}
.n2m .footer .top-row .logo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
@media (max-width: 1024px) {
  .n2m .footer .top-row {
    display: block;
  }
  .n2m .footer .top-row .logo {
    text-align: left;
    margin-top: 3.2rem;
  }
}