:root {
  --text-white: rgb(255, 255, 255);
  --text-black: rgb(17, 24, 39);
  --text-gray-200: rgb(229, 231, 235);
  --text-red-600: rgb(239, 68, 68);
  --text-slate-700: rgb(55, 65, 81);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit; 
}


a {
  color: inherit;
  text-decoration: inherit;
}

ol,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
[role="button"] {
  cursor: pointer;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

header {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 50;
}

header .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}

header .container .content {
  padding-left: 1.5rem;
  padding-top: 1.5rem;
  padding-right: 1.5rem;
}

.content p br {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  margin: -0.375rem;
  padding: 0.375rem;
}

nav .logo img {
  height: 2rem;
  width: auto;
}

nav button {
  margin: -0.625rem;
  border-radius: 0.375rem;
  padding: 0.625rem;
  color: var(--text-slate-700);
  border: 0;
}

nav button svg {
  height: 2.25rem;
  width: 2.25rem;
}

nav .nav-links {
  display: none;
}

nav .call-link,
.menu_screen_cta a {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}
nav .nav-links .link,
.menu_screen_cta a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-black);
  transition: all 0.2s ease-in-out 0s;
}

nav .nav-links .link:hover,
.menu_screen_cta a:hover {
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 0.225rem;
}

nav .call-link img,
.menu_screen_cta a img {
  width: 1.5rem;
  height: 1.5rem;
}

.masthead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 100vh;
}

.masthead .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 6rem;
  padding-top: 2.5rem;
}

