/* ============================================================
   LP-ROI COMBINED STYLESHEET (unstripped source)
   Run PurgeCSS against this file using purgecss.config.js
   to regenerate lp-roi.css after content changes:

   npx purgecss --config purgecss.config.js --output css/template/lp-roi.css
   ============================================================ */

/* ============================================================
   HOME-HEAD.CSS — Variables, Reset, Global Utilities, Nav, Footer
   ============================================================ */

:root {
  --darkestblue: #020A26;
  --darkblue: #3f4864;
  --lightdarkblue: #e8f3fe;
  --green: #37b3a8;
  --darkgreen: #1a7870;
  --lightgray: #f1f1f1;
}

*,
* * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: baseline;
  font-family: Montserrat, Montserrat, Lato, Lato, "Open Sans", sans-serif !important;
  text-rendering: optimizeLegibility;
  color: var(--darkblue);
}


ul {
  list-style: none;
  padding: 0;
}

strong {
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  clear: both;
  padding-bottom: 1em;
  font-family: Montserrat, sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

a:focus {
  outline: 0;
}


footer,
header,
nav,
section {
  display: block;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

button,
input,
select,
textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: inherit;
  padding: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

button,
button[type="button"] {
  cursor: pointer !important;
}


input[type="color"],
input[type="hidden"],
input[type="image"] {
  border: 0;
  border-radius: 0;
  padding: 0;
}

a {
  outline: 0;
  color: var(--green);
}

a:hover {
  color: var(--darkgreen);
}

footer a {
  display: inline-block;
  min-height: 30px;
  min-width: 30px;
}

.font-monster-rat {
  font-family: Montserrat, "Open Sans", sans-serif;
}

footer ul {
  list-style-type: none;
  margin-left: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.assistive-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.assistive-text {
  display: none;
}

.assistive-text:focus {
  background: #fff;
  border: 2px solid #333;
  border-radius: 3px;
  clip: auto !important;
  color: #000;
  display: block;
  font-size: 12px;
  padding: 12px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 100000;
}

.p-rel {
  position: relative;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.flex-center {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.flex-column {
  flex-direction: column;
}

.gap-xl {
  gap: 5rem;
}

.justify-start {
  justify-content: flex-start;
}

.list-unstyled {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.list-unstyled li {
  padding: 0;
  margin: 0;
}

.v-pad {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.v-pad-sm {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.h-pad,
.h-pad-lg,
.h-pad-mb {
  padding-left: 2rem;
  padding-right: 2rem;
}

.v-pad-lg {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.v-pad-xl {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.v-pad-top-0 {
  padding-top: 0;
}

.v-pad-bottom-0 {
  padding-bottom: 0;
}

.v-marg {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.v-marg-sm {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.v-marg-top-0 {
  margin-top: 0;
}

.bg-white {
  background: #fff;
}

.bg-darkblue {
  background: var(--darkblue);
}

.bg-green {
  background: var(--green);
}

.container-sm {
  width: 715px;
  max-width: 100%;
  margin: 0 auto;
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.hawk-nav.container {
  width: 1400px;
  padding-left: 0;
  padding-right: 0;
}

.top-navbar {
  position: absolute;
  z-index: 75;
  padding: 1rem;
}

.hawk-shadow {
  box-shadow: 0 0 28px -8px rgba(0, 0, 0, 0.15);
}


.top-navbar {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  transition: transform 220ms ease-out;
  transform: translateY(0);
}


.top-navbar button {
  cursor: pointer;
  border: 2px solid transparent;
  max-width: 45px;
}


.top-navbar button:active {
  border: 2px solid #ddd;
}

.navbar-hidden {
  transform: translateY(-100%);
}

.text-large {
  font-size: 1.2rem;
}

.text-lead {
  font-size: 1.3rem;
  line-height: 1.7;
}

.subtitle {
  font-size: 2.2rem;
  line-height: 1.4;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-white {
  color: #fff;
}

.text-blue,
.text-darkblue {
  color: var(--darkblue);
}

.text-darkblue a {
  color: var(--lightdarkblue);
}

.text-green {
  color: var(--green);
}

.bg-img {
  background-size: cover;
  background-position: center top;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}


.hawk-btn {
  display: inline-block;
  padding: 1rem 2rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s ease-out;
  border: 2px solid transparent;
  max-width: 100%;
}


.hawk-btn:active {
  border: 2px solid var(--darkblue);
}


ul {
  list-style-type: disc;
  margin: 1rem 0 2rem 0;
}

ul {
  list-style-type: disc;
}

.check-list {
  list-style-image: url(/wp-content/themes/hawk-sem/images/new-2023/check.png);
  margin-left: 2.6rem;
}

.arrow-list {
  list-style-image: url(/wp-content/themes/hawk-sem/images/new-2023/right-arrow-sm.png);
  margin-left: 2.2rem;
}


ul li {
  margin-bottom: 0.35rem;
  padding-left: 0.2rem;
  margin-left: 2rem;
}


.btn-green {
  background: var(--green);
  color: #fff;
}


.btn-green:hover {
  background: var(--darkgreen);
  color: #ededed;
}

.as-center {
  align-self: center;
}

.hawk-hero {
  min-height: 844px;
}

.landing-page .hawk-hero {
  min-height: 667px;
}

.hawk-hero--top {
  position: relative;
  z-index: 10;
  min-height: 844px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  text-align: center;
  padding-top: clamp(6rem, 12vh, 11rem);
}

.hawk-hero--top>* {
  display: flex;
  flex-direction: column;
  align-content: center;
  max-width: 100%;
}

.team-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  background: url(/wp-content/themes/hawk-sem/images/new-2023/team-meeting.jpg);
  background-size: cover;
  background-position: center bottom;
  min-height: 920px;
  background-repeat: no-repeat;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 10rem;
}

.action-button {
  display: block;
  outline: 0;
  border: none;
  background: 0 0;
  cursor: pointer;
  transform: scale(0.96);
  transition: transform 0.2s ease-out;
}

.action-button:hover {
  transform: scale(1);
}

.action-button:active {
  transform: scale(0.94);
}

h1 {
  font-size: 2.1rem;
  font-weight: 300;
  text-align: center;
  margin: 0;
  padding-bottom: 0.25em;
  line-height: 1.2;
}

h2 {
  font-size: 2.1rem;
  line-height: 1.4;
  color: var(--darkblue);
  padding-bottom: 2rem;
}

h4 {
  font-size: 0.9rem;
}

.green-divider,
.white-divider {
  display: block;
  width: 5rem;
  max-width: 100%;
  background: #37b3a8;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
}

.white-divider {
  background: #fff;
}

.mx-auto {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.green-divider.divider-left {
  margin-left: 0;
}

#cta {
  padding-top: 10rem;
  background-image: url(/wp-content/themes/hawk-sem/images/new-2023/bottom_bg.jpg);
}

.btn-read-more {
  position: relative;
  padding: 2rem 0 1rem;
  border: none;
  outline: 0;
  background: 0 0;
  line-height: initial;
  font-size: initial;
  height: auto;
  width: auto;
  font-weight: 700;
  color: #000;
}

.btn-read-more:active {
  padding: 2rem 0 1rem;
  border: none;
  outline: 0;
  background: 0 0;
  line-height: initial;
  font-size: initial;
  height: auto;
  width: auto;
  font-weight: 700;
}

.btn-read-more:after {
  content: "";
  position: absolute;
  left: 110%;
  top: 2.5rem;
  width: 20px;
  height: 8px;
  background-image: url(/wp-content/themes/hawk-sem/images/new-2023/services/angle_down.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-read-more.showing:after {
  transform: rotate(180deg);
}

.service-body {
  max-height: 150px;
  overflow: hidden;
}

.service-body.bottom-gradient {
  position: relative;
}

.service-body.bottom-gradient:after {
  content: "";
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5rem;
  width: 100%;
  background: linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
}

.service-body>* {
  position: relative;
  z-index: 1;
}

.read-more-content {
  margin-top: 1rem;
  display: none;
  height: 0;
  transition: height 0.2s ease-out;
}

.read-more-content.active {
  display: block;
  height: auto;
}

#cta {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.mind-madness-bg {
  background: url(/wp-content/themes/hawk-sem/images/new-2023/meettheminds_bg.jpg);
  background-size: cover;
}

section {
  position: relative;
  z-index: 2;
}

.bg-blue-image-1 {
  background: url(/wp-content/themes/hawk-sem/images/new-2023/bg/blue-bg-2.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--darkblue);
}

.bg-blue-image-2 {
  background: url(/wp-content/themes/hawk-sem/images/new-2023/bg/blue-bg-3.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #303650;
}

.bg-blue {
  background: var(--darkblue);
  background-color: var(--darkblue);
}

.leaf-area,
.leaf-area>* {
  overflow: visible !important;
  position: relative;
  z-index: 3;
}

.leaf-1 {
  position: absolute;
  top: -2rem;
  left: -7rem;
  width: 300px;
  height: auto;
  z-index: 2;
}

.leaf-3 {
  position: absolute;
  bottom: -4rem;
  right: 0;
  width: 180px;
  height: auto;
  z-index: 4;
}

#hawk-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  padding-top: 70px;
  background: rgba(2, 10, 38, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease-out, visibility 0s linear 220ms;
}

#hawk-modal.opening {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease-out;
}

#hawk-modal:not(.hubspot-form-modal) #modal-content {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(55, 179, 168, 0.18);
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

#hawk-modal.opening:not(.hubspot-form-modal) #modal-content {
  transform: scale(1);
}

#modal-close {
  outline: 0;
  background: 0 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  margin-top: 5px;
  margin-right: 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 180ms ease;
}

#modal-close:hover {
  border-color: var(--green);
}

#modal-close:active,
.action-button:active {
  border: none;
  outline: 0;
  background: 0 0;
  background: 0 0;
  font-size: initial;
  line-height: initial;
  font-weight: initial;
}

#modal-close:active {
  font-size: 1.5rem;
  line-height: 2;
}

/* Keep full-screen dark backdrop for hubspot modal; only the inner box is white */
.lp-acf #hawk-modal.hubspot-form-modal {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: none;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: none;
  padding: 0;
  /* padding-top: 70px; */
  overflow-y: auto;
}

.lp-acf #hawk-modal.hubspot-form-modal>.container-sm {
  background: #FFF;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  width: calc(100% - 4rem);
  max-width: 560px;
}

.lp-acf #hawk-modal.hubspot-form-modal #modal-close>svg,
.lp-acf #hawk-modal.hubspot-form-modal #modal-close>svg>path {
  fill: var(--darkblue);
}

@media (min-width: 540px) {
  #modal-close {
    margin-top: 0;
    margin-right: 0;
  }
  .lp-acf #hawk-modal.hubspot-form-modal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    transform: none;
    min-height: unset;
    background: rgba(0, 0, 0, 0.4);
    ;
    border: none;
    padding: 0;
    /* padding-top: 70px; */
  }
}

@media (orientation: portrait) and (min-height: 720px) {
  .lp-acf #hawk-modal.hubspot-form-modal {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    transform: none;
  }
}

.block-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-button {
  min-height: 400px;
  width: 100%;
  position: relative;
  border: none;
  overflow: hidden;
  font-size: 1.6rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.video-button .play-icon {
  position: relative;
  z-index: 10;
}

.video-button .video-button--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.2s linear;
  font-size: 1.6rem;
}

.video-button .video-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: auto;
  padding: 0.5rem 1rem 1.4rem;
  font-weight: 700;
  color: #fff;
  z-index: 10;
  text-align: left;
}

.video-button:active {
  line-height: initial;
  background: 0 0;
  width: 100%;
  height: initial;
}

.video-button:hover .video-button--bg {
  transform: scale(1.02);
}

.block-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#full-nav-menu {
  transform: translateX(120%) scale(1.07);
  transition: transform 0.3s ease-out, box-shadow 450ms ease-in;
  width: 72ch;
  max-width: 90vw;
  padding: 1rem 2rem 1rem 3rem;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 77;
  box-shadow: 2px 0 0 0 rgba(0, 0, 0, 0.05);
  overflow: auto;
}

#full-nav-menu.open-menu {
  transform: translateX(0) scale(1);
  box-shadow: -6px 0 9px 0 rgba(0, 0, 0, 0.2);
}

#full-nav-menu li {
  line-height: 1;
  padding-bottom: 0.25em;
  text-align: center;
}

