:root {
    --hamblue: #00549e;
    --hambluedarker: #003869;
    --lighterblue: #256298;
    --bluish: #8099CC;
    --hamorange: #f5821f;
    --hamorangedarker: #b66219;
    --black: #000000;
    --white: #FFFFFF;
    --lightgrey: #EEF2F1;
    --darkgrey: #727272;
    --nearblack: #212121;
    --hamorange-light: #ffc891;
    --disabled: #909090;
    --footergrey: #F1F1F1;
    --alert: #B31B1B;
    --hwhlpurple: #792981;
    --easing: cubic-bezier(0.86, 0, 0.07, 1);
}

body {
    color: #000;
    background-color: #fff;
    padding: 0;
    overflow-x: hidden;
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 27px;
    font-display: swap;
    margin: 0px;

}
::-moz-selection {
    background: var(--bluish);
    text-shadow: none
}
::selection {
    background: var(--bluish);
    text-shadow: none
}
b,strong {
    font-weight: 600
}
i,em,p.em {
    font-style: italic
}
.nowrap {
    white-space: nowrap
}
a,a:link,a:visited {
    color: var(--hwhlpurple);
}

a:focus,a:hover,a:active {
    color: rebeccapurple
}
a.button,a.button:link,a.button:visited {
    display: block;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    margin: 1rem 0 2rem;
    padding: .8rem 2rem 1rem;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 400;
    text-decoration: none;
    text-shadow: none!important;
    border: 2px solid var(--hwhlpurple);
    color: var(--hwhlpurple);
    background-color: #fff;
}
a.button:hover,a.button:active {
    border-color: var(--hamblue);
    background-color: var(--hwhlpurple);
    color: #fff;
}
a.button.primary,a.button.primary:link,a.button.primary:visited {
    border-color: blue;
    background-color: var(--hwhlpurple);
    color: #fff;
}

a.button.primary:hover,a.button.primary:active {
    background-color: var(--hwhlpurple)
}

a.button:focus {
    -webkit-box-shadow: 0 0 5px grey!important;
    -moz-box-shadow: 0 0 5px grey!important;
    box-shadow: 0 0 5px grey!important
}
sup {
    position: relative;
    top: 5px;
    font-size: 27px;
    line-height: 0;
}

a sup,a sub {
    text-decoration: none;
    display: inline-block
}
.img-box {
    max-width: 100%
}

.img-box img {
    margin: 0;
    padding: 0;
    width: 100%
}
.box-end {
    display: block;
    height: 1px;
    font-size: 1px;
    line-height: 1px;
    clear: both
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

#header-box {
    width: 100%;
}


#header-blue {
    width: 100%;
    background-color: var(--hamblue);
    background: linear-gradient(var(--hamblue), var(--hambluedarker));
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    border-bottom: 12px solid var(--hamorange);
}


#header-logo img {
    width: 100%;
}


#header-box {
    background: none;
}
#header.active #header-blue {
   border-bottom-width: 5px;
}

.page-wrap {
    display: flex;
}
.greybg {
    background: #eef2f1;
}
#page-content.main-content.toppad {
    padding-top: 50px;
}

.orange-bar {
    grid-template-columns: auto 1180px auto;
    display: grid;
    margin-bottom: 50px;
    padding-top: 170px;

}
.bar-filled {
    background-color: var(--hamblue);
}
.header-holder:before,
.header-holder:after {
  content: '';
  background: transparent;
}
.header-holder {
  display: grid;
  grid-template-columns: auto 1260px auto;
}