.masthead .container .content {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

.masthead .container .photo {
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  display: none;
  max-width: 42rem;
}

.masthead .container .photo .photo-container {
  flex: none;
  max-width: 48rem;
}

.masthead .container .photo .photo-padding {
  margin: -0.5rem;
  border-radius: 0.75rem;
  background-color: var(--text-black / 0.05);
  padding: 0.5rem;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px inset,
    rgba(17, 24, 39, 0.1) 0px 0px 0px 1px inset,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

.masthead .container .photo .photo-padding img {
  max-width: 100%;
  height: auto;
  width: 59rem;
  border-radius: 0.375rem;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px,
    rgba(17, 24, 39, 0.1) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.masthead .bg-svg {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  z-index: -10;
  stroke: #e5e7eb;
  opacity: 0;
  -webkit-mask-image: radial-gradient(
    100% 100% at top right,
    white,
    transparent
  );
  mask-image: radial-gradient(100% 100% at top right, white, transparent);
}

.container .content img {
  
}

.content h1 {
  margin-top: 2.5rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
}

.content p,
.content h2 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 2rem;
  color: rgb(75 85 99);
}

.row-btns {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.row-btns .order-online {
  background-color: rgb(37, 160, 201);
  border-radius: 0.375rem;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.row-btns .learn-more {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-black);
}

.row-btns .learn-more:hover {
  color: #671a16;
}

.row-btns .order-online:hover {
  opacity: 0.9;
}

#menu_screen {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 50;
  overflow-y: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #fff;
  display: none;
  border-left: solid 1px #efefef;
}

.menu_screen_btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu_screen_logo {
  color: inherit;
  text-decoration: inherit;
  margin: -0.375rem;
  padding: 0.375rem;
}

.menu_screen_logo img {
  display: block;
  vertical-align: middle;
  height: 2.75rem;
  width: auto;
  max-width: 100%;
}
.menu_screen_close {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  margin: -0.625rem;
  border-radius: 0.375rem;
  padding: 0.625rem;
  border: 0;
  color: var(--text-slate-700);
}

.menu_screen_close svg {
  height: 2.25rem;
  width: 2.25rem;
}

.menu_screen_links {
  margin-top: 1.5rem;
  display: flow-root;
}

.menu_screen_content {
  border-bottom-color: var(--text-gray-200);
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-left-color: var(--text-gray-200);
  border-left-style: solid;
  border-left-width: 0px;
  border-right-color: var(--text-gray-200);
  border-right-style: solid;
  border-right-width: 0px;
  border-top-color: var(--text-gray-200);
  border-top-style: solid;
  border-top-width: 0px;
  box-sizing: border-box;
  display: block;
  font-variation-settings: normal;
  line-height: 24px;
  padding-bottom: 24px;
  padding-top: 24px;
  tab-size: 4;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.menu_screen_content a {
  border-bottom-color: var(--text-gray-200);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-left-color: var(--text-gray-200);
  border-left-style: solid;
  border-left-width: 0px;
  border-right-color: var(--text-gray-200);
  border-right-style: solid;
  border-right-width: 0px;
  border-top-color: var(--text-gray-200);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-top-style: solid;
  border-top-width: 0px;
  box-sizing: border-box;
  color: rgb(17, 24, 39);
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-variation-settings: normal;
  font-weight: 600;
  height: 44px;
  line-height: 28px;
  margin-bottom: 0px;
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  tab-size: 4;
  text-decoration-color: rgb(17, 24, 39);
  text-decoration-line: none;
  text-decoration-style: solid;
  -webkit-font-smoothing: antialiased;
}

.menu_screen_content a:hover {
  background-color: #efefef;
}

.menu_screen_cta a {
  background-color: var(--omInfoOrange);
  padding: 5px 10px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: bold;
}

.menu_screen_cta a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.menu_screen_cta {
  border-bottom-color: rgba(107, 114, 128, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-left-color: rgba(107, 114, 128, 0.1);
  border-left-style: solid;
  border-left-width: 0px;
  border-right-color: rgba(107, 114, 128, 0.1);
  border-right-style: solid;
  border-right-width: 0px;
  border-top-color: rgba(107, 114, 128, 0.1);
  border-top-style: solid;
  border-top-width: 1px;
  box-sizing: border-box;
  display: block;
  font-variation-settings: normal;
  line-height: 24px;
  padding-bottom: 24px;
  padding-top: 24px;
  tab-size: 4;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.d-block {
  display: block !important;
}

.why {
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.why-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.why-row {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  max-width: 42rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 4rem;
}

.why-img {
  display: flex;
  align-items: flex-start;
  /* justify-content: flex-end; */
}

.why-img img {
  width: 20rem;
  border-radius: 0.75rem;
  max-width: none;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px,
    rgba(156, 163, 175, 0.1) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}

.why-box span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: rgb(37, 160, 201);
}
.why-box h2 {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-black);
}
.why-box p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 2rem;
  color: rgb(75 85 99);
}

.why-box dl {
  margin-top: 2.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.75rem;
  color: rgb(75 85 99);
}

.why-box dl .bullet {
  position: relative;
  padding-left: 2.25rem;
}

.why-box dl .bullet:not(:first-child) {
  margin-top: calc(2rem * calc(1 - 0));
}

.bullet dt {
  display: inline;
  font-weight: 600;
  color: var(--text-black);
}

.bullet dd {
  display: inline;
}

.bullet dt img {
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
  height: 1.25rem;
  width: 1.25rem;
}

dd b {
  font-weight: 600;
  color: var(--text-black);
}

.testimonials {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.testimonials-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 80rem;
}

.testimonials-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
  text-align: center;
}

.testimonials-lead h2 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: -0.025em;
  color: rgb(37, 160, 201);
}
.testimonials-lead p {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-black);
}

.testimonials-content {
  margin-left: auto;
  margin-top: 4rem;
  display: flow-root;
  margin-right: auto;
  max-width: 42rem;
}

.testimonials-columns {
  margin-top: -2rem;
}