#full-nav-menu a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  border-bottom: 4px solid transparent;
}

#full-nav-menu a:hover {
  color: #eee;
  border-bottom: 4px solid #37b3a9;
}

#full-nav-menu #menu-close {
  cursor: pointer;
  background: 0 0;
  border: 2px solid transparent;
  padding: 0;
  margin: 0;
  width: 2rem;
  height: 2rem;
  line-height: 1;
}

#full-nav-menu #menu-close:active {
  border: 2px solid #ddd;
}


.heading-b {
  font-size: 2.1rem;
}

#newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

#newsletter .hs_email label {
  font-weight: 700;
}

#newsletter .hs_email .hs-input {
  width: 100%;
  display: block;
  margin-top: 0.5em;
  padding: 1em 0.8em;
}

#newsletter .hs-button {
  cursor: pointer;
}

footer h3,
footer ul li {
  text-align: center;
  margin-left: 0;
}

footer ul li a {
  text-decoration: none;
  font-size: 0.85em;
}

footer>div>div>ul>li>ul {
  justify-content: center;
}

.fancy-text {
  line-height: 1.8;
}

.fancy-underline:after {
  content: "";
  background: url(/wp-content/themes/hawk-sem/images/new-2023/brush.png);
  background-size: 220px 12px;
  top: 100%;
  left: -2px;
  width: 220px;
  height: 12px;
  position: absolute;
}

footer>div>div {
  margin-bottom: 1.5em;
}

.footercookies {
  line-height: 1.1;
  margin-bottom: 1.5em;
  border: none;
  border-top: none !important;
  padding: 0.5rem 0;
}

.mb {
  margin-bottom: 2em;
}

.mb-sm {
  margin-bottom: 1em;
}

.mb-lg {
  margin-bottom: 6em;
}

.img-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.img-row--image {
  position: relative;
}

.img-row--image img {
  max-width: 100%;
  height: auto;
}

.process-timeline {
  position: relative;
}

.process-contents {
  padding-left: 1rem;
  padding-right: 1rem;
}

.process-content {
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
}

.process-content:nth-of-type(odd) {
  flex-direction: column-reverse;
}

.timeline-line {
  position: absolute;
  left: 2rem;
  height: 100%;
  top: 0;
  width: 4px;
  background-color: var(--green);
  border-radius: 3px;
}

#footer-contact-line ul li a svg {
  transform: translateY(4px);
}

@media (min-width: 480px) {

  
  .hawk-btn {
    padding: 1rem 3rem;
    min-width: 275px;
  }

  .hawk-btn,
  .action-button strong {
    font-size: 14px;
    /* text-transform: uppercase; */
    font-weight: 500;
  }

  h1 {
    font-size: 2.64rem;
  }

  h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 767px) {

  .hawk-hero,
  .hawk-hero--top,
  .landing-page .hawk-hero {
    min-height: 100vh;
    max-height: 100vh;
  }

  h1 {
    font-size: 2.7rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  .border-rounded {
    border-radius: 8px;
    overflow: hidden;
  }

  .text-large {
    font-size: 1.4rem;
  }

  .text-lead {
    font-size: 1.35rem;
    line-height: 2;
  }

  .leaf-2 {
    position: absolute !important;
    top: 1.6rem;
    right: -91px;
    width: 181px;
    height: auto;
    z-index: 4;
  }

  .h-pad-lg {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  #full-nav-menu a {
    font-size: 22px;
    line-height: 1.8;
  }

  .process-timeline .process-contents {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 2em;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 20px;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
  }

  .process-content {
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
    text-align: center;
  }

  .process-content:nth-of-type(odd) {
    flex-direction: column;
  }

  .process-circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.75rem;
    background-color: var(--green);
    border: 2px solid #fff;
    margin: 0 auto;
  }

  .process-number,
  .process-text {
    height: 2rem;
  }

  .img-row {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .timeline-line {
    position: absolute;
    top: 108px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .pull-up {
    transform: translateY(-180px);
    margin-bottom: -180px;
    position: relative;
    z-index: 4;
  }

  #mind-madness-btn .play-icon {
    max-width: 100%;
  }

  #mind-madness-btn h3 {
    max-width: initial;
  }

  .split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .split-grid--gap {
    gap: 3rem;
  }

  .gap-xl {
    gap: 5rem;
  }

  .block-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .team-section {
    padding-bottom: 3rem;
  }

  .hawk-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .hawk-footer h3 {
    font-size: 1.1rem;
  }

  .hawk-footer a {
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.45;
  }

  #newsletter form {
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 1em;
    align-content: center;
    align-items: center;
  }

  #newsletter form .hs_email {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  #newsletter .hs_recaptcha {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  #newsletter .hs_submit {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .hawk-subfooter {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
  }

  footer ul li a {
    font-size: 1em;
  }

  footer h3,
  footer ul li {
    text-align: left;
  }

  footer>div>div>ul>li>ul {
    justify-content: left;
  }

  footer>div>div {
    margin-bottom: 10;
  }

  .footercookies {
    margin-bottom: 0;
  }

  #footer-contact-line>ul {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 0.8rem;
    justify-content: center;
    margin: 1rem 0;
  }

  #footer-contact-line>ul:nth-of-type(2) {
    flex-shrink: 2;
  }

  #footer-contact-line>ul li a {
    display: block;
    font-size: 14px;
  }
}

@media (min-width: 768px) and (orientation: portrait) and (max-width: 1020px) and (min-height: 515px) {
  main.p-rel .hawk-hero {
    overflow-x: hidden;
  }

  .hawk-hero--top {
    padding-top: 20vh;
  }
}

@media (min-width: 991px) {

  .block-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .block-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  #cta {
    background-image: url(/wp-content/themes/hawk-sem/images/new-2023/bottom_bg.jpg);
  }

  .hawk-hero--top {
    padding-top: 6.5rem;
  }

  .hawk-footer {
    grid-template-columns: 3fr 3fr 5fr 3fr;
  }

  #newsletter form {
    grid-template-columns: 2fr 4fr 2fr;
  }

  #newsletter form .hs_email {
    grid-column-start: 2;
    grid-column-end: 3;
  }

  #newsletter .hs_recaptcha {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  #newsletter .hs_submit {
    grid-column-start: 2;
    grid-column-end: 3;
  }

  #footer-contact-line>ul ul,
  #footer-contact-line>ul ul li {
    margin: 0;
  }
}
@media(max-width:1230px) {
  .benefit .border-rounded {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .lp-top-section .bg-blue-image-1.border-rounded {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .lp-pricing .cost-bottom-section,
  .expertise .border-rounded,
  .mind-madness-bg.border-rounded,
  .team-section.border-rounded {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  .expertise.v-pad-lg {
    padding-bottom: 0;
  }
}
@media (min-width: 1230px) {
  .h-pad-mb {
    padding-left: 0;
    padding-right: 0;
  }

  #footer-contact-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: column;
  }

  #footer-contact-line>ul {
    justify-content: space-between;
  }

  #footer-contact-line>ul:first-of-type {
    width: 100%;
  }
}