#header-logo {
  width: 250px;
  position: relative;
  padding-top: 29px;
  transition: all .2s var(--easing);
}
#header.active #header-logo {
    width: 190px;
    padding-top: 5px;
    display: block;
    position: relative;
    z-index: 3;
    filter: drop-shadow(2px 2px 4px var(--nearblack));
    transition: all .2s var(--easing);
}
h1 {
    font-size: 50px;
    line-height: 60px;
    color: white;
    padding: 30px 0px 30px 0px;
    background-color: var(--hamblue);
    border-radius: 0px 20px 20px 0px;
    margin: 0px;
    font-weight: 400;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    color: var(--hamblue);
    font-weight: 600;
    margin-top: 0px;
}
.content-width {
    max-width: 1180px;
    padding: 0 20px;
    margin: 0 auto;
    display: block;
    position: relative
}
header .content-width {
    padding: 0px;
}
.content-width.split-screen {
    display: grid;
    grid-template-columns: auto 500px;
    column-gap: 60px;
    padding-bottom: 50px;
}
.split-screen .main-content img {
  border-radius: 15px;
}
.cutout {
    grid-column: 1 / 3;
    display: flex;
    background-color: white;
    padding: 30px;
    gap: 10%;
    border-radius: 20px;
    margin-top: 50px;
    align-items: center;
    border: 3px solid var(--hamorange);
}
a.cta {
    color: white;
    background: var(--hamblue);
    text-decoration: none;
    font-size: 22px;
    margin: 20px 0 0 0;
    padding: 5px 15px 7px;
    display: inline-block;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: inset 0px 0px 0px 0px var(--hamblue);
    transition: .2s ease-out all;
    border: 2px solid #dad9da;
}
a.cta:hover {
  color: var(--hamblue);
  background: transparent;
  box-shadow: inset 0px 0px 0px 3px var(--hamblue);
}
a.cta:hover {
  color: var(--hamblue);
    background: white;
}
.cutout p {
    padding: 0px;
    margin: 0px;
}
.cutout img {
    border-radius: 5px;
}
.sidebar-colored {
  background-color: var(--hamblue);
  color: white;
  border-radius: 20px 20px 20px 20px;
}
.content-width .sidebar-bg {
    background: #fff;
    box-sizing: border-box;
    border-radius: 20px;
    padding-bottom: 20px;
    color: #000;
    position: relative;
}
.sidebar-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(180deg, white, var(--hamblue));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.sidebar-bg img {
  border-radius: 20px;
}
.content-width .sidebar img {
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;;
}
.main-content p {
    font-size: 26px;
    line-height: 36px;
    color: black;
}

ol {
  list-style-type: none;
  counter-reset: item;
  padding-left: 30px
}

ol li {
  position: relative;
  counter-increment: item;
  margin-bottom: 20px
  
}

ol li:before {
  content: counter(item) ") ";
  position: absolute;
  left: -30px;
color: var(--hamblue);
}

.main-content p.section-bottom {
    padding-bottom: 10px;
}
.main-content p span {
    font-weight: 600;
    color: var(--hamblue);
}
p.sidebar-head {
  line-height: 32px;
  font-size: 24px;
  color: white;
  padding: 25px 25px 35px;
  background: var(--hamblue);
  margin: 0px 0px -10px;
  border-radius: 20px 20px 0px 0px;
}
.form-field-submit {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0
}
.ajax-form {
 padding: 0px 50px;
 z-index: 1;
 position: relative;
}
.ajax-form input {
    border: 2px solid #999999;
    border-radius: 7px;
    font-size: 27px;
    width: 100%;
}
.ajax-form .form-label {
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  color: #039;
  position: relative;
  height: 25px;
}
.ajax-form .form-label label {
    position: absolute;
}
.ajax-form .required-field-icon {
    font-weight: 600;
    color: var(--hamorange);
    font-size: 15px;
    position: relative;
    top: -4px;
}
.main-content .ajax-form p {
    color: var(--hamblue);
    margin: 23px 0 0 8px;
    padding-top: 0px;
    font-weight: 600;
}