.testimonial {
  padding-top: 2rem;
}
.testimonial figure {
  border-radius: 1rem;
  background-color: rgb(249 250 251);
  padding: 2rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
figure blockquote {
  color: var(--text-black);
}

figure figcaption {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

figcaption img {
  height: 2.5rem;
  border-radius: 9999px;
  width: 2.5rem;
  background-color: rgb(249 250 251);
}
figcaption div div:not(:first-child) {
  color: rgb(75 85 99);
}
figcaption div div:first-child {
  font-weight: 600;
  color: var(--text-black);
}
figcaption div div {
  display: block;
}

.cons {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.cons h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: rgb(37, 160, 201);
}

.cons-lead p:first-of-type {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cons-lead p:not(:first-of-type) {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: rgb(75 85 99);
}

.cons-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cons-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}
.cons-row {
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  max-width: 42rem;
}

.cons-row dl {
  display: grid;
  max-width: 36rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 2.5rem;
}

.cons-row .con {
  padding-left: 4rem;
  position: relative;
}

.con dt {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: var(--text-black);
}

.con dt div {
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  justify-content: center;
  border-radius: 0.5rem;
  align-items: center;
  background-color: rgb(37, 160, 201);
}
.con dt div img {
  height: 1.5rem;
  width: 1.5rem;
}

.con dd {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgb(75 85 99);
}

.cta {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.cta-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  text-align: center;
}

.cta-lead h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-black);
}
.cta-lead p {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: rgb(75 85 99);
}
.cta-lead div {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.cta-lead div a {
  border-radius: 0.375rem;
  background-color: rgb(37, 160, 201);
  padding-left: 0.875rem;
  padding-right: 0.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.cta-lead div a:hover {
  opacity: 0.9;
}

.footer-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.footer-container img {
  height: 1.75rem;
}

.footer-list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-column div:not(:first-of-type) {
  margin-top: 2.5rem;
}

.footer-column div h3 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-black);
}
.footer-column div ul {
  margin-top: 1.5rem;
}

.footer-column div ul a {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: rgb(75 85 99);
}

div ul li:not(:first-child) {
  margin-top: calc(1rem * calc(1 -0));
}

ul#stars li:not(:first-child) {
  margin-top: unset;
}

.footer-cta {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: solid 1px rgba(17, 24, 39, 0.1);
}

.footer-cta div h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.25rem;
  color: var(--text-black);
}
.footer-cta div p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: rgb(75 85 99);
}
.footer-cta form {
  margin-top: 1.5rem;
}
.footer-cta form input {
  font-family: inherit;
  margin: 0;
  font-weight: inherit;
  border-color: #6b7280;
  width: 100%;
  min-width: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.5rem;
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  color: var(--text-black);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px inset,
    rgb(209, 213, 219) 0px 0px 0px 1px inset,
    rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.footer-cta form input::placeholder {
  opacity: 0.9;
}
.footer-cta form div {
  margin-top: 1rem;
}
.footer-cta form div button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: rgb(37, 160, 201);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #fff;
  border: 0;
}

.footer-cta form div button:hover {
  opacity: 0.9;
}

.footer-foot {
  margin-top: 2rem;
  border-top: solid 1px rgba(17, 24, 39, 0.1);
  padding-top: 2rem;
}

.footer-foot p {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: rgb(107 114 128);
}