@media (min-width: 1250px) {
  .img-row {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1300px) {
  .hawk-hero--top {
    padding-top: 10.5rem;
  }
}

@media (max-width: 768px) {
  .resources-grid {
    padding: 1rem;
  }

  .team-section {
    background-image: url(/wp-content/themes/hawk-sem/images/new-2023/team-meeting-sm.jpg);
    background-size: contain;
  }

  #videos .video-button {
    display: block;
    margin-bottom: 1rem;
  }

  .text-lead {
    font-size: 1.15rem;
  }

  
  .mind-madness-bg {
    background-position: 80%;
  }

  
  .heading-b,
  h1,
  h2 {
    font-size: 7vw;
  }

  .no-v-pad-bottom-mb {
    padding-bottom: 0;
  }

  .no-mb-mb {
    margin-bottom: 0;
  }

  .leaf-1,
  .leaf-2,
  .leaf-3 {
    display: none;
  }
}

@media (max-width: 880px) and (orientation: landscape) and (max-height: 801px) {
  h1 {
    font-size: 2.8rem;
  }

  .hawk-hero--top {
    padding-top: 6rem;
  }
}

@media (max-height: 820px) and (min-width: 1055px) {
  .hawk-hero--top {
    padding-top: 6rem;
  }
}

@media (min-width: 769px) and (max-width: 1360px) {
  h1 {
    font-size: 3.5vw;
  }
}

@keyframes arrowbounce {
  from {
    transform: translateY(-5px);
  }

  to {
    transform: translateY(0);
  }
}

h4.text-lead {
  line-height: 1.6;
}

.resources-item span {
  display: block;
}

.resources-item {
  background-color: #fff;
  box-shadow: 0 0 36px -16px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 260ms ease-out;
}

.resources-item:hover {
  background-color: #f3f3f3;
}

.resources-item--top {
  width: 100%;
  flex-basis: 250px;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  overflow: hidden;
}

.resources-item--top img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  object-fit: cover;
  transition: transform 210ms ease-in;
}

.resources-item:hover .resources-item--top img {
  transform: scale(1.015);
}

.resources-item--bottom {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.resources-item--title {
  color: var(--darkblue);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
  text-decoration: none;
}

.resources-item--cta {
  color: var(--green);
  text-decoration: underline;
}

.hawk-footer>div>ul {
  margin-top: 0.5rem;
}

#footer-contact-line li {
  padding-left: 0 !important;
}

.badge-row img {
  max-width: 100%;
  height: auto;
  max-height: 140px;
  width: auto;
}

.badge-row li {
  padding-left: 0;
}

.badge-row>li:first-child>a>img {
  width: 140px;
  max-width: 100%;
  height: auto;
}

.hawk-nav.consult-hidden .hawk-nav-mobile a,
.hawk-nav.consult-hidden .nav-consult a {
  display: none;
}

.badge-row li:nth-of-type(2) img,
.badge-row li:nth-of-type(3) img {
  max-height: 90px;
}

@media(max-width:720px) {
  .badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1em;
    align-items: center;
  }

  .badge-row li img {
    max-height: 125px;
    height: auto;
  }

  .badge-row li {
    flex: 1 2 150px;
  }

  .badge-row li a {
    display: inline;
    min-height: initial;
    min-width: initial;
  }
}

@media (min-width: 992px) {
  .hawk-nav.consult-hidden .nav-consult {
    width: 180.53px;
  }
}

.nav-fixed {
  background: rgba(253, 253, 253, 0);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: auto;
  z-index: 9999;
  padding: 0.15rem;
  box-shadow: 0 6px 20px -4px transparent;
  transition: background-color 240ms ease-in, box-shadow 0.2s ease-out;
}

.nav-fixed.nav-fixed-scroll {
  box-shadow: 0 6px 24px -8px rgba(0, 0, 0, 0.13);
  background: #fdfdfd;
  background: linear-gradient(310deg, #fdfdfd 0, #fff 50%, #fdfdfd 100%);
}

#nav-mobile-show {
  background: 0 0;
  border: 1px solid transparent;
  outline: 0;
  line-height: 1;
  padding: 6px 10px;
}

#nav-mobile-show:active,
#nav-mobile-show:focus,
#nav-mobile-show:hover {
  background: 0 0;
  border: 1px solid var(--darkblue);
  outline: 0;
  line-height: 1;
  padding: 10px;
  height: initial;
  width: initial;
}

.hawk-nav {
  position: relative;
}

.hawk-nav-logo>* {
  display: block;
}

.hawk-nav .hawk-nav-list {
  display: none;
  background: #fff;
  position: fixed;
  overflow-y: scroll;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.hawk-nav {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content {
  display: none;
}

.hawk-nav .arrow-list {
  list-style-image: url(/wp-content/themes/hawk-sem/images/2024/icons/arrow-line-right.png);
  margin-bottom: 0;
  padding-bottom: 0;
  margin-left: 17px;
}

.hawk-nav .arrow-list>li:last-of-type {
  margin-bottom: 0;
}

.hawk-nav .nav-dropdown--item .arrow-list li {
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.hawk-nav .nav-dropdown--item .arrow-list a {
  color: var(--dark-blue);
}

.hawk-nav .nav-dropdown--item .arrow-list a {
  text-decoration: none;
}

.hawk-nav .hawk-nav-list,
.hawk-nav .hawk-nav-list>li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hawk-nav .hawk-nav-list>li>a:not(.hawk-btn),
.hawk-nav .hawk-nav-list>li>button {
  padding: 0.25rem 1rem;
  display: inline-block;
}

.hawk-nav .hawk-nav-list>li>a.hawk-btn {
  min-width: unset;
  color: #fff;
  margin-left: 1rem;
}

.hawk-nav .hawk-nav-list>li>a,
.hawk-nav .hawk-nav-list>li>button,
.nav-dropdown-title,
.nav-dropdown-title>a.nav-link,
.nav-link-icon .nav-link-icon-title {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-blue);
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 0;
}

.nav-fixed .hawk-nav .hawk-nav-list button.nav-link-dropdown:active,
.nav-fixed .hawk-nav button:active,
.hawk-nav .hawk-nav-list>li>button:active {
  width: initial;
  height: initial;
  line-height: initial;
}

.nav-white .nav-fixed.nav-fixed-scroll .hawk-nav .hawk-nav-list>li>a:not(.btn-green),
.nav-white .nav-fixed.nav-fixed-scroll .hawk-nav .hawk-nav-list>li>button:not(.btn-green),
.nav-white.nav-fixed.nav-fixed-scroll .hawk-nav .hawk-nav-list>li>a:not(.btn-green),
.nav-white.nav-fixed.nav-fixed-scroll .hawk-nav .hawk-nav-list>li>button:not(.btn-green) {
  color: var(--dark-blue);
}

.nav-white .hawk-nav-logo a img {
  filter: brightness(5) grayscale(100%);
}

.nav-white #nav-mobile-show img {
  filter: invert(1);
}

.nav-white .nav-fixed.nav-fixed-scroll #nav-mobile-show img,
.nav-white .nav-fixed.nav-fixed-scroll .hawk-nav-logo a img,
.nav-white.nav-fixed.nav-fixed-scroll #nav-mobile-show img,
.nav-white.nav-fixed.nav-fixed-scroll .hawk-nav-logo a img {
  filter: none;
}

.hawk-nav .nav-dropdown--item .arrow-list a {
  font-size: 13px;
  line-height: 1.2;
  padding: 3px 3px 3px 1px;
}

.nav-dropdown-title {
  margin-bottom: 1rem;
}

.nav-link-icon .nav-link-icon-title {
  margin-top: 0;
  margin-bottom: 0;
}

.hawk-nav .hawk-nav-list>li>button {
  display: inline-block;
  background: 0 0;
  border: none;
  max-width: unset;
}

.hawk-nav-list .nav-dropdown--item #nav-us-dropdown.nav-dropdown--content {
  right: 15vw;
}

.nav-link-icon,
.nav-us-column-campaign {
  display: flex;
  flex-direction: column;
  color: unset;
  text-decoration: none;
  gap: 0.33rem;
}

.nav-us-column-campaign {
  gap: 1rem;
}

.nav-link-icon .nav-link-icon-sub {
  font-size: 12px;
  color: #abb8c3;
}

.hawk-nav-list .nav-dropdown--item .nav-dropdown--content.nav-dropdown-display {
  display: block;
}

/* Extend the li's hover zone downward so a small gap between button and dropdown
   doesn't fire mouseleave. The dropdown's negative margin-top closes that same gap visually. */
.hawk-nav-list .nav-dropdown--item {
  padding-bottom: 8px;
}

.hawk-nav-list .nav-dropdown--item .nav-dropdown--content {
  margin-top: -8px;
}

.hawk-nav-list .nav-dropdown--item.nav-dropdown-about {
  position: relative;
}

.nav-dropdown--content {
  padding: 2rem 1.5rem;
}

.nav-dropdown--content ul {
  margin-top: 0;
  margin-bottom: 0;
}


.nav-dropdown--content>ul.block-grid,
.nav-dropdown--content>ul.split-grid {
  list-style-type: none;
  padding-left: 0;
  gap: 1rem;
  margin-left: 0;
}


.nav-dropdown--content>ul.block-grid>li,
.nav-dropdown--content>ul.split-grid>li {
  margin-left: 0;
}

.nav-dropdown--content>ul.nav-list-icons {
  margin-left: 32px;
}