.elq-form *, .elq-form :after, .elq-form :before {
    box-sizing: border-box;
}
.elq-form .elq-item-input, .elq-form .elq-item-select, .elq-form .elq-item-textarea {
    font-size: 27px;
}
.form-row-radio {
    margin-bottom: 7px;
}
.form-row-radio p {
    font-size: 7;
    margin: 4px 0 0 36px;
}
.form-row-radio span {
    padding-left: 8px;
    width: fit-content;
}
.form-row .form-row-radio label {
    font-weight: normal;
    cursor: pointer;
    height: 40px;
    margin: 0px;
    display: grid !important;
    grid-template-columns: 40px auto;
    align-items: center;
}
.form-row-radio input[type="radio"] {
    -webkit-appearance: none;
    align-items: center;
    background: #FFF;
    border: 2px solid #999;
    border-radius: 50%;
    height: 30px;
    justify-content: center;
    opacity: 1 !important;
    text-align: center;
    width: 30px;
    z-index: 1 !important;
}
.form-row-radio input[type="radio"]:not(:checked):hover {
    background: white;
    border-color: var(--hamorange);
}
.form-row-radio input[type="radio"]:checked {
    background: var(--hamorange);
    border: 2px solid var(--hamblue);
    color: white;
}
.form-row-radio input[type="radio"]:checked::after {
    content: "";
    background: var(--hamblue);
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 10px;
    margin: 5px;
}
.LV_invalid_field, input.LV_invalid_field:active, input.LV_invalid_field:hover, textarea.LV_invalid_field:active, textarea.LV_invalid_field:hover {
    outline: 1px solid #c00;
}
.LV_valid_field, input.LV_valid_field:active, input.LV_valid_field:hover, textarea.LV_valid_field:active, textarea.LV_valid_field:hover {
    outline: 1px solid rgb(0, 204, 65);
}
.LV_validation_message.LV_invalid {
    color: #c00;
    font-size: 13px;
    display: block;
    position: absolute;
    font-weight: 700;
    margin: 0 0 0 150px;
}
.LV_validation_message.LV_valid {
    font-size: 0px;
    padding: 0px;
    margin: 0px;
    line-height: 0px;
    height: 0px !important;
    display: block;
}
.elq-form .submit-button {
    background: var(--hamorange);
    border: 2px solid #ccc;
    border-radius: 15px;
    color: black;
    display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    min-width: 140px;
    padding: 10px 20px;
    transition: background .2s ease-in-out;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.elq-form .submit-button:hover {
    background: #b45300;
}
.main-content .ajax-form p.required-fields {
    font-size: 16px;
    font-weight: 400;
}

h2.greybg {
  margin-top: 100px;
  padding: 15px;
  text-align: center;
  border-radius: 16px;
}

.main-content.triple-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 100px auto;
    gap: 70px;
    column-gap: 70px;
    row-gap: 20px;
}
.main-content.triple-block.videoblocks {
  gap: 25px;
  margin: 30px 0 150px;
}
.main-content.triple-block.videoblocks img {
  width: 376px;
  height: 210px;
  cursor: pointer;
  transform: scale(1);
  box-shadow: 0 0 0px 0px;
  transition: .2s ease-out all
}
.main-content.triple-block .video-block:hover img {
  box-shadow: 0 0 14px -3px;
  transform: scale(1.1);
}
.no-scroll {
  overflow: hidden;
  height: 100vh; /* Prevent scrollbars from appearing */
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent grey */
  z-index: 10; /* Ensure it's on top */
  display: none; /* Hidden by default */
  backdrop-filter: blur(5px);
}
.modal {
  position: fixed;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 11; /* Above the overlay */
  display: none; /* Hidden by default */
  width: 60%; /* Adjust as needed */
  max-width: 800px; /* Maximum width */
}