@media (min-width: 640px) {
  .masthead .bg-svg {
    opacity: 1;
  }
  .masthead .container {
    padding-bottom: 8rem;
  }

  .masthead .container .photo {
    margin-top: 6rem;
    display: flex;
  }

  .masthead .container .photo .photo-container {
    max-width: 64rem;
  }

 

  .content h1 {
    font-size: 2.35rem;
    line-height: 1;
    color:white;
  }
  #menu_screen {
    max-width: 24rem;
  }

  .why {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .why-row {
    row-gap: 5rem;
  }

  .why-img img {
    width: 27em;
  }

  .why-box h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .testimonials {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .testimonials-lead p {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .testimonials-content {
    margin-top: 5rem;
  }

  .testimonials-columns {
    -moz-columns: 2;
    columns: 2;
    margin-left: -1rem;
    margin-right: -1rem;
    font-size: 0;
  }

  .testimonial {
    display: inline-block;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cons {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .cons-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .cons-lead {
    text-align: center;
  }

  .cons-row {
    margin-top: 5rem;
  }

  .cons-lead p:first-of-type {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .cta-lead h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .footer-container {
    padding-top: 2rem;
  }

  .footer-cta {
    margin-top: 5rem;
  }

  .footer-cta form {
    display: flex;
    max-width: 28rem;
  }

  .footer-cta form input {
    width: 14rem;
    line-height: 1.5rem;
    font-size: 0.875rem;
  }

  .footer-cta form div {
    margin-top: 0px;
    margin-left: 1rem;
    flex-shrink: 0;
  }
  .footer-cta div h3 {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }

  .content p br {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .footer-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-column div:not(:first-of-type) {
    margin-top: 0;
  }
  .footer-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-foot p {
    order: 1;
    margin-top: 0px;
  }
}

@media (min-width: 1024px) {
  .masthead .container {
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .masthead .container .content {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 36rem;
    flex-shrink: 0;
    padding-top: 2rem;
  }

  .masthead .container .photo {
    margin-left: 2.5rem;
    margin-right: 0px;
    margin-top: 0px;
    max-width: none;
    flex: none;
  }

  .masthead .container .photo .photo-container {
    max-width: none;
  }

  .masthead .container .photo .photo-padding {
    margin: -1rem;
    border-radius: 1rem;
    padding: 1rem;
  }
  .content .row {
    margin-top: 0rem;
  }

  header .container .content {
    max-width: 54rem;
    padding-left: 2rem;
    padding-left: 2rem;
  }
  nav {
    justify-content: flex-start;
  }

  nav button {
    display: none;
  }

  nav .nav-links {
    margin-left: 3rem;
    display: flex;
    align-items: center;
    -moz-column-gap: 3.5rem;
    column-gap: 3.5rem;
  }

  .why-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .why-row {
    margin-left: 0px;
    margin-right: 0px;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-content {
    /* margin-left: auto; */
    padding-left: 1rem;
    padding-top: 1rem;
  }

  .why-img {
    order: -9999;
  }
  .why-box {
    max-width: 32rem;
  }
  .why-box dl {
    max-width: none;
  }

  .testimonials-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .testimonials-content {
    margin-left: 0px;
    margin-right: 0px;
    max-width: none;
  }

  .testimonials-columns {
    -moz-columns: 3;
    columns: 3;
  }
  .cons-row {
    margin-top: 6rem;
    max-width: 56rem;
  }

  .cons-row dl {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 4rem;
  }
  .cta {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
  }
  .footer-cta {
    margin-top: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-cta form {
    margin-top: 0px;
  }

  .mobile-phone {
    display: none !important;
  }

  .masthead .container .photo .photo-padding img {
    width: 46rem;
    max-height: 630px;
    object-fit: cover;
  }
}

@media (min-width: 1280px) {
  .masthead .container .photo {
    margin-left: 8rem;
  }

  .why-row {
    max-width: none;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-list {
    grid-column: span 2 / span 2;
    margin-top: 0px;
  }
  
}

@media (min-width: 1680px) {
  .masthead .container .photo .photo-padding img {
    width: 64rem;
  }

  .content h1 {
    margin-top: 2.9rem;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.spinner-grow {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
  animation: 0.75s linear infinite spinner-grow;
  color: #f8f9fa;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hp-article {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hp-article .article-row {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgb(55 65 81);
}

.hp-article .article-row ul,
.hp-article .article-row ol,
.hp-article .article-row p {
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgb(55 65 81);
  margin-top: 2rem;
}

.hp-article .article-row h2 {
  margin: 0;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgb(17 24 39);
}

.hp-article .article-row h2,
.hp-article .article-row h3 {
  margin: 0;
  margin-top: 4rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgb(17 24 39);
}

@media (min-width: 640px) {
  .hp-article .article-row h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hp-article .article {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.banner2 {
  background-color: rgb(37, 160, 201);
  color: white;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  bottom: 0;
  width: 100%;
}
.new208 {
  margin: 20px auto;
  width: 70px;
  background: #ccc;
}