.nav-dropdown--content>ul>li>ul.arrow-list,
.nav-dropdown--content>ul.arrow-list {
  margin-left: 0;
}

.nav-list-icons {
  list-style: none;
}

.nav-list-icons>li {
  position: relative;
  padding-left: 0.5rem;
  line-height: 1.2;
}

.nav-list-icons>li::before {
  content: "";
  position: absolute;
  right: calc(100% + 0.5rem);
  top: 2px;
  height: 21px;
  width: 21px;
  z-index: 3;
}

.nav-list-icons>li.nav-li-ecom::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-cart.png);
}

.nav-list-icons>li.nav-li-leadgen::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-refresh.png);
}

.nav-list-icons>li.nav-li-local::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-location.png);
}

.nav-list-icons>li.nav-li-ppcms::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-graph.png);
}

.nav-list-icons>li.nav-li-seo::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-search.png);
}

.nav-list-icons>li.nav-li-cms::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-content.png);
}

.nav-list-icons>li.nav-li-social::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-social.png);
}

.nav-list-icons>li.nav-li-cro::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-settings.png);
}

.nav-list-icons>li.nav-li-remarket::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2026/nav-icon-chatgpt.jpg);
}

.nav-list-icons>li.nav-li-sem::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-pay-per-click.png);
}

.nav-list-icons>li.nav-li-enterprise::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-enterprise.png);
}

.nav-list-icons>li.nav-li-pcs::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2025/icons/bolt-icon.png);
}

.nav-list-icons>li.nav-li-reclaim::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-reclaim.png);
}

.nav-list-icons>li.nav-li-ai::before {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/nav/nav-icon-ai.png);
}

.nav-list-icons>li>a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(-0.5rem - 21px);
  z-index: 4;
}

.hawk-nav-list .nav-dropdown--item .nav-dropdown--content>ul.block-grid-4 {
  list-style-type: none;
  margin-top: 0;
  margin-left: 0;
}

.hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .block-grid li,
.hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .block-grid-4 li,
.hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .split-grid li {
  padding-left: 0;
  margin-bottom: 0.5rem;
  margin-left: 21px;
}

.nav-link-more {
  font-size: 12px;
}

.hawk-nav-mobile {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  gap: 5vw;
}

.hawk-nav .hawk-nav-list>li>button.nav-link-dropdown {
  position: relative;
  text-align: left;
}

.nav-link-dropdown::after {
  background-image: url(/wp-content/themes/hawk-sem/images/2024/icons/caret-down-filled.svg);
  content: "";
  position: absolute;
  top: 8px;
  left: calc(100% - 13px);
  width: 16px;
  height: 12px;
  background-size: cover;
  background-position: center;
  z-index: 5;
  transition: transform 240ms ease-in;
}

.hawk-nav-mobile .hawk-btn {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}

.hawk-nav .hawk-nav-list>li.nav-mobile-close-button {
  padding-top: 6px;
  padding-right: 15px;
}

.nav-us-column-industry {
  row-gap: 4px;
}

.nav-us-column-industry>li {
  margin-bottom: 0;
}

.nav-dropdown--content a {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.nav-dropdown--content a:hover {
  border-bottom: 1px solid var(--green);
}

.nav-dropdown-title.nav-title-with-icon,
.nav-dropdown-title.nav-title-with-icon a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  gap: 0.25rem;
}

.nav-dropdown-title.nav-title-with-icon img {
  width: 18px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 480px) {
  .nav-dropdown-howto ul>li ul li {
    display: none;
  }

  .nav-dropdown-howto ul>li ul li:nth-child(-n + 3) {
    display: block;
  }
}

@media (max-width: 991px) {
  .hawk-nav .hawk-nav-list {
    padding: 1rem 0 5rem;
    box-shadow: 0 12px 33px -10px rgba(0, 0, 0, 0.18);
  }

  .nav-link-icon .nav-link-icon-title {
    font-size: 14px;
    transform: translateX(-6px);
  }

  .hawk-nav .hawk-nav-list>li>button.nav-link-dropdown.nav-link-dropdown-open {
    border-bottom: 4px solid var(--darkblue);
    text-align: left;
    border-radius: 0;
  }

  .hawk-nav .hawk-nav-list>li>a:not(.hawk-btn),
  .hawk-nav .hawk-nav-list>li>button.nav-link-dropdown {
    font-size: 20px;
  }

  .nav-dropdown-display {
    background-color: var(--lightgray);
  }

  .nav-dropdown-title {
    margin-top: 1.15rem;
    margin-bottom: 0.5rem;
    font-size: 14px;
    transform: translateX(-6px);
  }

  .nav-list-icons>li::before {
    mix-blend-mode: multiply;
    right: calc(100% + 16px);
  }

  .hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .nav-list-icons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hawk-nav .hawk-nav-list>li {
    margin-bottom: 0.5rem;
  }

  .nav-dropdown--content {
    padding: 1rem 1.5rem;
  }

  .nav-dropdown--content .nav-dropdown-title:first-of-type {
    margin-top: 0;
  }

  .hawk-nav .hawk-nav-list>li.nav-mobile-close-button,
  .hawk-nav .nav-dropdown--item .nav-dropdown--content,
  .hawk-nav .nav-dropdown--item .nav-dropdown--content ul {
    margin-bottom: 0;
  }

  .hawk-nav .hawk-nav-list>li.nav-mobile-close-button button {
    padding: 2px 0.25rem 2px 0.75rem;
  }

  .hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .block-grid,
  .hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .block-grid-4,
  .hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .split-grid:not(.nav-us-column-industry) {
    display: block;
    margin: 0 0 1rem;
    padding-left: 0;
  }

  .hawk-nav .hawk-nav-list .nav-dropdown--item #nav-services-dropdown.nav-dropdown--content .block-grid.nav-list-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .nav-list-icons>.nav-li-ppcms {
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .nav-list-icons>.nav-li-seo {
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .nav-list-icons>.nav-li-ai {
    grid-row-start: 3;
    grid-row-end: 4;
  }

  .nav-list-icons>.nav-li-social {
    grid-row-start: 4;
    grid-row-end: 5;
  }

  .nav-list-icons>.nav-li-cms {
    grid-row-start: 5;
    grid-row-end: 6;
  }

  .nav-list-icons>.nav-li-cro {
    grid-row-start: 6;
    grid-row-end: 7;
  }

  .nav-list-icons>.nav-li-reclaim {
    grid-row-start: 7;
    grid-row-end: 8;
  }

  .nav-list-icons>.nav-li-remarket {
    grid-row-start: 8;
    grid-row-end: 9;
  }

  .nav-list-icons>.nav-li-pcs {
    grid-row-start: 9;
    grid-row-end: 10;
  }

  .hawk-nav .hawk-nav-list .nav-dropdown--item .nav-dropdown--content .nav-list-icons {
    margin-left: 32px;
  }

  .hawk-nav .hawk-nav-list>li.nav-consult {
    margin-top: 2rem;
    padding-bottom: calc(100lvh - 100dvh);
  }

  .hawk-nav-logo>a img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  #nav-resources-dropdown>ul>li>p:last-child,
  #nav-resources-dropdown>ul>li>ul {
    display: none;
  }

  .hawk-nav .hawk-nav-list>li>button.no-show {
    display: none !important;
  }

  .nav-link-dropdown.nav-link-dropdown-open::after {
    transform: rotate(-90deg);
  }
}