.close-modal {
  position: absolute;
  top: -3px;
  right: 6px;
  font-size: 20px;
  cursor: pointer;
  color: #000;
}
/* For iframe responsiveness */
.modal iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
}
.top-phone-block {
    display: flex;
    flex-flow: column;
    min-height: 360px;
    justify-content: end;
    align-items: center;
}
.phone-block.last .phone-image {
    margin-bottom: 20px;
}
.top-phone-block.phone-880 .phone-image {
    margin-left: -30px;
}
.phone-image img {
    max-width: 300px;
}
.phone-880 .phone-image img {
    max-width: 260px;
}
.phone-block.last .phone-image img {
  width: 240px;
  margin-left: -80px;
}
.topmargin20 {
  margin-top: 20px;
  display: block
}
.callout {
    font-size: 21px;
    color: white;
    background: var(--hamblue);
    letter-spacing: 1.5px;
    padding: 2px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.callout.noncrunched {
    letter-spacing: 0px;
}
.callout.first {
    margin-left: 45px;
    letter-spacing: 1px;
}
.phone-block.last .callout {
    letter-spacing: 1.5px;
    padding: 2px 25px;
    margin-left: -25px;
}
.phone-title {
    font-size: 28px;
    font-weight: 600;
    background: var(--bluish);
    color: black;
    text-align-last: center;
    padding: 10px 0;
    margin-top: 20px;
}
.phone-title sup {
    font-size: 24px;
    top: 7px;
    position: relative;
    line-height: 0;
    font-weight: 400;
}
.phone-desc {
    background: linear-gradient(0deg, #fff, #eef2f1);
    min-height: 470px;
    padding-right: 25px;
}
.phone-desc p {
    font-size: 22px;
    padding: 5px 20px 0px;
    margin-top: 0px;
    line-height: 32px;
}
.phone-desc li {
    font-size: 22px;
}
.phone-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.phone-desc ul li {
    line-height: 30px;
    padding-bottom: 5px;
    padding-left: 45px;
}
.phone-desc ul li::before {
    content: "";
    background: var(--hamorange);
    width: 9px;
    height: 9px;
    border-radius: 10px;
    font-size: 30px;
    position: relative;
    margin-left: -9px;
    display: inline-block;
    left: -13px;
    top: -2px;
  }
p.phone2400icallout {
    grid-column: 1 / 4;
    margin: 0px;
    text-align: center;
    background: #eff3f3;
    font-size: 22px;
    padding: 20px 10px;
    border-top: 4px solid var(--hamorange);
}

#page-content.didyouknow {
    font-size: 60px;
    color: white;
    background: var(--hamblue);
    padding: 20px 0;
}
.main-content p.bulletlist {
    margin-top: 0px;
    padding-left: 45px;
    position: relative;
    margin-bottom: 0px;
}
.main-content p.bulletlist::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--hamblue);
    position: absolute;
    left: 5px;
    top: 15px;
    border-radius: 10px;
}
ul.dashlist {
    list-style-type: none;
    list-style-position: inside;
    margin-left: 30px;
    margin-top: 0px;
}
ul.dashlist > li {
    text-indent: -15px;
    padding-bottom: 5px;
}
ul.dashlist > li:before {
    content: "-";
    position: relative;
    left: -7px;
}
.research-shows {
    margin: 0px 45px;
}
.research-shows .triple-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    column-gap: 10px;
    padding-bottom: 50px;
}
.research-block {
    height: 240px;
    display: flex;
    place-items: flex-end;
    text-align: center;
    
}
.research-block.dementia {
    background-image: url(https://hamiltoncaptel.com/assets/eloqua/26-hrl-017/img/50.png);
    background-repeat: no-repeat;
    background-position: top left;
    justify-content: left;
}
.research-block.heart {
    background-image: url(https://hamiltoncaptel.com/assets/eloqua/26-hrl-017/img/29.png);
    background-repeat: no-repeat;
    background-position: right 18px;
    justify-content: center;
}
.research-block.stroke {
    background-image: url(https://hamiltoncaptel.com/assets/eloqua/26-hrl-017/img/32.png);
    background-repeat: no-repeat;
    background-position: top right;
    justify-content: right;
}
a.footnoted {
    text-decoration: none;
    font-size: 20px;
    position: relative;
    color: var(--hamblue);
    top: -5px;
    font-weight: 400;
    line-height: 0;
}

.testimonials {
    background-color: #c7c8ca;
    border: 4px solid var(--hamblue);
    text-align: center;
    border-radius: 20px;
    padding: 35px 0 20px;
}
.sidebar-title {
    background: var(--hamblue);
    font-size: 50px;
    line-height: 53px;
    color: white;
    padding: 20px 0;
    margin-bottom: 57px;
}
.testimonial img {
    border-radius: 15px;
    margin-bottom: 35px;
}

audio,canvas,iframe,img,svg,video {
    vertical-align: middle
}

.bottom-cta {
    background: var(--bluish);
    color: white;
    border-top: 25px solid #d1d3d4;
}
.bottom-cta p {
    font-size: 41px;
    padding: 0px;
    margin: 0px;
    color: black;
}
.bottom-cta p span {
    font-weight: 700;
}
.bottom-cta .content-width {
    text-align: center;
    padding: 35px 0 0 0;
}
.bottom-cta a {
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #dad9da;
    margin-bottom: 50px;
    border-radius: 15px;
    padding: 5px 20px 7px;
    transition: .2s ease-out all;
    color: black;
    text-transform: uppercase;
    background: var(--hamorange);
    font-size: 35px;
    letter-spacing: .5px;
}
.bottom-cta a:hover  {
  color: white;
  background: var(--hamorangedarker);
}

#footnotes .content-width {
    max-width: 1140px;
    padding: 0 40px;
}
#footnotes {
    background: #d1d3d4;
    border-bottom: 12px solid #959595;
    box-shadow: 0 4px 0 0 var(--hamorange);
    padding-top: 50px;
    padding-bottom: 30px;
    font-family: calibri, Arial, sans-serif;
    
}
#footnotes p {
    color: black;
    font-size: 20px;
    margin: 0px;
    padding-bottom: 20px;
    position: relative;
}
#footnotes a {
    color: black;
    display: block;
}
#footnotes a.footnote-number {
    position: absolute;
    left: -10px;
    font-size: 12px;
}

#footnotes a.footnote-number.firstone {
    left: -24px;
}

#footer {
    padding: 20px;
    text-align: center;
    background: #757575;
}
#footer .content-width {
    display: grid;
    grid-template-columns: auto 200px;
    column-gap: 40px;
}
#footer p.other {
    font-size: 13px;
    color: white;
    text-align: justify;
    margin: 0;
    line-height: 16.5px;
}
#footer p.other a {
    font-size: 13px;
    color: white;
    text-decoration: none;
}
#footer-logo {
    width: 100%;
    max-width: 198px;
    margin-bottom: 20px;
}

#footer-back-to-top {
    font-size: 12px;
    display: block;
    width: 50px;
    position: fixed;
    bottom: 10px;
    z-index: 3;
    right: 20px;
    background: var(--hamblue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    padding: 0px 4px 4px 4px;
    opacity: 0;
    box-shadow: 2px 2px 3px 2px #999;
    transition: .2s ease-in all;
    line-height: 14px;
}
#footer-back-to-top span {
    padding: 0px 0px;
    width: 22px;
    height: 22px;
    display: block;
    font-size: 18px;
    margin: 0px auto;
}
#footer-back-to-top:hover {
    opacity: 1;
    box-shadow: 2px 2px 3px 2px #333;
}
#footer-back-to-top.hide {
    opacity:0;
}
#footer-back-to-top.show {
    opacity:.75;
}
#footer-back-to-top.show:hover {
    opacity:1;
}

@-webkit-keyframes spin{
    0%{
      -webkit-transform:rotate(0deg)}
    to{
      -webkit-transform:rotate(1turn)}
  }