@media (min-width: 992px) {
  .hawk-nav-logo img {
    width: 200px;
    height: auto;
  }

  .hawk-nav-list .nav-dropdown--item .nav-dropdown--content {
    position: absolute;
    top: 87.5%;
    right: 0;
    width: 100%;
    min-width: 910px;
    max-width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 33px -8px rgba(0, 0, 0, 0.13);
  }

  .hawk-nav-list .nav-dropdown--item.nav-dropdown-about .nav-dropdown--content {
    top: 120%;
  }

  .nav-white .nav-link-dropdown::after {
    filter: invert(1);
  }

  .hawk-nav .hawk-nav-list>li>button.nav-link-dropdown {
    position: relative;
    text-align: left;
  }

  .nav-link-dropdown::after {
    background-image: url(/wp-content/themes/hawk-sem/images/2024/icons/angledown.png);
    top: 13px;
    left: calc(100% - 6px);
    background-size: contain;
    background-repeat: no-repeat;
    width: 6px;
  }

  .nav-dropdown--item:hover .nav-link-dropdown::after {
    transform: rotate(-90deg);
  }

  .hawk-nav-list>li>a:hover,
  .hawk-nav-list>li>button:hover {
    color: var(--darkgreen);
  }

  .nav-white .hawk-nav .hawk-nav-list>li>a,
  .nav-white .hawk-nav .hawk-nav-list>li>button {
    color: #fff;
  }

  .hawk-nav-list .nav-dropdown--item:hover #nav-about-dropdown,
  .hawk-nav-list .nav-dropdown--item:hover #nav-howto-dropdown,
  .hawk-nav-list .nav-dropdown--item:hover #nav-resources-dropdown,
  .hawk-nav-list .nav-dropdown--item:hover #nav-services-dropdown,
  .hawk-nav-list .nav-dropdown--item:hover #nav-us-dropdown {
    display: block;
  }

  #nav-services-dropdown .nav-list-icons>li {
    padding-right: 1rem;
  }

  .hawk-nav-list .nav-dropdown--item #nav-about-dropdown.nav-dropdown--content {
    right: initial;
    left: 0;
  }

  .hawk-nav-list .nav-dropdown--item .nav-dropdown--content::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 0 3px 33px -10px rgba(0, 0, 0, 0.15);
  }

  .hawk-nav-list .nav-dropdown--item .nav-dropdown--content::before {
    content: "";
    position: absolute;
    height: 20px;
    top: -19px;
    left: 0;
    right: 0;
  }

  .hawk-nav-list .nav-dropdown--item .nav-dropdown--content {
    width: 840px;
  }

  .hawk-nav .hawk-nav-list>li>a:not(.hawk-btn),
  .hawk-nav .hawk-nav-list>li>button {
    padding: 0.65rem 0.5rem;
    font-size: 12px;
  }

  .hawk-nav .hawk-nav-list>li>a.hawk-btn {
    font-size: 14px;
    padding: 0.65rem 1rem;
  }

  .hawk-nav-list .nav-dropdown--item {
    position: static;
  }

  .hawk-nav-list .nav-dropdown--item #nav-resources-dropdown.nav-dropdown--content {
    right: 0;
    transform: none;
    top: 87.5%;
  }

  .hawk-nav-list .nav-dropdown--item.nav-dropdown-about .nav-dropdown--content {
    top: 120%;
  }

  .hawk-nav-list .nav-dropdown--item #nav-howto-dropdown.nav-dropdown--content {
    right: 0;
    width: 100%;
    transform: none;
    top: 87.5%;
  }

  .hawk-nav-list .nav-dropdown--item.nav-dropdown-about .nav-dropdown--content {
    width: auto;
    min-width: 320px;
    max-width: 100%;
  }

  .hawk-nav .nav-dropdown--item .arrow-list a,
  .nav-link-icon .nav-link-icon-title,
  a.nav-link-more {
    font-size: 13px;
  }

  .nav-dropdown-title {
    font-size: 15px;
  }

  .hawk-nav .hawk-nav-list {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    position: static;
    overflow-y: visible;
    background: 0 0;
    height: initial;
    width: initial;
  }

  #nav-us-dropdown {
    min-width: 638px;
    width: auto;
    max-width: 100%;
  }

  .hawk-nav .hawk-nav-mobile,
  .nav-mobile-close-button {
    display: none;
  }

  .hawk-nav-list .nav-dropdown--item #nav-services-dropdown.nav-dropdown--content::after {
    left: 264px;
  }

  .hawk-nav-list .nav-dropdown--item #nav-us-dropdown.nav-dropdown--content::after {
    left: 245px;
  }

  .hawk-nav-list .nav-dropdown--item #nav-about-dropdown.nav-dropdown--content::after {
    left: 2rem;
  }

  .hawk-nav-list .nav-dropdown--item #nav-resources-dropdown.nav-dropdown--content::after {
    left: 56%;
  }

  .hawk-nav-list .nav-dropdown--item #nav-howto-dropdown.nav-dropdown--content::after {
    left: 56.5%;
  }
}

@media (min-width: 1200px) {
  .hawk-nav-logo img {
    width: 235px;
  }

  .hawk-nav-list .nav-dropdown--item #nav-howto-dropdown.nav-dropdown--content {
    right: 9.65%;
    min-width: 75%;
    width: 1130px;
    max-width: 100%;
  }

  .hawk-nav-list .nav-dropdown--item #nav-services-dropdown.nav-dropdown--content {
    right: 20px;
  }

  .hawk-nav-list .nav-dropdown--item #nav-us-dropdown.nav-dropdown--content {
    right: 140px;
  }

  .hawk-nav-list .nav-dropdown--item #nav-services-dropdown.nav-dropdown--content::after {
    left: 7.15rem;
  }

  .hawk-nav-list .nav-dropdown--item #nav-us-dropdown.nav-dropdown--content::after {
    left: 82px;
  }

  .hawk-nav-list .nav-dropdown--item #nav-about-dropdown.nav-dropdown--content::after {
    left: 2.5rem;
  }

  .hawk-nav-list .nav-dropdown--item #nav-resources-dropdown.nav-dropdown--content::after {
    left: 48%;
  }

  .hawk-nav-list .nav-dropdown--item #nav-howto-dropdown.nav-dropdown--content::after {
    left: 61%;
  }

  .hawk-nav .hawk-nav-list>li>a:not(.hawk-btn),
  .hawk-nav .hawk-nav-list>li>button {
    padding: 0.75rem 1rem 0.75rem 0.875rem;
    font-size: 13px;
    letter-spacing: -0.5px;
  }

  .hawk-nav,
  .hawk-nav .hawk-nav-list {
    gap: 0.5rem;
  }

  .nav-link-dropdown::after {
    top: 18px;
    left: calc(100% - 11px);
    width: 8px;
  }
}

@media(min-width: 1300px) {

  .hawk-nav .hawk-nav-list>li>a:not(.hawk-btn),
  .hawk-nav .hawk-nav-list>li>button {
    padding: 1rem;
    font-size: 14px;
    letter-spacing: -0.1px;
  }
}

.hawk-btn.nav-consultation {
  display: none;
}

/* ============================================================
   LP.CSS — Landing Page Base Styles
   ============================================================ */

body {
  background: #FAF6FD 0% 0% no-repeat padding-box;
}

p {
  font: normal normal normal 15px/26px Montserrat;
  letter-spacing: 0px;
  color: #333C58;
}

strong {
  font-weight: 800;
}

h1,
.landing-page h1 {
  text-align: center;
  font: normal normal 800 45px/55px Montserrat;
  letter-spacing: 0px;
  color: #333C58;
  width: 615px;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 0;
  padding-bottom: 0;
  line-height: 1.3;
}

h2 {
  font: normal normal 800 30px/40px Montserrat;
  letter-spacing: 0px;
  color: #333C58;
  font-weight: 800;
}

p.subheading {
  text-align: center;
  font: normal normal bold 24px/34px Montserrat;
  letter-spacing: 0px;
  color: #3ABFB3;
  margin: 0 auto 12px;
}

/* ============================================================
   HERO
   ============================================================ */

p.hero-body {
  width: 715px;
  max-width: 100%;
  margin: 0 auto 20px;
}

.hero-lp a.hawk-btn {
  font: normal normal 800 16px/40px Montserrat;
}

#hero-area:not(.hero-roi) {
  background-image: url('/wp-content/themes/hawk-sem/images/2026/cloud.png');
  background-repeat: no-repeat;
  background-position: 90% 100%;
}

.hawk-hero--top--inner:not(.hero-roi--inner)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/themes/hawk-sem/images/2026/cloud.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  transform: scaleX(-1) translateX(8rem);
  pointer-events: none;
  z-index: 0;
  -webkit-transform: scaleX(-1) translateX(8rem);
  -moz-transform: scaleX(-1) translateX(8rem);
  -ms-transform: scaleX(-1) translateX(8rem);
  -o-transform: scaleX(-1) translateX(8rem);
}

#hero-area.hawk-hero--top {
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}

.hero-btn-container {
  margin-top: 2rem;
}

.landing-page .hawk-hero,
.hawk-hero,
.hawk-hero--top {
  min-height: 0;
  max-height: 100%;
  padding-bottom: 3rem;
}

.hawk-hero--top {
  text-align: initial;
  min-height: 0;
}


.landing-page h1 {
  font-weight: 700;
  color: var(--darkblue);
  font-size: 2rem;
}

.landing-hero--bottom {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat
}

/* @media(orientation: portrait) and (min-height: 800px) {
    .landing-hero--bottom {
        background-position: 50% 90%;
    }
} */

.lp-hero-grid-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  align-content: center;
  padding: 1rem 1rem 4rem;
}

.lp-hero-grid-item>div:first-of-type {
  flex-basis: 95px;
  flex-shrink: 0;
  flex-grow: 0;
}

.lp-hero-grid-item>div:first-of-type>img {
  max-width: 80px;
  height: auto;
}

.lp-hero-grid-item>div:last-of-type {
  color: #FFF;
  font-size: 0.875rem;
  line-height: 1.1;
  font-weight: bold;
}

.lp-hero-grid-item div span {
  color: var(--green);
}

.lp-hero-grid-item div span {
  color: var(--green);
}

.hawk-hero--top.hero--updated.hero-social {
  padding-bottom: 0;
  overflow: hidden;
}

.hero-social .hero-grid {
  margin-top: 1rem;
  padding-top: 2rem;
  max-height: 465px;
  overflow: hidden;
  gap: 1rem;
}

.hawk-hero--top--inner {
  position: relative;
  z-index: 1;
}

.grid-2 .grid-left h1,
.grid-2 .grid-left p.subheading {
  text-align: left;
}

.grid-2 .grid-left h4 {
  margin-top: 3rem;
}

.grid-2 .grid-left .grid-4 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.grid-2 .grid-left .grid-4 img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   COMPONENTS
   ============================================================ */

.w-100 {
  width: 100%
}

.icon-grid {
  margin-top: 2rem;
  align-items: stretch;
}

.icon-grid>div {
  height: 100%;
  align-self: flex-start;
  text-align: left;
  gap: 20px;
  padding: 2rem;
}

.icon-grid>div>div:first-child,
.icon-grid>div>p {
  align-self: flex-start;
}

.icon-grid>div>p:first-of-type {
  font: normal normal bold 18px/22px Montserrat;
}

.timeline-cards {
  margin-top: 0;
  align-items: stretch;
}

.timeline-cards>div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 10px;
  color: #fff;
  font: normal normal 800 24px/1 Montserrat;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.timeline-cards h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-timeframe {
  font: normal normal bold 18px/22px Montserrat;
  margin-bottom: 0.25rem;
}

.hawksem-90-bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hawksem-90-bg > img.hawksem-90-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hawksem-90-bg::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(63, 72, 100, 0.7);
  z-index: 2;
}