@keyframes spin{
    0%{
      transform:rotate(0deg)}
    to{
      transform:rotate(1turn)}
}
.elq-form .loader{
    vertical-align:middle;
    display:inline-block;
    margin-left:10px;
    border:3px solid #f3f3f3;
    border-radius:50%;
    border-top:3px solid #3498db;
    width:20px;
    height:20px;
    -webkit-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite
}

@media screen and (max-width: 1200px) {
    .orange-bar {
        grid-template-columns: 20px auto 20px;
    }
    .header-holder:before,
.header-holder:after {
  display: none;
}
.header-holder {
  display: block;
}
#header-logo {
  margin-left: 15px;
}
    
    h1 {
        font-size: 46px;
    }
    
    #page-content .intro.inner p {
        font-size: 26px;
    }
    
    h2 {
        font-size: 27px;
    }
    
    .main-content p {
        font-size: 22px;
        line-height: 30px;
    }
    .main-content sup {
        font-size: 22px;
    }
    .content-width.split-screen {
        column-gap: 25px;
    }
    .split-screen .main-content img {
      width: 100%;
      height: auto;
  }
    .main-content.triple-block {
        column-gap: 20px;
    }
    .main-content.triple-block.videoblocks img {
      width: 100%;
      height: auto;
      max-width: 376px;
    }
    .phone-title {
        font-size: 24px;
    }
    .phone-title sup {
        font-size: 22px
    }
    p.phone2400icallout br {
        display: none;
    }
    .main-content p.bulletlist {
        padding-left: 30px;
    }  
    .research-shows {
        margin: 0px 30px;
    }
    .research-block.dementia {
        background-size: 80%;
        background-position: top center;
    }
    .research-shows .triple-block {
        column-gap: 20px;
        font-size: 24px;
    }
    .research-block.heart {
        background-size: 87%;
        background-position: right 0px;
    }
    .research-block.stroke {
        background-size: 65%;
        background-position: top center;
    }
    .research-block {
        height: 190px;
    }
    .content-width.split-screen {
        grid-template-columns: auto 350px;
    }
    .sidebar-title {
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 30px;
    }
    .testimonial img {
        width: 90%;
        margin-bottom: 20px;
    }
    body {
        font-size: 22px;
    }
    .bottom-cta p {
        font-size: 32px;
    }
    .bottom-cta a {
        font-size: 32px;
    }
}