.hawksem-90-bg>* {
  position: relative;
  z-index: 3;
}

/* FROM OLD THEME */

.inner-anchor {
  position: relative;
}

.inner-anchor .anchor-lift {
  height: 0;
  opacity: 0;
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.mind-madness-bg h2 {
  max-width: 30ch;
  margin: 0 auto 2rem;
}

.mind-madness-bg {
  position: relative;
}

.mind-madness-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  z-index: 1;
}

.mind-madness-bg>* {
  position: relative;
  z-index: 2;
}

.service-body {
  max-height: 100%;
  overflow: visible;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  align-content: center;
  flex-direction: row;
  margin-top: 3rem;
}

.logo-row>img {
  height: auto;
  max-height: 36px;
  /* width: auto; */
  max-width: 130px;
}

.sticky-toc {
  position: fixed;
  bottom: 0;
  left: 1rem;
  /* height: 5.25rem; */
  width: auto;
  display: none;
  cursor: pointer;
  z-index: 9999;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  background: var(--green);
  padding: 0.5rem;
  box-shadow: 0 -6px 30px -6px rgba(0, 0, 0, 0.2);
}

.sticky-toc>button {
  font-size: 14px;
  ;
  padding: 6px 16px;
  height: auto;
  width: 100%;
  font-weight: 500;
  border: 2px solid var(--darkblue);
  background: var(--darkblue);
  color: #FFF;
  ;
  cursor: pointer;
  line-height: 1.1;
  display: block;
  margin: 0 0 0 auto;
}

.sticky-toc>button:active {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  height: auto;
  width: auto;
  font-weight: 500;
  background-color: var(--lightdarkblue);
  border: 2px solid var(--darkblue);
  color: #EEE;
  cursor: pointer;
  line-height: 1.1;
  font-family: 'Montserrat', Montserrat, Lato, 'Lato', 'Open Sans', sans-serif;
}

.sticky-toc>ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.sticky-toc.toc-open>ul>li {
  padding-left: 0;
}

.sticky-toc.toc-open {
  height: auto;
}

.sticky-toc.toc-open>ul {
  display: block;
  margin-top: 1rem;
}

.sticky-toc>ul a {
  text-decoration: none;
  color: var(--darkblue);
  font-size: 0.9rem;
}

.sticky-toc>button>svg {
  padding-left: 1rem;
  transform: translateY(3px);
  pointer-events: none;
}

body,
html {
  scroll-behavior: smooth;
}

.lp-toc {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
  border-radius: 6px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.175);
}

.lp-toc>div:first-of-type {
  display: flex;
  align-content: center;
  align-items: center;
}

.lp-toc>div:first-of-type h2 {
  margin: 1rem 0;
}

.lp-toc ul.arrow-list {
  margin: 1rem 0 1rem 2rem;
}

.lp-toc .arrow-list a {
  color: var(--darkblue);
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}

.container-sm {
  width: 840px;
}

#modal-content form .hs-button:hover {
  background: var(--darkgreen);
  color: #FFF;
  height: auto;
  text-indent: 0;
  display: inline-block;
  font-size: 11px;
}

.cost-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.line-heading-section h2 {
  padding-bottom: 1.333rem;
}

.line-heading-section hr {
  margin: 0 auto 1.25rem;
}

.line-heading-section>div {
  margin: 0 auto 2.5rem;
  line-height: 1.4;
}

.line-heading-section>div.text-lead {
  margin: 0 auto 1.75rem;
}

.line-heading-section>div:not(.text-lead) {
  font-size: 14px;
}

.cost-card--title {
  font-size: 2rem;
  line-height: 1;
}


.m-bottom-large {
  margin-bottom: 2rem !important;
}

.cost-card--body p:last-of-type {
  margin-bottom: 0;
}

.cost-top-section .cost-middle ul {
  justify-content: center;
  margin-bottom: 0;
}

.cost-top-section .cost-middle ul li {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 3.5rem;
}

.cost-top-section.v-pad {
  padding-bottom: 0;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.cost-top-section.v-pad {
  padding-bottom: 0;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.bg-blue-design {
  background-color: var(--darkblue);
  background-image: url(/wp-content/themes/hawk-sem/css/service-blue-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-center {
  text-align: center;
}

.cost-bottom-section {
  border-radius: 6px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cost-bottom-section .cost-card {
  text-align: center;
}

.cost-bottom-section .cost-card h3 {
  margin-top: 1rem;
  min-height: 60px;
}

.cost-bottom-section .cost-card {
  background: transparent;
}

.cost-card>img {
  align-self: center;
}

.reviews-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reviews-images>img {
  max-width: 100%;
  height: auto;
}

.testimonial-callout,
.hero-roi .hero-callout {
  background: #ffffff;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 30px;
  padding: 1.5rem 1rem;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.testimonial-callout.grid-image-right,
.hero-roi .hero-callout {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-callout .grid-content {
  padding: 1.5rem 0;
}

.testimonial-callout .grid-content h2 {
  padding-bottom: 1rem;
}

.testimonial-callout .grid-content .green-divider {
  margin-bottom: 1rem;
}

.grid-image img {
  max-width: 100%;
  height: auto;
}

.grid-image video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 60px;
  position: relative;
  z-index: 1;
}

.grid-image.video-col {
  padding-left: clamp(2rem, 7.5vw, 6rem);
  padding-right: clamp(2rem, 7.5vw, 6rem);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-image.video-col::before {
  content: '';
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  background: #37b3a8;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.grid-image.video-col::after {
  content: '';
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  background: transparent;
  border: 3px solid #f1f1f1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.number-callouts {
  margin: 2rem 0;
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.number-callouts .number-callouts--block {
  padding: 0.5rem 0 0.5rem;
}

.number-callouts .number-callouts--block .number-callouts--number {
  font: normal normal 800 40px/55px Montserrat;
  letter-spacing: 0px;
  color: #333C58;
  text-align: left;
}

.number-callouts .number-callouts--block .number-callouts--text {
  text-align: left;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #3ABFB3;
  padding-right: 0.5rem;
}

.grid-image img {
  object-fit: contain;
}

.platform-grid img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ============================================================
   SERVICE MAIN SIDE (part-difference.php)
   ============================================================ */

.service-main-side {
  margin-bottom: 3rem;
}

.service-main-side .service-main-side--side {
  position: relative;
  overflow: hidden;
}

#content .service-main-side {
  border-radius: 6px;
  overflow: hidden;
}

.service-main-side--main p,
.service-main-side p {
  margin-bottom: 0.65rem;
}

.service-main-side .service-main-side--side.side-image img {
  max-width: 100%;
  height: auto;
}

.service-main-side--side-image-overlay {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
  left: 0;
  z-index: 10;
  padding: 2rem 2.5rem;
}

.service-main-side--side-image-overlay.service-main-side--side-top {
  top: 0;
  height: 100%;
  z-index: 9;
  color: #FFF;
  font-weight: 700;
  font-size: 2rem;
  padding-right: 20%;
  line-height: 1.2;
  width: 420px;
  max-width: 100%;
}

.heading-divider h2,
.heading-divider h3 {
  padding-bottom: 0.75rem;
}

.heading-divider .green-divider {
  margin-bottom: 1.25rem;
}

.social-grid {
  gap: 2rem;
}

.social-grid p {
  margin-bottom: 0.875rem;
}

.social-grid p,
.social-grid li {
  font-size: 14px;
}

.bg-img.cta-bg {
  background-position: center top;
  background-size: cover;
  background-image: url(/wp-content/themes/hawk-sem/images/new-2023/services/bg-hawk-whitepink.jpg);
}

.reviews-images img {
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.ugc-video-section video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 60px;
  position: relative;
  z-index: 1;
}

.partnering-section .bg-blue-design {
  padding: 2rem;
  border-radius: 1rem;
  ;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  align-items: center;
}

.partnering-section .grid-2>div {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.partnering-section .grid-2>div>img {
  max-width: 100%;
  height: auto;
}

.partnering-section .grid-2>div>h2,
.partnering-section .grid-2>div>.subheading,
.partnering-section .grid-2>div>p {
  margin: 0;
  padding: 0;
  text-align: left;
}

.partnering-section .grid-2>div>p:not(.subheading) {
  font-size: 14px;
}

br.mobile {
  display: none;
}

.resources-item--body {
  color: var(--darkblue);
  font-size: 14px;
  line-height: 1.2;
}

/* ============================================================
   MEDIA QUERIES - Organized from smallest to largest breakpoints
   ============================================================ */

/* Mobile (max-width: 799px) */
@media(max-width: 768px) {
  br.mobile {
    display: block;
  }

  .arrow-list.d-flex {
    flex-direction: column;
  }

  .lp-hero-grid-item {
    padding: 2rem;
  }

  .lp-hero-grid-item:last-of-type {
    padding-bottom: 5rem;
  }

  .lp-toc {
    width: calc(100% - 2rem);
    margin: -2.5rem 1rem 3rem 1rem;
  }
}

@media(max-width: 799px) {
  .sticky-toc {
    width: 100%;
    bottom: 0;
    left: 0.5rem;
    right: 0.5rem;
    width: calc(100% - 1rem);
    /* height: 6rem; */
    transition: height 240ms ease-in;
  }

  .sticky-toc.toc-open {
    /* height: 397px; */
    padding-bottom: 1.5rem;
  }

  .sticky-toc>ul {
    text-align: center;
  }

  .sticky-toc>button,
  .sticky-toc.toc-open button,
  .sticky-toc>button:active {
    width: 100%;
  }

  main.landing-page .sticky-toc>button:active {
    background: #000;
    border-color: #000;
    color: #FFF;
  }

  .hero-social .hero-grid.ugc-video-section {
    max-height: none;
    overflow: visible;
    position: relative;
    height: 280px;
    padding: 0;
    margin-top: 2rem;
  }

  .hero-social .ugc-video-section>div {
    position: absolute;
    bottom: -30%;
    left: 50%;
    margin-left: -70px;
    transform-origin: bottom center;
  }

  .hero-social .ugc-video-section>div:nth-child(1) {
    transform: translateX(-15%) rotate(-18deg) scale(1.4);
    z-index: 1;
    -webkit-transform: translateX(-15%) rotate(-18deg) scale(1.4);
    -moz-transform: translateX(-15%) rotate(-18deg) scale(1.4);
    -ms-transform: translateX(-15%) rotate(-18deg) scale(1.4);
    -o-transform: translateX(-15%) rotate(-18deg) scale(1.4);
  }

  .hero-social .ugc-video-section>div:nth-child(2) {
    transform: rotate(0deg) scale(1.5);
    z-index: 3;
    -webkit-transform: rotate(0deg) scale(1.5);
    -moz-transform: rotate(0deg) scale(1.5);
    -ms-transform: rotate(0deg) scale(1.5);
    -o-transform: rotate(0deg) scale(1.5);
  }

  .hero-social .ugc-video-section>div:nth-child(3) {
    transform: rotate(18deg) translateX(15%) scale(1.4);
    z-index: 1;
    -webkit-transform: rotate(18deg) translateX(15%) scale(1.4);
    -moz-transform: rotate(18deg) translateX(15%) scale(1.4);
    -ms-transform: rotate(18deg) translateX(15%) scale(1.4);
    -o-transform: rotate(18deg) translateX(15%) scale(1.4);
  }

  .hero-social .ugc-video-section video {
    width: 140px;
    height: auto;
    display: block;
    border-radius: 30px;
  }

  .service-main-side--side.side-image {
    position: relative;
    min-height: 375px;
  }

  .service-main-side--side.side-image img,
  .service-main-side .service-main-side--side.side-image img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
  }

  #content .service-main-side {
    border-radius: 0;
  }

  .service-main-side .service-main-side--side {
    margin-bottom: 0;
  }

  .ugc-video-section video,
  .grid-image video {
    border-radius: 26px;
  }

  .grid-image.video-col::before {
    width: 115%;
  }

  .grid-image.video-col::after {
    width: 140%;
  }

  .grid-image.video-col {
    padding-left: clamp(1rem, 3vw, 3rem);
    padding-right: clamp(1rem, 3vw, 3rem);
  }
}

/* Small phones and up (min-width: 480px) */
@media(min-width: 480px) {
  .landing-hero--bottom {
    background-image: url(/wp-content/themes/hawk-sem/images/new-2023/landing/hero%20img.png);
  }
}

/* Tablet landscape (min-width: 710px and max-width: 991px) */

/* Tablet and up (min-width: 767px) */
@media(min-width: 767px) {

  main.landing-page .split-grid {
    display: block;
  }

  .timeline-line {
    top: 99px;
  }
}

/* Tablet range (min-width: 767px and max-width: 1159px) */
@media(min-width: 767px) and (max-width: 1159px) {
  main.landing-page .leaf-2 {
    display: none;
  }
}

/* Medium tablets (min-width: 769px) */
@media(min-width: 800px) {
  .grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
  }

  .grid-2.social-grid {
    gap: 4rem;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .number-callouts.grid-dividers .number-callouts--block:not(:last-of-type) {
    border-right: 1px solid #E3E3E3;
  }

  .lp-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lp-toc {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 1fr;
    gap: 1rem;
  }

  .lp-hero-grid-item {
    border-right: 1px solid var(--lightgray);
  }

  .lp-hero-grid-item:last-of-type {
    border-right: none;
  }

  .landing-page h1 {
    font-size: 3.5vw;
  }

  .sticky-toc {
    left: 0;
    right: initial;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 115px;
    text-align: right;
    transition: width 240ms ease-out;
  }

  .sticky-toc.toc-open {
    width: 320px;
    border-top-left-radius: 0;
    padding: 1rem;
  }

  .sticky-toc.toc-open>ul {
    text-align: left;
  }

  .sticky-toc ul li {
    height: 0;
    display: none;
    opacity: 0;
  }

  .sticky-toc.toc-open ul li {
    display: block;
    animation: 100ms ease-in 160ms forwards 1 opengrid;
  }

  .sticky-toc.toc-open ul li a {
    font-size: 1.1rem;
  }

  .sticky-toc.toc-open #show-toc {
    width: auto;
    display: block;
    margin: 0 0 0 auto;
  }

  .reviews-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .reviews-images>img:nth-of-type(odd) {
    grid-column-start: 1;
    grid-column-end: 4;
  }

  .reviews-images>img:nth-of-type(even) {
    grid-column-start: 2;
    grid-column-end: 5;
  }

  .service-main-side {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1rem;
  }

  .service-main-side:not(.bg-white) .service-main-side--side.side-image {
    border-radius: 6px;
    overflow: hidden;
  }

  .service-main-side.side-first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-main-side .service-main-side--side.side-image {
    position: relative;
    align-self: stretch;
    max-height: 840px;
    min-height: 500px;
  }

  .service-main-side .service-main-side--side.side-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Large desktop (min-width: 992px) */
@media(min-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-image-right .grid-image img {
    transform: translateX(3rem);
    -webkit-transform: translateX(3rem);
    -moz-transform: translateX(3rem);
    -ms-transform: translateX(3rem);
    -o-transform: translateX(3rem);
  }

  .lp-hero-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  main.landing-page .split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-hero-grid-item:first-of-type>div:first-of-type {
    flex-basis: 80px;
  }

  .lp-hero-grid-item:first-of-type>div:first-of-type>img {
    width: 80px;
  }

  .grid-image img {
    max-width: 100%;
    height: auto;
    object-fit: none;
    overflow: visible;
  }
}

/* Extra large desktop (min-width: 1200px) */
@media(min-width: 1200px) {
  .landing-page h1 {
    font-size: 2.6em;
  }

  .testimonial-callout {
    padding: 2rem 3rem;
  }
}

/* Extra large desktop with min height (min-width: 1200px and min-height: 540px) */
@media(min-width: 1200px) and (min-height: 540px) {
  .sticky-toc {
    border-bottom-right-radius: 6px;
    bottom: 25%;
  }
}

/* Ultra large desktop (min-width: 1300px) */
@media(min-width: 1300px) {
  .hawk-hero--top {
    padding-top: clamp(5.5rem, 12vh, 11rem);
    ;
  }
}

/* Ultra wide screens (min-width: 1907px) */

/* Extra ultra wide screens (min-width: 2000px) */

/* Maximum width (min-width: 2100px) */

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */


@keyframes openmodal {
  from {
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }

  to {
    opacity: 1;
    box-shadow: 0 0 2400px 1200px rgba(0, 0, 0, 0.6);
  }
}

@keyframes opengrid {
  from {
    opacity: 0;
    height: 0;
  }

  to {
    opacity: 1;
    height: 30px;
  }
}

/* ============================================================
   LP-ACF.CSS — ROI Landing Page Extended Styles
   ============================================================ */

.bg-green {
  background-color: var(--green);
}

/* Hero - ROI */

.hero-roi {
  /* background: url(/wp-content/themes/hawk-sem/images/2026/lp-acf/roi-bg_opt.jpg) no-repeat bottom center; */
  background-size: 1200px 857px;
  color: #FFF;
}

.hero-roi .grid-2 h2 {
  color: #3ABFB3;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 0.5rem;
}

.hero-roi .grid-2 .grid-content p:last-child {
  padding-top: 1.5rem;
}

.hero-roi h1 {
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-roi h1 em {
  font-style: italic;
  color: var(--green);
  font-weight: 200;
}

.hero-roi .hero-roi--inner>.v-pad {
  padding-top: 0;
}

.hero-roi .hero-img>.v-pad {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero-roi .action-button img {
  width: 55px;
  height: auto;
}

.lp-acf .lp-toc {
  margin-top: 0;
  padding: 2rem 1rem;
}

.lp-acf .lp-toc>div:first-of-type h2 {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  align-self: flex-start;
}

.lp-acf .lp-toc ul.arrow-list {
  margin: 0;
}

.lp-acf .lp-title-tabs h2 {
  padding-bottom: 0.75rem;
}

.lp-acf .lp-title-tabs .container>p,
.cost-bottom-section .cost-card h3,
.promise-section.partnering-section .subheading,
.benefit .leaf-lead {
  font-size: 18px;
  font-weight: 500;
}

.lp-acf .lp-title-tabs--tabs {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  display: inline-flex;
  gap: 1rem;
  padding: 0.5rem 1rem;
  margin: 1.25rem 0 2rem;
}

.lp-acf .lp-title-tabs--tabs .lp-tab {
  font-size: 15px;
  font-weight: bold;
  color: var(--blue);
  padding: 0 0.25rem;
}

.benefit .leaf-lead {
  font-weight: 600;
}

/* ============================================================
   VIDEO BG CARD
   ============================================================ */

.video-bg {
  position: relative;
  overflow: hidden;
  aspect-ratio: 24 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.video-bg--content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.video-bg--logo {
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
}

.video-bg--content p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
}

/* Inclusive Components pseudo-content card trick:
   the ::after stretches over the entire .video-bg,
   making the whole section a single clickable target */
.video-bg--link {
  position: relative;
  z-index: 3;
}

.video-bg--link::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Expand outward to fill the entire .video-bg card */
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
}

.lp-case-cards .block-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.lp-case-cards .block-grid .resources-item .resources-item--bottom {
  gap: 0.75rem;
  justify-content: flex-start;
}

.lp-case-cards .block-grid .resources-item .resources-item--top {
  flex-basis: auto;
  aspect-ratio: 16 / 9;
  position: relative
}

.lp-case-cards .block-grid .resources-item .resources-item--bottom .resources-item--title {
  font-size: 1rem;
}

.lp-case-cards .block-grid .resources-item .resources-item--top>img {
  height: auto;
}

.lp-studio h2,
.lp-title-tabs h2 {
  font-weight: 600;
  padding-bottom: 0;
}

.lp-studio h2 span {
  color: var(--green);
}

.lp-studio .container>p {
  max-width: 585px;
  width: 100%;
  margin: 0 auto;
}

.lp-studio .lp-studio--img-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transform: translateY(-120px);
  -webkit-transform: translateY(-120px);
  -moz-transform: translateY(-120px);
  -ms-transform: translateY(-120px);
  -o-transform: translateY(-120px);
}

.lp-acf .service-cards .block-grid>div>p:first-of-type {
  font: normal normal 500 18px/22px Montserrat
}

.integrated h2,
.expertise h2,
.lp-pricing h2,
.partnering-section h2,
.new-titles h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  padding: 0;
}

.benefit .new-titles h2 {
  padding-bottom: 1.25rem;
}

.integrated .text-lead,
.expertise .text-lead,
.lp-top-section .text-large,
.new-titles .text-lead {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--darkblue);
}

.lp-top-section .text-large.text-white,
.lp-pricing .service-subheading.text-white {
  color: #FFF;
}

.expertise .text-lead.text-green,
.new-titles .text-lead.text-green {
  color: var(--green);
}

.expertise .block-grid .text-center img {
  display: block;
  margin: 0 auto 1rem;
}

.lp-top-section .arrow-list,
.benefit .arrow-list {
  list-style: none;
  margin: 1rem 0 0 0;
}

.lp-top-section .arrow-list li,
.benefit .arrow-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 15px;
  margin: 0;
  padding-bottom: 0.75rem;
}

.lp-top-section .arrow-list li img,
.benefit .arrow-list li img {
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
}

.integrated-item {
  text-decoration: none;
  border-bottom: 1px solid #E8E2EB;
  padding-bottom: 1.25rem;
  transition: border-bottom 200ms ease-in;
  -webkit-transition: border-bottom 200ms ease-in;
  -moz-transition: border-bottom 200ms ease-in;
  -ms-transition: border-bottom 200ms ease-in;
  -o-transition: border-bottom 200ms ease-in;
}

.integrated-item:hover {
  border-bottom: 1px solid var(--darkblue);
}

/* .integrated-item:not(:first-of-type) {
    padding-top: 1.25rem;
} */

.integrated-item .integrated-item-title {
  color: var(--darkblue);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 10px;
}

.integrated-item .integrated-item-title img {
  transform: translateY(2px) translateX(5px);
  -webkit-transform: translateY(2px) translateX(5px);
  -moz-transform: translateY(2px) translateX(5px);
  -ms-transform: translateY(2px) translateX(5px);
  -o-transform: translateY(2px) translateX(5px);
}

.integrated-item .integrated-item-body,
.lp-top-section .split-grid>div:first-child>p:last-child,
.lp-pricing .service-subheading,
.lp-pricing .block-grid .cost-card .cost-card--body,
.cost-bottom-section .cost-card--body p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: var(--darkblue);
}

.lp-pricing .service-subheading.text-white,
.lp-pricing .block-grid .cost-card .cost-card--body,
.cost-bottom-section .cost-card--body p {
  color: #FFF;
}

.lp-acf .team-section .text-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  width: 640px;
  max-width: 100%;
  margin: 0 auto 3rem;
}

.lp-top-section .heading-b {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  padding-bottom: 0;
}

.lp-pricing .block-grid .cost-card {
  padding: 45px 35px;
}

.lp-pricing .block-grid .cost-card .cost-card--title {
  font-weight: 600;
}

.lp-pricing .block-grid .cost-card .cost-card-frequency {
  font-size: 16px;
  font-weight: 600;
}

.cost-bottom-section .cost-card h3 {
  margin: 0;
  padding: 0.75rem 0;
  min-height: 0;
}

.cost-bottom-section .cost-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.promise-section.partnering-section .grid-2>div {
  gap: 0;
}

.promise-section.partnering-section .promise-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-outline-light {
  border-color: #FFF;
  color: #FFF;
  background: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  font-weight: 600;
  min-width: 0;
  font-size: 15px;
}

.btn-outline-light:hover {
  border-color: var(--darkgreen);
  background: var(--darkgreen);
  color: #FFF;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.25);
}

.lp-ciq {
  background: var(--darkestblue);
  padding: 100px 1rem;
  color: #fff;
  overflow: hidden;
}

.lp-ciq h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  width: 840px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
}