@media screen and (max-width: 1000px) {
    h1 {
        font-size: 38px;
        line-height: 46px;
    }
    .phone-title {
        font-size: 18px;
    }
    .phone-title sup {
        font-size: 16px
    }
    .ajax-form input {
        font-size: 24px;
    }
    .ajax-form .form-label {
        font-size: 18px
    }
    .top-phone-block.phone-880 .phone-image {
        margin-left: -30px;
    }
    .phone-image img {
        width: 100%;
    }
    .phone-880 .phone-image img {
        max-width: 230px;
    }
    
    .phone-block.last .phone-image img {
        max-width: 230px;
    }
    #page-content.didyouknow {
        font-size: 36px;
    }
    .bottom-cta p {
        font-size: 28px;
        line-height: 34px;
    }
    ul.dashlist > li br {
        display: none;
    }
    #footnotes p {
        font-size: 18px;
    }
    #footer .content-width {
        display: block;
    }
    #footer-logo {
        margin-top: 30px;
    }
    
}
@media screen and (max-width: 850px) {
    body {
        font-size: 20px;
        line-height: 28px;
    }
    .orange-bar {
        margin-bottom: 25px;
        padding-top: 180px;
    }
    h1 {
        font-size: 31px;
        line-height: 36px;
        padding: 20px 0;
    }
    #page-content.didyouknow {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .content-width.split-screen {
        grid-template-columns: auto 300px;
    }
    .main-content p {
        font-size: 20px;
        line-height: 28px;
    }
    .ajax-form {
        padding: 0px 15px;
    }
    .ajax-form input {
        font-size: 22px;
    }
    .phone-desc ul li {
        line-height: 28px;
        font-size: 20px;
    }
    .sidebar-title {
        font-size: 28px;
        line-height: 32px;
    }
    .bottom-cta p {
        font-size: 25px;
        line-height: 33px;
    }
    .bottom-cta a {
        font-size: 26px;
    }
    .main-content.triple-block.videoblocks {
      display: block;
      text-align: center;
    }
    .main-content.triple-block.videoblocks img {
      margin-bottom: 20px;
    }
}
@media screen and (max-width: 768px) {
    #header {
        position: absolute;
    }
    div#header-blue {
        position: absolute;
    }
    div#header-orange {
        position: absolute;
    }
    #header-logo {
        padding-top: 2rem;
        max-width: 300px;
    }
    h1 {
        padding: 20px 20px 20px 0;
    }
    .main-content.triple-block {
        display: block;
        margin-top: 80px;
    }
    .phone-block {
        display: grid;
        grid-template-columns: 190px auto;
        grid-template-rows: 50px 1fr;
        column-gap: 10px;
        margin-bottom: 50px;
    }
    .top-phone-block {
        display: block;
        min-height: auto;
        grid-row: 1/3;
    }
    .phone-desc {
        min-height: auto;
        grid-column: 2;
        grid-row: 2;
    }
    .phone-title {
        margin: 0px;
    }
    .callout {
        font-size: 16px;
        letter-spacing: 0;
        line-height: 20px;
        text-align: center;
    }
    .callout.first {
        margin-left: 0px;
    }
    .phone-block.last .callout {
        margin-left: 0px;
    }
    .phone-title {
        font-size: 24px;
    }
    .phone-title sup {
        font-size: 24px;
    }
        .phone-block.last .phone-image img {
        max-width: 180px;
        margin-left: 0;
    }
    .content-width.split-screen {
        padding-bottom: 50px;
    }
    .content-width.split-screen {
        display: block;
    }
    .cutout {
        flex-flow: wrap-reverse;
    }
    .cutout img {
        width: 100%;
        max-width: 460px;
        margin: 10px auto 30px;
    }
    .research-shows .triple-block {
        display: block;
    }
    .close-modal {
      position: absolute;
      top: -18px;
      right: 0px;
      font-size: 20px;
      color: #000;
      border-radius: 20px;
      background: white;
      width: 29px;
      display: flex;
      justify-content: center;
      border: 1px solid #333;
      padding: 0 0 3px 0;
  }
  .modal {
    padding: 15px;
    width: 90%;
}
    
    .research-block.dementia,
    .research-block.heart,
    .research-block.stroke {
        background-size: 140px;
        background-position: left;
        height: 100px;
        text-align: left;
        place-items: center;
        padding-left: 150px;
        justify-content: left;
        font-size: 18px;
        line-height: 22px;
    }
    .research-block.dementia br,
    .research-block.heart br,
    .research-block.stroke br {
      display: none;
    }

    #footer-back-to-top {
        float: right;
        margin-top: -4rem;
        margin-bottom: 0;
    }

    #footer-back-to-top a,
    #footer-back-to-top a:link,
    #footer-back-to-top a:visited,
    #footer-back-to-top a:hover,
    #footer-back-to-top a:active {
        padding-right: 0;
    }
}

@media screen and (max-width: 699px) {
}

@media screen and (max-width: 540px) {
    .phone-block {
        display: block;
        border-bottom: 2px solid var(--hamblue);
        padding-bottom: 20px;
    }
    #footnotes p {
        font-size: 16px;
        word-break: break-word;
    }
    
    .phone-block .phone-image img {
        max-width: 300px;
        margin: 0px auto;
        display: block;
    }
    .phone-block.last {
        border-bottom: 0px;
    }
        .phone-block.last .phone-image img {
        margin: 0px auto !important;
    }
}