.lp-ciq .ciq-brain-section {
  width: clamp(870px, 64vw, 940px);
  max-width: 100%;
  margin: 0 auto;
}

.lp-ciq .ciq-brain-section .ciq-brain-section--inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.ciq-brain-section--image {
  position: relative;
}

.ciq-brain-section--image>img {
  position: relative;
  z-index: 4;
}

.ciq-brain-section--image .brain-spinner {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 504px;
  height: 493px;
  transform-origin: center center;
  animation: brain-spin 12s linear infinite;
}

@keyframes brain-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ciq-brain-section--content {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transform: translateX(-25px);
  -webkit-transform: translateX(-25px);
  -moz-transform: translateX(-25px);
  -ms-transform: translateX(-25px);
  -o-transform: translateX(-25px);
  padding: 3rem;
}

.ciq-brain-section--content .ciq-brain-section--text {
  text-transform: uppercase;
  margin-top: 30px;
  font-size: 30px;
  line-height: 44px;
  font-weight: 400;
  color: #FFF;
}

.ciq-brain-section--content .ciq-brain-section--text em {
  font-weight: 500;
  font-style: italic;
}

.ciq-brain-section--content .ciq-brain-section--text-sub {
  color: var(--green);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  margin-top: 30px;
}

.container-xs {
  width: 625px;
  max-width: 100%;
  margin: 0 auto;
}

.ciq-bottom-body-text p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 24px;
}

.ciq-bottom-grid {
  background-image: url(/wp-content/themes/hawk-sem/images/2026/lp-acf/lp-waves-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ciq-bottom-grid .block-grid {
  grid-template-columns: repeat(6, 1fr);
}

.ciq-bottom-grid .block-grid .ciq-bottom-grid--item {
  padding: 2rem 1rem 1rem;
  border-radius: 10px;
  background: rgba(4, 12, 34, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0px 12px 36px -8px rgba(38, 140, 185, 0.4);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ciq-bottom-grid--item .ciq-bottom-grid--item-text {
  padding: 20px 0 0;
  color: #FFF;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.ciq-bottom-grid--item .ciq-bottom-grid--item-tab {
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  line-height: 1;
  padding: 6px 15px;
  color: #FFF;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
}

.service-cards .border-rounded {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.lp-acf .resources-item--top {
  flex-basis: 200px;
}

.logo-row.awards-row>img {
  flex: 0 0 118px;
  height: 91px;
  max-width: 100%;
  height: auto;
}

.logo-row.awards-row>img {
  max-height: 91px;
  max-width: 100%;
  height: auto;
}

@media(min-width: 767px) {
  .break-mb {
    display: none;
  }

  .hero-roi {
    background: url(/wp-content/themes/hawk-sem/images/2026/lp-acf/roi-bg_opt.jpg) no-repeat bottom center;
  }

  .lp-top-section .split-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }

  .timeline-line {
    background-color: var(--green);
  }

  .process-timeline .process-contents {
    padding-top: 23px;
  }

  .process-circle {
    border-color: var(--green);
  }

  .process-cards .flex-column {
    align-items: flex-start;
  }

  .process-cards .btn-read-more {
    margin-top: auto;
    justify-self: end;
    text-align: left;
  }

  .integrated .integrated-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
  }

  .integrated .integrated-grid>.integrated-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 2rem;
  }
}

@media(max-width:1280px) {
  .video-bg {
    aspect-ratio: 16 / 9;
  }

  .ciq-brain-section--content {
    padding: 2rem;
  }
}

@media(max-width: 1097px) {
  .ciq-bottom-grid .block-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 992px) {
  .break-dt {
    display: none;
  }

  .lp-ciq .ciq-brain-section .ciq-brain-section--inner {
    display: block;
  }

  .ciq-brain-section--image {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .ciq-brain-section--content {
    padding: 30px 1.5rem;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

}

@media(max-width: 768px) {
  .ciq-bottom-grid .block-grid {
    align-items: center;
  }

  .ciq-bottom-grid .block-grid .ciq-bottom-grid--item {
    width: 300px;
    max-width: 100%;
  }

  .ciq-bottom-grid {
    background-image: none;
  }

  .hero-roi--inner .hawk-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-roi--inner .grid-content {
    margin-bottom: 2rem;
  }

  .hero-roi--inner .hero-img button {
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .lp-acf .lp-title-tabs--tabs {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
    padding: 1.25rem 1rem;
    text-align: center;
  }

  .lp-case-cards .block-grid {
    padding: 2rem 1rem;
  }

  .integrated .integrated-grid .integrated-item {
    padding-top: 1rem;
  }

  .icon-grid>div {
    width: 100%;
  }

  .lp-acf .btn-read-more {
    display: inline-block;
    align-self: flex-start;
  }
}