/* font-family: "Orbitron", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

/* font-family: "Inter", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* font-family: "Open Sans", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* font-family: "Poppins", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Radikal';
  src: url('../fonts/RadikalTrial-Black.woff2') format('woff2'),
    url('../fonts/RadikalTrial-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


:root {
  --White: #FFFFFF;
  --Black: #000000;
  --Yellow: #EDE722;
  --Blue: #1DBCD5;
  --Dark-Blue: #004164;
  --Font-Orbitron: "Orbitron", sans-serif;
  --Font-Inter: "Inter", sans-serif;
  --Font-Open: "Open Sans", sans-serif;
  --Font-Poppins: "Poppins", sans-serif;
  --Font-Radikal: 'Radikal';
}

html {
  scroll-behavior: inherit !important;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-family: var(--Font-Inter);
  color: var(--Black);
}

body:not(.wp-admin):not(.login) {
  background-color: var(--Dark-Blue);
  color: var(--White);
  background: linear-gradient(177.64deg, #004164 1.26%, #0A1628 33.75%, #004164 80.22%);
}

body.wp-admin {
  background: #fff !important;
  color: #000 !important;
}

body.wp-admin * {
  color: inherit !important;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

ol,
ul {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--White);
}

p:empty {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--White);
  margin-top: 0;
  margin-bottom: 10px;
}

h1,
.h1 {
  font-size: 56px;
  line-height: 70px;
}

h2,
.h2 {
  font-size: 38px;
  line-height: 125%;
}

h3,
.h3 {
  font-size: 32px;
  line-height: 40px;
}

h4,
.h4 {
  font-size: 24px;
}

/* button */
.neon-btn,
.blue-btn,
.gform_button {
  padding: 13.5px 22px;
  min-width: 215px;
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  border-radius: 4px;
  transition: all 0.33s linear;
}

.neon-btn {
  background-color: var(--Yellow);
  color: var(--Dark-Blue);
}

.blue-btn {
  background-color: var(--Blue);
  color: var(--Dark-Blue);
}

.neon-btn span,
.blue-btn span {
  display: block;
}

.neon-btn:hover {
  background: var(--Blue);
  color: var(--White);
}

.blue-btn:hover {
  background: var(--Dark-Blue);
  color: var(--White);
}

/* button end */

::placeholder {
  color: #000;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

::placeholder {
  color: #000;
  opacity: 1;
}

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

button:focus {
  outline: none;
}

textarea {
  resize: none;
}

a {
  transition: all 0.33s linear;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: var(--Black);
}

body {
  overflow-x: hidden;
}

/* Header */
.lines-button {
  border-radius: 0.57143rem;
  cursor: pointer;
  padding: 16px 0px;
  position: absolute;
  right: 16px;
  top: 0;
  transition: all 0.3s ease;
  z-index: 99;
  display: none;
}

.lines-button:hover {
  opacity: 1;
}

.lines {
  background: #fff;
  border-radius: 0.28571rem;
  display: inline-block;
  height: 2px;
  position: relative;
  transition: all 0.3s ease 0s;
  width: 40px;
}

.lines:before,
.lines:after {
  background: #fff;
  border-radius: 0.28571rem;
  content: "";
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  transform-origin: 0.28571rem center 0;
  transition: all 0.3s ease 0s;
  width: 40px;
}

.lines:before {
  top: 8px;
}

.lines:after {
  top: -8px;
}

.lines-button:hover .lines:before {
  top: 8px;
}

.lines-button:hover .lines:after {
  top: -8px;
}

.lines-button.x2.meanclose .lines:before,
.lines-button.x2.meanclose .lines:after {
  -webkit-transform: none;
  transform: none;
  top: 0;
}

.lines-button.minus.close .lines:before,
.lines-button.minus.close .lines:after {
  -webkit-transform: none;
  transform: none;
  top: 0;
}

.main_menu {
  float: left;
  position: relative;
  text-align: center;
  z-index: 500;
  transition: all 0.3s ease 0s;
}

.main_menu ul {
  padding: 0px;
  margin: 0px;
}

.main_menu>ul>li {
  float: left;
  list-style: outside none none;
  margin-left: 0px;
  position: relative;
}

.main_menu>ul>li>a {
  display: block;
  text-decoration: none;
  margin-bottom: 0px;
  position: relative;
  color: var(--White) !important;
  font-style: normal;
  text-transform: capitalize;
  font-family: var(--Font-Orbitron);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  padding: 15px 17px;
}

.main_menu>ul>li.menu-item-has-children>a {
  padding-right: 23px !important;
}

.main_menu>ul>li>ul li a {
  padding: 20px 30px;
  color: var(--Purple);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main_menu>ul>li>a:hover {
  text-decoration: none;
}

.main_menu>ul>li>a.last {
  border: none;
}

.main_menu>ul>li:hover>a {
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  z-index: 99;
}

.main_menu>ul>li:hover>a .sub {
  color: #000;
}

.main_menu>ul>li.current_page_item>a {
  text-decoration: none;
  color: #fff;
  border-color: #fff;
}

.main_menu>ul>li.current-menu-parent>a,
.main_menu>ul>li.current-menu-ancestor>a,
.main_menu>ul>li.current-menu-item>a {
  color: #0093bb;
}

.main_menu>ul>li.current_page_item>li.current_page_item>a,
.main_menu>ul>li.current-menu-ancestor>ul>li.current-menu-parent>a,
.main_menu>ul>li>ul>li>ul>li.current-menu-item>a {
  background: #0093bb;
  color: #fff;
}

.main_menu>ul>li.current-product_cat-ancestor>li.current-product_cat-ancestor>a,
.main_menu>ul>li.current-product_cat-ancestor>ul>li.current-product_cat-ancestor>a,
.main_menu>ul>li>ul>li>ul>li.current-product_cat-ancestor>a {
  color: #fff;
}

.main_menu>ul>li.current-product_cat-ancestor>a {
  color: #fff;
  background: #0093bb;
}

.main_menu>ul>li>ul>li.current-menu-item>a {
  color: #fff;
  background: var(--Pink);
}

.main_menu ul>li:hover>a,
.main_menu>ul>li.current-menu-item>a {
  transition: all 0.3s linear;
  color: #fff;
}

/* submenus */
.main_menu ul ul {
  top: 100%;
  background: #fff;
  pointer-events: none;
  z-index: 1000;
  min-width: 282px;
  width: auto;
  border-radius: 2px;
  position: absolute;
  padding: 0px;
  margin: 0px;
  visibility: hidden;
  display: block;
  text-align: left;
  opacity: 0;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.03s ease;
  -ms-transition: all 0.03s ease;
  -o-transition: all 0.03s ease;
  transition: all 0.03s ease;
  border: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0px 2px 20px 0px #8b8b8b40;
}

.main_menu ul ul li {
  display: block;
  position: relative;
}

.main_menu ul ul li a {
  padding: 24px 34px;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main_menu ul ul a:hover {
  text-decoration: none;
}

.main_menu li:hover>ul {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  pointer-events: auto;
}

.main_menu>ul>li>ul>li:first-child,
.main_menu>ul>li>ul>li:first-child li:first-child {
  border-top: 0px;
}

.main_menu ul ul ul {
  padding-top: 0px;
  left: 100%;
  top: 0px;
}

.main_menu ul ul li:first-child>ul {
  top: 0px;
  border-top: 0px;
}

.main_menu>select,
a.meanmenu-reveal {
  display: none;
}

.mean-bar {
  float: left;
  position: relative;
  width: 100%;
  z-index: 99;
}

a.meanmenu-reveal {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}

a.meanmenu-reveal span {
  display: block;
}

.mean-nav {
  background: #fff;
  float: left;
  position: absolute;
  top: 29px;
  width: 100%;
}

.mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

body .main_menu ul>li>a:hover,
body .main_menu ul>li:hover>a,
.main_menu>ul>li.current-menu-item>a {
  color: var(--Black);
}

.main_menu>ul>li.current-menu-item>a {
  color: var(--Yellow) !important;
  background-color: transparent;
}

body .main_menu ul>li:hover>a {
  color: var(--Yellow) !important;
  background-color: var(--Purple);
}

header .main_menu ul.navbar-nav>li:hover>a,
header .main_menu ul.navbar-nav>li>a:hover {
  color: var(--Black) !important;
}

.main_menu>ul>li>ul>li:hover a {
  background: var(--Pink) !important;
  color: var(--White) !important;
}

.mean-nav ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 10px 20px;
  margin: 0;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 155.556%;
  min-height: 80px;
  display: grid;
  align-items: center;
  text-transform: capitalize;
}

.mean-nav ul li li a {
  width: 100%;
  padding: 8px 25px;
  opacity: 1;
  text-shadow: none !important;
  visibility: visible;
  letter-spacing: 0.54px;
}

.mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0;
}

.mean-nav ul li li li a {
  padding: 7px 30px;
  width: 100%;
}

.mean-nav ul li li li li a {
  width: 60%;
  padding: 14px 20%;
}

.mean-nav ul li li li li li a {
  width: 50%;
  padding: 14px 25%;
}

.mean-nav ul li a.mean-expand {
  width: 76px;
  height: 39px;
  border: none !important;
  padding: 6px 5px 3px 5px !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background-color: transparent;
  box-shadow: none;
  font-size: 0 !important;
  transition: all 0.5s ease;
  box-shadow: none;
}

.mean-nav>ul>li.current-menu-item>ul>li.current-menu-item>a {
  background: #ff0b2c;
  color: #1a1a1a;
}

.main_menu>ul>li.menu-item-has-children>a {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
}

.main_menu>ul>li.menu-item-has-children>a::after {
  background-image: url("../images/down-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  width: 8px;
  height: 100%;
  transition: all 0.5s ease;
  border: none;
  margin: 0;
  position: absolute;
  background-size: contain;
  top: 0;
  right: 11px;
}

.main_menu>ul>li.current-menu-item>a:after {
  background-image: url("../images/down-green.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
}

.main_menu>ul>li.menu-item-has-children:hover>a:after {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}

.main_menu>ul>li.current-menu-item>a::after {
  filter: brightness(0) invert(1);
}

.mean-nav ul li a.mean-expand.mean-clicked {
  transform: rotate(180deg);
}

header .logo img {
  max-width: 278px;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s linear;
}

header {
  position: fixed;
  transition: all 0.33s linear;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--Dark-Blue);
}

header .top-banner {
  background: var(--Yellow);
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  align-items: center;
  padding: 12.5px 28px;
}

header .top-banner p {
  margin-bottom: 0;
}

header .top-banner a {
  font-family: var(--Font-Poppins);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--Dark-Blue);
  display: flex;
  align-items: center;
}

header .top-banner a img {
  padding-right: 4px;
}

header .top-banner a::after {
  content: "";
  background-image: url(../images/topbanner-arrow.svg);
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-left: 10px;
}

header .top-banner span {
  font-family: var(--Font-Orbitron);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: var(--Dark-Blue);
  display: block;
}

header .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 21px 14px 41px;
  transition: all 0.3s linear;
}

header .middle-wrp .main_menu>ul {
  display: flex;
  gap: 0;
}

header .logo {
  position: relative;
  display: block;
  margin-bottom: -25px;
}

header .top-header a.neon-btn {
  min-width: 145px;
}

.logged-in #main__header {
  top: 32px;
}

/* Header end */

/* Footer */
footer {
  position: relative;
  padding: 89px 0 40px;
  border-top: 3px solid #EDE722;
  border-bottom: 3px solid #EDE722;
}

footer .footer-row .left-wrp h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

footer .footer-row .left-wrp p {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0;
  margin-bottom: 0;
}

footer .footer-row .left-wrp h4,
footer .footer-row .left-wrp p {
  margin-left: 16px;
}

footer .footer-row .left-wrp {
  flex: 0 0 28.996%;
  max-width: 28.996%;
  width: 100%;
}

footer .footer-row .right-wrp {
  flex: 0 0 61.66%;
  width: 100%;
  max-width: 61.66%;
  margin-top: 14px;
}

footer ul.f-social-list {
  display: flex;
  justify-content: center;
  grid-column-gap: 11.71px;
  /* margin-top: auto; */
}

footer .f-social-list a {
  position: relative;
  width: 14.8px;
  height: 14.8px;
  display: block;
  transition: 0.3s ease;
}

footer .f-social-list a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}

footer .f-social-list a img.hover {
  display: block;
  opacity: 0;
  z-index: 2;
  visibility: visible;
  transition: 0.3s ease;
}

footer .f-social-list a:hover img.hover {
  opacity: 1;
  visibility: visible;
}

footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-row .f-logo {
  max-width: 262px;
  margin-bottom: 42px;
}

.f-logo img {
  object-fit: contain;
  width: 100%;
}

.col-in ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 16px;
  justify-content: space-between;
  width: 100%;
}

.col-in ul li {
  font-family: var(--Font-Orbitron);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: var(--White);
  margin-bottom: 0;
}

.col-in ul li a {
  color: inherit;
}

.col-in ul li a:hover {
  color: var(--Yellow);
}

.footer-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 72px;
  max-width: 1062px;
}

.footer-row2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-row2 ul li a,
.footer-row2>a {
  font-family: var(--Font-Open);
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--White);
  margin: 0;
  text-decoration: underline;
}

.footer-row2 ul li a:hover,
.footer-row2>a:hover {
  color: var(--Yellow);
}

footer .locations-wrp {
  margin-top: 61px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 21px;
  column-gap: 21px;
}

footer .locations-wrp .location {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 9px;
}

footer .location .icon-wrp {
  margin-top: 2px;
}

footer .location .icon-wrp img {
  object-fit: contain;
  display: block;
}

footer .location h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
}

footer .location a {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--White);
  display: block;
  max-width: 227px;
}

footer .location a:hover {
  color: var(--Yellow);
}

footer .location a.contact-link {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-decoration: underline;
  margin-top: 5px;
  color: var(--Yellow);
}

footer .location a.contact-link:hover {
  color: var(--Blue);
}

/* Footer */
/* slider slick start */
.slick-slider .slick-next,
.slick-slider .slick-prev {
  opacity: 1;
  z-index: 9;
}

.slick-slider .slick-next,
.slick-slider .slick-prev {
  background: url(../images/slider-prev-blue.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 24px !important;
  width: 24px;
  height: 24px;
  transition: all 0.3s linear;
}

.slick-slider .slick-prev {
  left: 0;
}

.slick-slider .slick-next {
  transform: rotateY(-180deg) translate(0, -50%);
  right: 0;
}

.slick-slider .slick-next:before,
.slick-slider .slick-prev:before {
  display: none;
}

.slick-dots li {
  width: 8.51px;
  height: 8.51px;
  margin: 0 4.2px;
  transition: all 0.3s linear;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  padding: 0;
  border-radius: 50%;
  transition: all 0.3s linear;
  font-size: 0;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots li.slick-active button {
  background: var(--Purple);
}

/* slider slick end */

.gform_wrapper.gravity-theme .gfield--input-type-address .ginput_container_address .gf_clear {
  display: none;
}

.gform_wrapper.gravity-theme .gform_fields,
.gform_wrapper.gravity-theme .gfield--input-type-address .ginput_container_address {
  grid-row-gap: 30px !important;
  grid-column-gap: 21px !important;
}

.gform_wrapper.gravity-theme .gfield input,
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .gfield textarea {
  background-color: #fff;
  color: #828282;
  border: 2px solid transparent;
  border-radius: 2px;
  padding: 11.5px 21px !important;
  box-shadow: none;
  font-weight: 400;
  font-size: 15px !important;
  line-height: 140% !important;
  letter-spacing: 0;
  transition: all 0.33s ease;
}

.gform_wrapper.gravity-theme .gfield input:focus,
.gform_wrapper.gravity-theme .gfield select:focus,
.gform_wrapper.gravity-theme .gfield textarea:focus {
  outline: none;
  border-color: var(--Purple);
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none !important;
}

.gform_wrapper.gravity-theme .gfield textarea.large {
  height: 172px !important;
  display: block;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 6px;
  color: var(--White);
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-left: 5px;
  text-align: left;
  color: var(--Purple) !important;
}

.gform_wrapper.gravity-theme .description,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .gsection_description,
.gform_wrapper.gravity-theme .instruction {
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.ginput_recaptcha div {
  z-index: 999999 !important;
}

.gform_wrapper.gravity-theme .gfield_label .gfield_required_text,
.gform_wrapper.gravity-theme .gform_fileupload_rules,
.gform_required_legend,
.gfield--type-captcha label,
.instruction,
.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none !important;
}

.gform_wrapper.gravity-theme .gfield select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url(../images/select-down.svg);
  background-repeat: no-repeat;
  background-position: center right 29px;
  background-size: 10px;
}

.gform_wrapper.gravity-theme .gfield select:has(option:first-child:checked) {
  color: #828282;
}

.gform_wrapper.gravity-theme div#field_1_8 {
  margin-top: -6px;
}

.gform_wrapper.gravity-theme div#field_3_14 {
  margin-top: -12px;
}

.gform_wrapper.gravity-theme .gfield input#input_3_14,
.gform_wrapper.gravity-theme .gfield input#input_1_8 {
  padding: 8.5px 21px !important;
  background-image: url(../images/upload-icon.svg) !important;
  background-repeat: no-repeat !important;
  background-position: left 20px center !important;
  background-size: 12px !important;
  padding-left: 41px !important;
  text-transform: capitalize;
}

.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
  background-image: url(../images/date-icon.svg);
  background-repeat: no-repeat;
  background-position: center right 29px;
  background-size: 16px;
}

.gform_wrapper.gravity-theme .gform_footer {
  justify-content: center;
  margin: 44px auto 0 !important;
  padding: 0 !important;
  position: relative;
  align-items: center;
  overflow: hidden;
  max-width: 224px;
  height: 44px;
}

.gform_wrapper.gravity-theme .gform_footer::after {
  position: absolute;
  content: "";
  inset: 3px;
  border: 1.5px solid var(--Purple);
  border-radius: 32px;
  transition: all 0.3s linear;
  pointer-events: none;
}

.gform_wrapper.gravity-theme .gform_footer .gform_button {
  border: none;
  margin-bottom: 0;
  background-color: var(--Green);
  color: var(--White);
  min-width: 100%;
  min-height: 100% !important;
  line-height: 20px !important;
}

.gform_wrapper.gravity-theme .gform-loader,
.gform_ajax_spinner {
  position: absolute !important;
  top: 0 !important;
  right: 15px !important;
  bottom: 0 !important;
  margin: auto !important;
}

.gravity-theme .gform_confirmation_message {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--White);
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

/* Modal  */
.modal-dialog {
  max-width: 1063px;
  width: 100%;
  z-index: 999999;
}

.modal-dialog .modal-content {
  border: none;
  background: var(--Green);
}

.modal-dialog .modal-body {
  padding: 0px 0px;
}

.modal-dialog .close-btn {
  position: absolute;
  top: 19px;
  right: 20px;
  border: none;
  background-color: transparent;
  background: none;
  width: 20px;
  height: 20px;
  padding: 0;
  opacity: 1;
}

.modal-dialog .close-btn:focus {
  box-shadow: none;
}

.modal-dialog .close-btn::before {
  content: "";
  background: url(../images/modal-close-icon.svg) no-repeat center;
  background-size: 17px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-dialog .close-btn span {
  display: none;
}

body.modal-open header {
  z-index: 999 !important;
}

/* model end */
/* pagination start */
.pagination {
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 31px;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.pagination ul li a,
.pagination ul li span {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 5px 13px;
  display: block;
  color: var(--Purple);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.pagination ul li.active span {
  color: var(--Pink);
}

.pagination ul li.next-arrow a,
.pagination ul li.prev-arrow a {
  background: #FFFFFFB2;
  border: 1.5px solid var(--Purple);
  border-radius: 5px;
  padding: 11px 13px;
}

.pagination ul li.next-arrow a img,
.pagination ul li.prev-arrow a img {
  object-fit: contain;
  transition: all 0.3s linear;
}

.pagination ul li.next-arrow a img {
  transform: rotateY(180deg);
}

.pagination ul li.next-arrow a:hover,
.pagination ul li.prev-arrow a:hover {
  background-color: var(--Pink);
  border-color: var(--Pink);
}

.pagination ul li.next-arrow a:hover img,
.pagination ul li.prev-arrow a:hover img {
  filter: brightness(0) invert(1);
}

/* pagination end */
/* blog-single icon */
.meta_social_btns {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}

.meta_social_btns a {
  position: relative;
  width: 23.71px;
  height: 18.54px;
  display: block;
  transition: 0.3s ease;
}

.meta_social_btns a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
  object-fit: contain;
  object-position: center;
}

.meta_social_btns a img.hover {
  display: block;
  opacity: 0;
  z-index: 2;
  visibility: visible;
  transition: 0.3s ease;
}

.meta_social_btns a:hover img.hover {
  opacity: 1;
  visibility: visible;
}

.meta_social_btns a .copy-to-clipboard {
  position: absolute;
  left: 30px;
  top: 0;
  min-width: 110px;
  font-size: 14px;
  margin-left: 10px;
  line-height: 20px;
  color: var(--Black);
  text-align: left;
}

/* blog-single icon end */

.main_menu ul li ul {
  overflow-y: auto;
  max-height: 75vh;
}

.main_menu ul li ul::-webkit-scrollbar {
  width: 12px;
}

.main_menu ul li ul::-webkit-scrollbar-track {
  background: transparent;
}

.main_menu ul li ul::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 6px;
  border: 2px solid #f0f0f0;
}

#wpadminbar {
  z-index: 99999999;
}

/*home page start*/

/* page not found start */
.page-not-found {
  position: relative;
  min-height: 533px;
  padding: 79px 0 138px;
  display: flex;
}

.page-not-found .page-not-cnt {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.page-not-found .page-not-cnt h1 {
  font-size: 156px;
  line-height: 125%;
  letter-spacing: 0.02em;
  margin-bottom: 29px;
  color: #1DBCD5B2;
  -webkit-text-stroke: 2px #EDE722;
}

.page-not-found .page-not-cnt ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 434px;
  gap: 35px;
  margin-left: 28px;
}

.page-not-found .page-not-cnt ul li a {
  font-family: var(--Font-Orbitron);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--White);
  text-decoration: underline;
  display: block;
}

.page-not-found .page-not-cnt ul li a:hover {
  color: var(--Yellow);
}

.page-not-found .page-not-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 773px;
  /* width: 60vw; */
  /* height: 100%; */
  z-index: 1;
}

.page-not-found .page-not-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* page not found end */
/* privacy and terms start */
.cms-hero {
  min-height: 398px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 87px 0 132px;
}

.cms-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67px;
  background: linear-gradient(180deg, #00040A 0%, #052F4A 100%);
}

.cms-hero .cnt-wrp h1 {
  margin-bottom: 0;
}

.cms-hero .cnt-wrp .btn-wrp {
  margin-top: 47px;
  display: flex;
  column-gap: 19px;
  justify-content: center;
  align-items: center;
}

.cms-hero .img-wrp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 191px;
}

.cms-hero .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: drop-shadow(0px 4px 84px #00416466);
}

.cms-cnt {
  padding: 47px 0 39px;
  position: relative;
}

.cms-cnt .cnt-wrp p,
.cms-cnt .cnt-wrp ul li {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #F2F2F2;
}

.cms-cnt .cnt-wrp p {
  margin-bottom: 25px;
}

.cms-cnt .cnt-wrp p:last-child {
  margin-bottom: 0;
}

.cms-cnt .cnt-wrp p+ul:not(:nth-of-type(4)) {
  margin-top: -25px;
}

.cms-cnt .cnt-wrp ul {
  padding-left: 30px;
  margin-bottom: 25px;
}

.cms-cnt .cnt-wrp ul li {
  list-style: disc;
}

.cms-cnt .cnt-wrp p a,
.cms-cnt .cnt-wrp ul li a {
  color: #F2F2F2;
  text-decoration: underline;
  word-wrap: break-word;
}

.cms-cnt .cnt-wrp p a:hover,
.cms-cnt .cnt-wrp ul li a:hover {
  color: var(--Yellow);
}

.cms-cnt .cnt-wrp ul li>ul {
  margin-bottom: 0;
}

/* privacy and terms end */
.bg-video,
.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--Dark-Blue);
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.bg-video video,
.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.social-icons {
  position: fixed;
  background: var(--Yellow);
  z-index: 3;
  top: 328px;
  padding: 30px 11.5px;
  display: flex;
  flex-direction: column;
  row-gap: 19px;
}

.social-icons .social-icons-in a {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  transition: 0.3s ease;
}

.social-icons .social-icons-in a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}

.social-icons .social-icons-in a img.hover {
  display: block;
  opacity: 0;
  z-index: 2;
  visibility: visible;
  transition: 0.3s ease;
}

.social-icons .social-icons-in a:hover img.hover {
  opacity: 1;
  visibility: visible;
}

.cta {
  margin-top: 44px;
  position: relative;
  padding-left: max(30px, calc((100vw - 886px) / 2));
  padding-top: 32px;
  padding-bottom: 40px;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100vw - 78px);
  height: 100%;
  mask-image: url(../images/cta-mask.svg);
  mask-repeat: no-repeat;
  mask-position: right;
  mask-size: auto;
  -webkit-mask-image: url(../images/cta-mask.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: right;
  -webkit-mask-size: cover;
  background-color: var(--Yellow);
  z-index: -1;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 50%;
  background: var(--Yellow);
  height: 100%;
  z-index: -1;
  left: 0;
  right: auto;
  width: 100%;
}

.cta .main-wrp {
  display: flex;
}

.cta .cnt-wrp {
  max-width: 510px;
}

.cta .cnt-wrp h2,
.cta .cnt-wrp p {
  color: var(--Dark-Blue);
  margin-bottom: 8px;
}

.cta .cnt-wrp a.blue-btn {
  min-width: 223px;
}

.cta .cnt-wrp p.cta-heading {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 38px;
  line-height: 125%;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.cta .img-wrp {
  position: absolute;
  bottom: -55px;
  right: 0;
  width: 523.17px;
  height: 346px;
  z-index: 2;
}

.cta .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-home {
  position: relative;
  min-height: 605px;
  padding: 176px 0 132px;
}

.hero-home .bg-video::before {
  background: linear-gradient(180deg, rgba(9, 25, 44, 0) -29.11%, rgba(2, 26, 49, 0.769153) 64.13%, #001A33 100%);
  opacity: 1;
  mix-blend-mode: unset;
}

.hero-home .highlights-wrp {
  background: var(--Yellow);
  display: flex;
  max-width: 674px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px 35px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.hero-home .highlights-wrp .highlists-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-home .highlights-wrp .highlists-item img {
  object-fit: contain;
  display: block;
}

.hero-home .highlights-wrp .highlists-item p {
  font-weight: 700;
  font-size: 12.96px;
  line-height: 13.5px;
  margin-bottom: 0;
  color: var(--Dark-Blue);
}

.hero-home .main-wrp {
  max-width: 778px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hero-home .main-wrp h1 {
  margin-bottom: 12px;
}

.hero-home .main-wrp h1 span {
  color: var(--Yellow);
}

.hero-home .main-wrp p {
  max-width: 690px;
}

.hero-home .btn-wrp {
  display: flex;
  column-gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.review-banner {
  margin: 20px 0 60px;
  position: relative;
  padding-left: max(30px, calc((100vw - 988px) / 2));
}

/* .review-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100vw - 146px);
  height: 100%;
  mask-image: url(../images/review-mask.svg);
  mask-repeat: no-repeat;
  mask-position: left;
  mask-size: auto;
  -webkit-mask-image: url(../images/review-mask.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left;
  -webkit-mask-size: cover;
  background: linear-gradient(90deg, rgba(234, 229, 36, 0) 17.52%, rgba(177, 218, 85, 0.27907) 52.57%, #1DBCD5 89.87%);
  z-index: -1;
} */
.review-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100vw - 146px);
  height: 100%;
  background: url(../images/review-mask.svg) no-repeat left;
  background-size: 100% 100%;
  z-index: 0;
}

.review-banner::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #09192C 16.85%, rgba(9, 25, 44, 0) 100%);
  z-index: -1;
}

.review-banner .main-wrp {
  display: flex;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.review-banner .main-wrp .reviews-wrp {
  display: flex;
  align-items: center;
  margin-left: 307px;
  column-gap: 90.4px;
}

.review-banner .main-wrp .reviews-wrp .review-in {
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.review-banner .main-wrp .img-wrp {
  position: absolute;
  width: 330px;
  height: 218px;
  top: -63px;
  left: -23px;
}

.review-banner .main-wrp .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.review-banner .main-wrp .reviews-wrp .cnt-wrp {
  display: flex;
  flex-direction: column;
}

.review-banner .main-wrp .reviews-wrp .cnt-wrp img {
  display: block;
  object-fit: contain;
}

.review-banner .main-wrp .reviews-wrp .review-in span {
  display: block;
  font-family: var(--Font-Radikal);
  font-weight: 900;
  font-size: 54.89px;
  line-height: 56.89px;
  letter-spacing: -0.05em;
  margin-bottom: 0;
}

.lirc-sec {
  padding: 50px 0;
  position: relative;
}

.lirc-sec .main-wrp {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.lirc-sec .main-wrp .img-wrp {
  max-width: 525px;
  border-radius: 8px;
  overflow: hidden;
}

.lirc-sec .main-wrp .img-wrp {
  flex: 0 0 45.494%;
  max-width: 45.494%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.lirc-sec .main-wrp .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lirc-sec .main-wrp .cnt-wrp {
  display: flex;
  flex-direction: column;
  flex: 0 0 47.575%;
  max-width: 47.575%;
  width: 100%;
}

.lirc-sec .main-wrp .cnt-wrp h2.h3 {
  margin-bottom: 16px;
}

.lirc-sec .main-wrp .cnt-wrp h2.h3 span {
  color: #1CBFD9;
}

.lirc-sec .main-wrp .cnt-wrp>div p {
  max-width: 484px;
  margin-bottom: 25px;
}

.lirc-sec .main-wrp .cnt-wrp>div p:last-child {
  margin-bottom: 0;
}

.lirc-sec .main-wrp .cnt-wrp .btn-wrp {
  margin-top: 36px;
}

.our-service {
  padding: 60px 0 73px;
  position: relative;
}

.our-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 165px;
  background: linear-gradient(180deg, #001C39 0%, rgba(9, 25, 44, 0) 100%);
}

.our-service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 47px;
  background: linear-gradient(0deg, #0D253A -20%, rgba(5, 45, 71, 0) 107.64%);
}

.our-service h2 {
  text-align: center;
  position: relative;
  z-index: 2;
}

.our-service .services-wrp {
  margin-top: 120px;
  display: flex;
  column-gap: 25px;
  flex-wrap: wrap;
  align-items: center;
}

.our-service .services-wrp .service-in {
  width: calc((100% - (25px * 3))/4);
  position: relative;
  transition: all 0.33s linear;
}

.our-service .services-wrp .service-in>* {
  transition: all 0.33s linear;
}

.our-service .services-wrp .service-in .top-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #004164;
  border: 1.5px solid #EDE722;
  border-radius: 9.74px;
  transform: skewX(-18deg);
  padding: 110px 15px;
}

.our-service .services-wrp .service-in .top-wrp>* {
  transform: skewX(18deg);
}

.our-service .services-wrp .top-wrp h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 14.61px;
  letter-spacing: -0.19px;
  margin-bottom: 13px;
  color: #FFF;
}
.our-service .services-wrp .top-wrp h3 a{
  color: inherit;
}

.our-service .services-wrp .top-wrp p {
  line-height: 12.18px;
  letter-spacing: -0.09px;
  margin-bottom: 0;
}

.our-service .service-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease-in-out;
  z-index: 1;
}

.our-service .service-hover .hover-cnt-wrp {
  padding: 60px 30px;
}

.our-service .service-hover .hover-wrp {
  z-index: 1;
  position: relative;
  border: 3px solid #EDE722;
  border-radius: 16px;
  background: #005A7C;
  /* overflow: hidden; */
  width: 375px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.our-service .service-hover .hover-wrp .img-wrp {
  position: absolute;
  right: 0;
  top: -125px;
  width: 172px;
  height: 172px;
  z-index: 99;
}

.our-service .service-hover .hover-wrp .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.our-service .service-hover .btn-wrp {
  margin-top: 0;
}

.our-service .service-hover .btn-wrp a.neon-btn {
  min-width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  text-decoration: underline;
}

.our-service .service-hover .hover-cnt-wrp h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 14.61px;
  letter-spacing: -0.19px;
  margin-bottom: 36px;
}

.our-service .service-hover .hover-cnt-wrp p {
  margin-bottom: 0;
}

.our-service .btn-wrp {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  align-items: center;
}

.our-service .services-wrp .service-in:hover .top-wrp {
  opacity: 0;
  pointer-events: none;
}

.our-service .services-wrp .service-in:hover .service-hover {
  opacity: 1;
  pointer-events: auto;
}

.how-it-works {
  padding: 50px 0 78px;
  position: relative;
}

body.home .how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #081F34B2;
  z-index: -1;
}

body.home .how-it-works::after {
  content: '';
  position: absolute;
  bottom: -46px;
  left: 0;
  width: 100%;
  height: 47px;
  background: linear-gradient(180deg, #0D253A -20%, rgba(5, 45, 71, 0) 107.64%);
}

body.home .how-it-works .bg-image {
  position: absolute;
  top: -690px;
  left: 0;
  width: 100%;
  height: 2041px;
  background-image: url('../images/how-it-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
}

body.home .how-it-works .bg-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #004164B2;
  inset: 0;
  z-index: -1;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

.how-it-works .cnt-wrp {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.how-it-works .cnt-wrp .processs-wrp {
  flex: 0 0 42.635%;
  max-width: 42.635%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.how-it-works .processs-wrp .processs-in:not(:last-child) {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 0.15px solid #FFFFFF33;
}

.how-it-works .processs-wrp .processs-in h3 {
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.31px;
  margin-bottom: 11px;
}

.how-it-works .processs-wrp .processs-in p {
  margin-bottom: 0;
}

.how-it-works .processs-wrp .processs-in .btn-wrp {
  display: flex;
  column-gap: 12px;
  align-items: center;
  margin-top: 21px;
}

.how-it-works .processs-wrp .processs-in .btn-wrp a.neon-btn {
  min-width: 101px;
}

.how-it-works .processs-wrp .processs-in .btn-wrp a.blue-btn {
  min-width: 151px;
}

.how-it-works .cnt-wrp .img-wrp {
  flex: 0 0 47.315%;
  max-width: 47.315%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.how-it-works .cnt-wrp .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.coupons {
  padding: 67px 0;
  position: relative;
}

.coupons::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 161px;
  background: linear-gradient(180deg, rgba(5, 45, 71, 0) 0%, #023857 95.84%);
  z-index: -1;
}

.coupons h2 {
  margin-bottom: 48px;
  text-align: center;
}

.coupons .coupons-wrp {
  display: flex;
  flex-wrap: wrap;
  column-gap: 45px;
  max-width: 1062px;
  margin-inline: auto;
}

.coupons .coupons-wrp .coupon {
  width: calc((100% - (45px * 2))/3);
  outline: 2px dashed #FFFFFF;
  padding: 32px 11px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  text-align: center;
  background: #00416466;
  box-shadow: 0px 4px 4px 0px #00000040;
  transition: all 0.33s linear;
}

.coupons .btn-wrp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
}

.coupons .coupons-wrp .coupon h3 {
  font-weight: 700;
  max-width: 168px;
  margin-inline: auto;
  margin-bottom: 16px;
  letter-spacing: -0.31px;
}

.coupons .coupons-wrp .coupon h4 {
  font-family: var(--Font-Inter);
  font-weight: 700;
  font-size: 23px;
  line-height: 22px;
  margin-bottom: 9px;
}

.coupons .coupons-wrp .coupon p {
  font-family: var(--Font-Open);
  line-height: 17px;
  margin-bottom: 24px;
}

.coupons .coupons-wrp .coupon p.disclaimer {
  font-size: 12px;
  margin-bottom: 0;
  max-width: 209px;
  margin-inline: auto;
  margin-top: auto;
}

.coupons .coupons-wrp .coupon:hover {
  background: var(--Dark-Blue);
  outline: 3px dashed #EDE722;
}

.coupons .coupons-wrp .coupon:hover p {
  color: #F2F2F2;
}

/* areas-we-serve Section start*/
.areas-we-serve {
  padding: 44px 0 50px;
  position: relative;
}

.areas-we-serve h2 {
  text-align: center;
  margin-bottom: 48px;
  line-height: 127%;
}

.areas-we-serve .locations-wrp {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 34px;
}

.areas-we-serve .location-in {
  width: calc((100% - 40px) / 2);
  background-color: var(--Dark-Blue);
  border: 1px solid var(--Yellow);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.33s linear;
}

.areas-we-serve .location-in:hover {
  background-color: #005a7c;
}

.areas-we-serve .location-in .icon-wrp {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  background: #06b6d415;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.33s linear;
}

.areas-we-serve .location-in .icon-wrp img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  transition: all 0.33s linear;
}

.areas-we-serve .location-in .icon-wrp img.hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.areas-we-serve .location-in:hover .icon-wrp {
  background: var(--Yellow);
}

.areas-we-serve .location-in:hover .icon-wrp img:not(.hover) {
  opacity: 0;
}

.areas-we-serve .location-in:hover .icon-wrp img.hover {
  opacity: 1;
}

.areas-we-serve .location-in .cnt-wrp h3 {
  font-weight: 700;
  color: var(--White);
  margin-bottom: 18px;
}

.areas-we-serve .location-in .cnt-wrp a,
.areas-we-serve .location-in .cnt-wrp p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  display: block;
  margin-bottom: 23px;
  transition: all 0.33s linear;
}

.areas-we-serve .location-in .cnt-wrp a.link {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  color: #1cbfd9;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 0;
  transition: all 0.33s linear;
}

.areas-we-serve .location-in:hover .cnt-wrp a.link {
  color: var(--Yellow);
}

.areas-we-serve .btn-wrp {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.reviews-sec {
  padding: 35px 0 44px;
  position: relative;
  overflow: hidden;
}

.reviews-sec .reviews-wrp .reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.reviews-sec .reviews-top .cnt-wrp h2 {
  margin-bottom: 7px;
}

.reviews-sec .reviews-top .cnt-wrp p {
    margin-bottom: 0;
    max-width: 421px;
}

.reviews-sec .reviews-top .btn-wrp {
  flex-shrink: 0;
}

.reviews-sec .review-list {
  position: relative;
  margin: 0;
}

.reviews-sec .review-list .slick-list {
  padding: 0 16.7vw;
  overflow: hidden;
}

.reviews-sec .review-list .slick-track {
  display: flex;
  align-items: stretch;
  margin: 0;
}

.reviews-sec .review-wrp {
  margin: 0 12px;
  height: auto;
}
.reviews-sec .btn-wrp .neon-btn {
	position: relative;
	padding-right: 37px;
}
.reviews-sec .btn-wrp .neon-btn::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('../images/veiw-all-btn-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: contain;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
}

.reviews-sec .review-wrp .review-wrp-inn {
  background: var(--Dark-Blue);
  border: 1.5px solid var(--Yellow);
  border-radius: 10px;
  padding: 80px 25px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  box-sizing: border-box;
  transition: all 0.33s linear;
  position: relative;
}

.reviews-sec .review-wrp .review-wrp-inn p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 24px;
  flex: 1;
}

.reviews-sec .review-wrp .review-wrp-inn .rating-img {
  margin-bottom: 36px;
}

.reviews-sec .review-wrp .review-wrp-inn .rating-img img {
  width: auto;
  height: 16px;
  object-fit: contain;
  display: block;
}

.reviews-sec .review-wrp .review-wrp-inn p.reviewer-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: auto;
}

.reviews-sec .review-wrp .review-wrp-inn .logo-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.reviews-sec .review-wrp .review-wrp-inn .logo-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.reviews-sec .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 45px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.reviews-sec .slick-dots li {
  width: 16px;
  height: 4px;
  margin: 0;
  border-radius: 16px;
  transition: all 0.33s linear;
}

.reviews-sec .slick-dots li button {
  width: 100%;
  height: 100%;
  background: var(--White);
  border-radius: 16px;
  padding: 0;
  font-size: 0;
  transition: all 0.33s linear;
}

.reviews-sec .slick-dots li.slick-active {
  width: 32px;
}

.reviews-sec .slick-dots li.slick-active button {
  background: #1cbfd9;
}

.reviews-sec .review-list .slick-prev,
.reviews-sec .review-list .slick-next {
  display: none !important;
}

.inner-hero {
  padding: 80px 0;
  position: relative;
  min-height: 591px;
}
.inner-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67px;
  background: linear-gradient(180deg, #00040A 0%, #052F4A 100%);
}
.inner-hero .inner-hero-wrp .cnt-wrp {
  max-width: 716px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.inner-hero .inner-hero-wrp .cnt-wrp h1 span {
  display: block;
  color: var(--Yellow);
}
.inner-hero .inner-hero-wrp .cnt-wrp .btn-wrp {
  display: flex;
  margin-top: 30px;
  column-gap: 18px;
}
.inner-hero .inner-hero-wrp .img-wrp {
  position: absolute;
  bottom: 67px;
  right: 0;
  width: 812px;
  height: 558px;
}
.inner-hero .inner-hero-wrp .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.lirc-sec.lcri-sec .bg-image{
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 2184px;
  background-image: url('../images/how-it-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
}

/* Migrated city pages: bg-image needs to be tall enough to cover the new block stack.
   Page-id list covers Atwater (343) + 4 HVAC city pages + 9 AC pages + 9 Electrical pages. */
body.page-id-343 .lirc-sec.lcri-sec .bg-image,
body.page-id-347 .lirc-sec.lcri-sec .bg-image,
body.page-id-363 .lirc-sec.lcri-sec .bg-image,
body.page-id-371 .lirc-sec.lcri-sec .bg-image,
body.page-id-339 .lirc-sec.lcri-sec .bg-image,
body.page-id-335 .lirc-sec.lcri-sec .bg-image,
body.page-id-353 .lirc-sec.lcri-sec .bg-image,
body.page-id-337 .lirc-sec.lcri-sec .bg-image,
body.page-id-325 .lirc-sec.lcri-sec .bg-image,
body.page-id-355 .lirc-sec.lcri-sec .bg-image,
body.page-id-341 .lirc-sec.lcri-sec .bg-image,
body.page-id-333 .lirc-sec.lcri-sec .bg-image,
body.page-id-351 .lirc-sec.lcri-sec .bg-image,
body.page-id-331 .lirc-sec.lcri-sec .bg-image,
body.page-id-365 .lirc-sec.lcri-sec .bg-image,
body.page-id-357 .lirc-sec.lcri-sec .bg-image,
body.page-id-367 .lirc-sec.lcri-sec .bg-image,
body.page-id-359 .lirc-sec.lcri-sec .bg-image,
body.page-id-361 .lirc-sec.lcri-sec .bg-image,
body.page-id-373 .lirc-sec.lcri-sec .bg-image,
body.page-id-369 .lirc-sec.lcri-sec .bg-image,
body.page-id-375 .lirc-sec.lcri-sec .bg-image {
  height: 3100px;
}
.lirc-sec.lcri-sec .bg-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #081F34B2;
  background: #081F34;
  opacity: 0.92;
  inset: 0;
  z-index: -1;
}
.services-offered {
  padding: 65px 0;
  position: relative;
}
.services-offered .col-md-12 {
  max-width: 922px;
  margin-inline: auto;
}
.services-offered h2.h3 {
  text-align: center;
  margin-bottom: 21px;
}
.services-offered .col-md-12>p {
  margin-bottom: 0;
  max-width: 646px;
  text-align: center;
  margin-inline: auto;
}
.services-offered .services-wrp {
  margin-top: 58px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 17px;
  row-gap: 24px;
}
.services-offered .services-wrp .service {
  width: calc((100% - (17px * 2))/3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #004164;
  border: 1.5px solid #EDE722;
  border-radius: 9.74px;
  padding: 44px 26px;
}
.services-offered .services-wrp .service h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.19px;
  margin-bottom: 18px;
}
.services-offered .services-wrp .service p {
  color: #F2F2F2;
  margin-bottom: 0;
  text-transform: capitalize;
}
.services-offered .btn-wrp {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}
.full-width-content.has-image {
  padding: 125px 0 70px;
  position: relative;
}
.full-width-content.has-image .image-wrp {
  position: absolute;
  top: -70px;
  right: -5px;
  width: 652px;
  height: 652px;
  z-index: -1;
}
.full-width-content.has-image .image-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.full-width-content.has-image .top-wrp {
  text-align: left;
}
.full-width-content.has-image .top-wrp h2.h3 {
  max-width: 810px;
  margin-bottom: 24px;
}
.full-width-content .top-wrp p{
  margin-bottom: 0;
}
.full-width-content .items-wrp {
  margin-top: 49px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 28px;
}
.full-width-content .items-wrp .single-item {
  width: calc((100% - (10px))/2);
  display: flex;
  align-items: center;
}
.full-width-content .items-wrp .single-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.full-width-content .items-wrp .single-item h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--Yellow);
  margin-bottom: 0;
}
.key-benefits {
  padding: 93px 0 55px;
  position: relative;
  background: #081F34B2;
}
.key-benefits h2.h3 {
  max-width: 752px;
  margin-bottom: 66px;
}
.key-benefits .benefits-wrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 35px;
  row-gap: 30px;
}
.key-benefits .benefits-wrp .benefit {
  width: calc((100% - (35px * 2))/3);
  display: flex;
  flex-direction: column;
}
.key-benefits .benefits-wrp .benefit h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.19px;
  color: var(--Yellow);
  margin-bottom: 32px;
}
.key-benefits .benefits-wrp .benefit p{
  color: #F2F2F2;
}
.key-benefits .btn-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
}
.about-hero {
  padding: 62px 0 137px;
  position: relative;
}
.about-hero .hero-content {
  max-width: 1121px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-hero .hero-content h1 {
  max-width: 882px;
  margin-inline: auto;
  margin-bottom: 7px;
}
.about-hero .hero-content h1 span{
  color: var(--Yellow);
}
.about-hero .hero-content .btn-wrp {
  display: flex;
  column-gap: 18px;
  margin-top: 19px;
}
.about-hero .stats-wrp {
  display: flex;
  column-gap: 27px;
  row-gap: 20px;
  flex-wrap: wrap;
  max-width: 801px;
  margin-inline: auto;
}
.about-hero .stats-wrp .info {
  width: calc((100% - (27px * 2))/3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 27.74px;
  border: 0.84px solid #1CBFD9;
  border-radius: 8.41px;
  background: #000323;
}
.about-hero .stats-wrp .info span.h2 {
  font-size: 40.35px;
  line-height: 40.35px;
  color: var(--Yellow);
  margin-bottom: 6px;
}
.about-hero .stats-wrp .info p {
  font-size: 15.13px;
  line-height: 23.54px;
  margin-bottom: 0;
}
.about-hero .bottom-wrp {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -27px;
  z-index: 1;
}
.our-story {
  padding: 101px 0 53px;
  position: relative;
}

.our-story .our-story-wrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.our-story .our-story-wrp .cnt-wrp {
  flex: 0 0 48.871%;
  max-width: 48.871%;
  width: 100%;
}
.our-story .our-story-wrp .cnt-wrp h2.h4 {
  margin-bottom: 31px;
  line-height: 100%;
}
.our-story .our-story-wrp .cnt-wrp p:last-child {
  margin-bottom: 0;
}
.our-story .our-story-wrp .img-wrp {
  flex: 0 0 47.364%;
  max-width: 47.364%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.our-story .our-story-wrp .img-wrp img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.our-reputation {
  padding: 53px 0 55px;
  position: relative;
}
.our-reputation .our-reputation-wrp{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; 
}
.our-reputation .our-reputation-wrp .cnt-wrp {
  flex: 0 0 47.364%;
  max-width: 47.364%;
  width: 100%;
}
.our-reputation .our-reputation-wrp .cnt-wrp h2.h4 {
  margin-bottom: 31px;
  line-height: 100%;
}
.our-reputation .our-reputation-wrp .cnt-wrp p:last-child {
  margin-bottom: 0;
}
.our-reputation .our-reputation-wrp .img-wrp {
  flex: 0 0 48.023%;
  max-width: 48.023%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.our-reputation .our-reputation-wrp .img-wrp img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.full-width-content.no-image {
  padding: 55px 0 47px;
  position: relative;
}
.full-width-content.no-image .top-wrp {
  text-align: center;
  margin-bottom: 45px;
}
.full-width-content.no-image .top-wrp h2.h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 16px;
}
.full-width-content.no-image .top-wrp p{
  margin-bottom: 0;
}
.full-width-content .items-wrp .single-item p {
  margin-bottom: 0;
}
.our-story .bg-image {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 1455px;
  background-image: url('../images/our-story-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
}
.our-story .bg-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #081F34;
  opacity: 0.92;
  inset: 0;
  z-index: -1;
}
.testimonials-section {
  background: #081F34B2;
  position: relative;
  padding: 110px 0 101px;
}
.testimonials-section .testimonial-top {
  margin-bottom: 40px;
}
.testimonials-section .testimonial-top h2{
  margin-bottom: 40px;
}
.testimonials-section .review-list {
  position: relative;
  margin: 0;
}

.testimonials-section .review-list .slick-list {
  padding: 0 16.7vw;
  overflow: hidden;
}

.testimonials-section .review-list .slick-track {
  display: flex;
  align-items: stretch;
  margin: 0;
}

.testimonials-section .review-wrp {
  margin: 0 12px;
  height: auto;
}
.testimonials-section .btn-wrp .neon-btn {
	position: relative;
	padding-right: 37px;
}
.testimonials-section .btn-wrp .neon-btn::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('../images/veiw-all-btn-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: contain;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
}

.testimonials-section .review-wrp .review-wrp-inn {
  background: var(--Dark-Blue);
  border: 1.5px solid var(--Yellow);
  border-radius: 10px;
  padding: 80px 25px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  box-sizing: border-box;
  transition: all 0.33s linear;
  position: relative;
}

.testimonials-section .review-wrp .review-wrp-inn p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 24px;
  flex: 1;
}
.testimonials-section .review-wrp .review-wrp-inn .rating-img {
  margin-bottom: 36px;
}
.testimonials-section .review-wrp .review-wrp-inn .rating-img img {
  width: auto;
  height: 16px;
  object-fit: contain;
  display: block;
}
.testimonials-section .review-wrp .review-wrp-inn p.reviewer-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: auto;
}
.testimonials-section .review-wrp .review-wrp-inn .logo-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.testimonials-section .review-wrp .review-wrp-inn .logo-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.testimonials-section .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 45px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: none !important;
}
.testimonials-section .slick-dots li {
  width: 16px;
  height: 4px;
  margin: 0;
  border-radius: 16px;
  transition: all 0.33s linear;
}
.testimonials-section .slick-dots li button {
  width: 100%;
  height: 100%;
  background: var(--White);
  border-radius: 16px;
  padding: 0;
  font-size: 0;
  transition: all 0.33s linear;
}
.testimonials-section .slick-dots li.slick-active {
  width: 32px;
}
.testimonials-section .slick-dots li.slick-active button {
  background: #1cbfd9;
}
.testimonials-section .review-list .slick-prev,
.testimonials-section .review-list .slick-next {
  display: none !important;
}
.testimonials-section .btn-wrp {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.services-promo {
  padding: 61px 0 64px;
  position: relative;
}
.services-promo .main-wrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.services-promo .main-wrp .cnt-wrp {
  flex: 0 0 44.794%;
  max-width: 44.794%;
  width: 100%;
}
.services-promo .main-wrp .img-wrp {
  flex: 0 0 50.324%;
  max-width: 50.324%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.services-promo .main-wrp .cnt-wrp h2{
  font-weight: 700;
}
.services-promo .main-wrp .cnt-wrp p{
  margin-bottom: 32px;
}
.services-promo .main-wrp .img-wrp img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.services-promo .cnt-wrp .btn-wrp {
  display: flex;
  column-gap: 12px;
}
.services-promo .cnt-wrp .btn-wrp a.neon-btn {
  min-width: 101px;
}
.services-promo .cnt-wrp .btn-wrp a.blue-btn {
  min-width: 151px;
}

/* // */
.full-width-content .items-wrp .single-item .img-wrp {
    flex-shrink: 0;
}

/* Section Intro */
.section-intro {
  padding: 24px 0;
  text-align: center;
}
.section-intro .container {
  background: var(--Dark-Blue);
  padding-top: 55px;
  padding-bottom: 55px;
}
.section-intro h2.h3 {
  font-family: var(--Font-Orbitron);
  color: var(--Yellow);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-intro p {
  font-family: var(--Font-Inter);
  color: var(--White);
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .section-intro .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-intro h2.h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .section-intro p {
    font-size: 14px;
  }
}

/* Warning Signs */
.warning-signs {
  padding: 55px 0 47px;
}
.warning-signs h2.h3 {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.02em;
  color: var(--Yellow);
  text-align: center;
  margin: 0;
}
.warning-signs .ws-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--Yellow);
  margin: 28px auto 0;
}
.warning-signs .ws-subtitle {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #F2F2F2;
  text-align: center;
  margin: 33px auto 0;
  max-width: 779px;
}
.warning-signs .signs-grid {
  margin-top: 43px;
  display: grid;
  grid-template-columns: 507.5fr 507.5fr;
  column-gap: 36px;
  row-gap: 20px;
}
.warning-signs .signs-grid .sign {
  display: flex;
  align-items: center;
  min-height: 78px;
  column-gap: 19px;
}
.warning-signs .signs-grid .sign .sign-icon {
  flex: 0 0 53px;
  width: 53px;
  height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--Yellow);
}
.warning-signs .signs-grid .sign .sign-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.warning-signs .signs-grid .sign p {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
  color: var(--Yellow);
  margin: 0;
}
@media (max-width: 767px) {
  .warning-signs {
    padding: 40px 0 32px;
  }
  .warning-signs h2.h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .warning-signs .ws-divider {
    margin-top: 24px;
  }
  .warning-signs .ws-subtitle {
    font-size: 15px;
    margin-top: 20px;
  }
  .warning-signs .signs-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .warning-signs .signs-grid .sign {
    column-gap: 18px;
    min-height: 0;
  }
  .warning-signs .signs-grid .sign .sign-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}

/* Gradient zone — continuous bg behind a group of stacked sections, with scattered yellow "stars" */
.gradient-zone {
  position: relative;
  z-index: 0;
  background: linear-gradient(180deg, #0A1628 0%, #004164 100%);
}
.gradient-zone::before,
.gradient-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-repeat: repeat;
}
/* Bright 6×6 stars */
.gradient-zone::before {
  background-image:
    radial-gradient(circle 3px at 11% 8%,  #EDE722 99%, transparent 100%),
    radial-gradient(circle 3px at 78% 14%, #EDE722 99%, transparent 100%),
    radial-gradient(circle 3px at 32% 26%, #EDE722 99%, transparent 100%),
    radial-gradient(circle 3px at 92% 41%, #EDE722 99%, transparent 100%),
    radial-gradient(circle 3px at 6% 58%,  #EDE722 99%, transparent 100%),
    radial-gradient(circle 3px at 54% 67%, #EDE722 99%, transparent 100%),
    radial-gradient(circle 3px at 84% 82%, #EDE722 99%, transparent 100%),
    radial-gradient(circle 3px at 24% 93%, #EDE722 99%, transparent 100%);
  background-size: 1200px 1200px;
}
/* Dim 3×3 stars at 40% opacity, denser pattern */
.gradient-zone::after {
  background-image:
    radial-gradient(circle 1.5px at 18% 5%,  rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 47% 12%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 72% 22%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 8% 34%,  rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 36% 44%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 88% 53%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 60% 62%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 22% 74%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 94% 81%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 42% 89%, rgba(237,231,34,0.4) 99%, transparent 100%),
    radial-gradient(circle 1.5px at 76% 96%, rgba(237,231,34,0.4) 99%, transparent 100%);
  background-size: 900px 900px;
}

/* Stars are unique to the city pages — suppress them on blog templates */
body.blog .gradient-zone::before,
body.blog .gradient-zone::after,
body.single .gradient-zone::before,
body.single .gradient-zone::after {
  display: none;
}

/* FAQ */
.faq {
  padding: 55px 0;
  text-align: center;
}
.faq .faq-eyebrow {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Yellow);
  margin: 0;
}
.faq .faq-heading {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--White);
  margin: 31px 0 0;
}
.faq .faq-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--Yellow);
  margin: 15px auto 0;
}
.faq .faq-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.faq .faq-item {
  background: rgba(0, 65, 100, 0.6);
  border: 1px solid rgba(237, 231, 34, 0.5);
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.faq .faq-item.is-open {
  background: var(--Blue);
}
.faq .faq-summary {
  appearance: none;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  min-height: 78px;
  color: inherit;
}
.faq .faq-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 43px;
  height: 30px;
  padding: 0 9px;
  border-radius: 6px;
  background: var(--Yellow);
  color: var(--Dark-Blue);
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.faq .faq-question {
  flex: 1 1 auto;
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--White);
  transition: color 0.25s ease;
}
.faq .faq-item.is-open .faq-question {
  color: #000323;
}
.faq .faq-toggle {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.faq .faq-toggle::before,
.faq .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--Yellow);
  border-radius: 1px;
}
.faq .faq-toggle::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
.faq .faq-toggle::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq .faq-item.is-open .faq-toggle::before {
  background: var(--Dark-Blue);
}
.faq .faq-item.is-open .faq-toggle::after {
  background: var(--Dark-Blue);
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.faq .faq-answer {
  display: none;
  padding: 0 28px 27px 87px;
}
.faq .faq-answer p {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--Dark-Blue);
  margin: 0;
}
.faq .faq-answer p + p { margin-top: 12px; }
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
  .faq .faq-heading {
    font-size: 30px;
  }
  .faq .faq-summary {
    padding: 18px 18px;
    gap: 14px;
    min-height: 0;
  }
  .faq .faq-question {
    font-size: 16px;
  }
  .faq .faq-answer {
    padding: 0 18px 20px 66px;
  }
}

/* CTA Banner */
.cta-banner {
  padding: 25px 0;
}
.cta-banner .cb-card {
  background: var(--Yellow);
  border-radius: 12px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 40px;
  align-items: center;
}
.cta-banner .cb-copy {
  min-width: 0;
}
.cta-banner .cb-eyebrow {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Dark-Blue);
  margin: 0;
}
.cta-banner .cb-heading {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 42px;
  line-height: 46px;
  letter-spacing: 0.02em;
  color: var(--Dark-Blue);
  margin: 38px 0 0;
}
.cta-banner .cb-body {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--Dark-Blue);
  margin: 16px 0 0;
}
.cta-banner .cb-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
}
.cta-banner .cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 24px;
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--Dark-Blue);
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cta-banner .cb-btn--primary {
  background: #1CBFD9;
  border: 2px solid #1CBFD9;
}
.cta-banner .cb-btn--primary:hover {
  background: var(--Dark-Blue);
  color: var(--Yellow);
  border-color: var(--Dark-Blue);
}
.cta-banner .cb-btn--ghost {
  background: transparent;
  border: 2px solid var(--Dark-Blue);
}
.cta-banner .cb-btn--ghost:hover {
  background: var(--Dark-Blue);
  color: var(--Yellow);
}
@media (max-width: 991px) {
  .cta-banner .cb-card {
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding: 40px 32px;
  }
  .cta-banner .cb-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cta-banner .cb-btn {
    min-width: 0;
    flex: 1 1 auto;
  }
}
@media (max-width: 640px) {
  .cta-banner .cb-heading {
    font-size: 30px;
    line-height: 36px;
  }
  .cta-banner .cb-actions {
    flex-direction: column;
  }
  .cta-banner .cb-btn {
    width: 100%;
  }
}

/* Risk of Delay */
.risk-of-delay {
  padding: 55px 0 47px;
  text-align: center;
}
.risk-of-delay .rd-eyebrow {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Yellow);
  margin: 0;
}
.risk-of-delay .rd-heading {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--White);
  margin: 33px 0 0;
}
.risk-of-delay .rd-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--Yellow);
  margin: 25px auto 0;
}
.risk-of-delay .rd-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 507.5fr 507.5fr;
  column-gap: 36px;
  row-gap: 20px;
  text-align: left;
}
.risk-of-delay .rd-grid .rd-item {
  display: flex;
  align-items: center;
  min-height: 78px;
  column-gap: 24px;
}
.risk-of-delay .rd-grid .rd-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--Yellow);
}
.risk-of-delay .rd-grid .rd-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.risk-of-delay .rd-grid .rd-item p {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--Yellow);
  margin: 0;
}
@media (max-width: 767px) {
  .risk-of-delay {
    padding: 40px 0 32px;
  }
  .risk-of-delay .rd-heading {
    font-size: 26px;
  }
  .risk-of-delay .rd-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .risk-of-delay .rd-grid .rd-item {
    column-gap: 18px;
    min-height: 0;
  }
  .risk-of-delay .rd-grid .rd-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
}

/* Why Professional */
.why-professional {
  padding: 55px 0;
}
.why-professional h2.h3 {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.02em;
  color: var(--Yellow);
  text-align: center;
  margin: 0;
}
.why-professional .wp-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--Yellow);
  margin: 28px auto 0;
}
.why-professional .wp-subtitle {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #F2F2F2;
  text-align: center;
  margin: 33px auto 0;
  max-width: 632px;
}
.why-professional .wp-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 507.5fr 507.5fr;
  column-gap: 36px;
  row-gap: 20px;
}
.why-professional .wp-grid .wp-item {
  display: flex;
  align-items: center;
  min-height: 78px;
  column-gap: 24px;
}
.why-professional .wp-grid .wp-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--Yellow);
}
.why-professional .wp-grid .wp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.why-professional .wp-grid .wp-item p {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--Yellow);
  margin: 0;
}
.why-professional .wp-callout {
  margin-top: 37px;
  background: var(--Yellow);
  border-radius: 12px;
  padding: 62px 50px 70px;
  display: flex;
  align-items: center;
  column-gap: 48px;
}
.why-professional .wp-metric {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--Dark-Blue);
  flex: 0 0 auto;
}
.why-professional .wp-callout-content {
  flex: 1;
  min-width: 0;
}
.why-professional .wp-source {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Dark-Blue);
  margin: 0;
}
.why-professional .wp-callout-text {
  font-family: var(--Font-Inter);
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0;
  color: var(--Dark-Blue);
  margin: 21px 0 0;
}
@media (max-width: 767px) {
  .why-professional {
    padding: 40px 0;
  }
  .why-professional h2.h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .why-professional .wp-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .why-professional .wp-grid .wp-item {
    column-gap: 18px;
    min-height: 0;
  }
  .why-professional .wp-grid .wp-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .why-professional .wp-callout {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px 40px;
    column-gap: 0;
    row-gap: 18px;
    margin-top: 28px;
  }
  .why-professional .wp-metric {
    font-size: 80px;
  }
  .why-professional .wp-callout-text {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Customer Story */
.customer-story {
  padding: 25px 0;
}
.customer-story .cs-card {
  background: var(--Blue);
  border: 1.5px solid rgba(237, 231, 34, 0.4);
  border-radius: 9.74px;
  padding: 62px 50px 60px;
}
.customer-story .cs-head {
  text-align: center;
}
.customer-story .cs-eyebrow {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Dark-Blue);
  margin: 0;
}
.customer-story .cs-heading {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.02em;
  color: #000323;
  margin: 28px 0 0;
}
.customer-story .cs-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--Yellow);
  margin: 28px auto 0;
}
.customer-story .cs-body {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 495.5fr 495.5fr;
  column-gap: 40px;
  align-items: start;
}
.customer-story .cs-quote-box {
  background: var(--Yellow);
  border-radius: 12px;
  padding: 32px;
  min-height: 348px;
  display: flex;
  flex-direction: column;
}
.customer-story .cs-quote-mark {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--Dark-Blue);
  display: block;
  height: 64px;
}
.customer-story .cs-quote {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0;
  color: var(--Dark-Blue);
  margin: 12px 0 0;
}
.customer-story .cs-quote-sep {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--Dark-Blue);
  margin: 24px 0 0;
}
.customer-story .cs-name {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--Dark-Blue);
  margin: 24px 0 0;
}
.customer-story .cs-customer-title {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--Dark-Blue);
  margin: 14px 0 0;
}
.customer-story .cs-story {
  padding-top: 30px;
}
.customer-story .cs-section-label {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000323;
  margin: 0;
}
.customer-story .cs-story-body {
  margin-top: 28px;
}
.customer-story .cs-story-body p {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--Dark-Blue);
  margin: 0;
}
.customer-story .cs-story-body p + p {
  margin-top: 18px;
}
.customer-story .cs-result-label {
  font-size: 16px;
  margin-top: 48px;
  text-align: center;
}
.customer-story .cs-results {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15.5px;
  row-gap: 15.5px;
}
.customer-story .cs-result {
  background: var(--Dark-Blue);
  border: 1.5px solid var(--Yellow);
  border-radius: 7.25px;
  min-height: 70.5px;
  padding: 0 15.25px;
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.customer-story .cs-check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: var(--Yellow);
  color: var(--Dark-Blue);
  font-family: var(--Font-Inter);
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.customer-story .cs-result-text {
  font-family: var(--Font-Inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--White);
}
@media (max-width: 991px) {
  .customer-story .cs-card { padding: 48px 28px 44px; }
  .customer-story .cs-body { grid-template-columns: 1fr; row-gap: 28px; }
  .customer-story .cs-quote-box { min-height: 0; }
  .customer-story .cs-story { padding-top: 0; }
  .customer-story .cs-results { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .customer-story .cs-heading { font-size: 28px; line-height: 36px; }
  .customer-story .cs-quote { font-size: 18px; line-height: 28px; }
  .customer-story .cs-quote-mark { font-size: 72px; height: 48px; }
  .customer-story .cs-results { grid-template-columns: 1fr; }
}

/* Performance Verification */
.performance-verification {
  padding: 55px 0;
}
.performance-verification .pv-head {
  text-align: center;
}
.performance-verification h2.h3 {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.02em;
  color: var(--Yellow);
  margin: 0;
}
.performance-verification .pv-eyebrow {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--White);
  margin: 10px 0 0;
  text-transform: uppercase;
}
.performance-verification .pv-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--Yellow);
  margin: 28px auto 0;
}
.performance-verification .pv-intro {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #F2F2F2;
  margin: 33px auto 0;
  max-width: 684px;
}
.performance-verification .pv-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17.5px;
}
.performance-verification .pv-card {
  background: var(--Dark-Blue);
  border: 1.5px solid var(--Yellow);
  border-radius: 8.99px;
  min-height: 238.5px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.performance-verification .pv-icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  color: var(--Yellow);
}
.performance-verification .pv-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.performance-verification .pv-card-title {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--White);
  margin: 0;
}
.performance-verification .pv-card-desc {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0;
  color: #F2F2F2;
  margin: 0;
}
.performance-verification .pv-footer {
  margin-top: 25px;
  background: var(--Yellow);
  border: 1px solid var(--Dark-Blue);
  border-radius: 7.5px;
  padding: 28px 32px;
  text-align: center;
}
.performance-verification .pv-footer p {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--Dark-Blue);
  margin: 0;
  max-width: 768px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .performance-verification .pv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .performance-verification {
    padding: 40px 0;
  }
  .performance-verification h2.h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .performance-verification .pv-eyebrow {
    font-size: 14px;
  }
  .performance-verification .pv-intro {
    font-size: 15px;
    margin-top: 24px;
  }
  .performance-verification .pv-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }
  .performance-verification .pv-footer {
    padding: 22px 18px;
    margin-top: 22px;
  }
  .performance-verification .pv-footer p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Installation Approach */
.installation-approach {
  padding: 55px 0 47px;
  position: relative;
}
.installation-approach h2.h3 {
  font-family: var(--Font-Orbitron);
  color: var(--Yellow);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
.installation-approach .steps-wrp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 19.8px;
  counter-reset: ia-step;
}
.installation-approach .steps-wrp .step {
  background: var(--Dark-Blue);
  border: 1.5px solid var(--Yellow);
  border-radius: 9px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  counter-increment: ia-step;
}
.installation-approach .steps-wrp .step .step-number {
  font-family: var(--Font-Orbitron);
  color: var(--Yellow);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 22px;
  display: block;
}
.installation-approach .steps-wrp .step .step-number::before {
  content: counter(ia-step, decimal-leading-zero);
}
.installation-approach .steps-wrp .step p {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.01em;
  color: var(--White);
  margin-bottom: 0;
}
.installation-approach .footer-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--Font-Inter);
  font-size: 16px;
  color: #F2F2F2;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .installation-approach .steps-wrp {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .installation-approach {
    padding: 40px 0 32px;
  }
  .installation-approach h2.h3 {
    font-size: 18px;
  }
  .installation-approach .steps-wrp {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .installation-approach .steps-wrp .step {
    padding: 22px 14px;
  }
  .installation-approach .steps-wrp .step .step-number {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .installation-approach .footer-note {
    font-size: 14px;
    margin-top: 28px;
  }
}
/* =====================================================
   Blog archive + single post
   ===================================================== */

/* Hero (shared shell) */
.blog-hero,
.single-post-hero {
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
}
.blog-hero-eyebrow,
.single-post-cat {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Yellow);
  margin: 0;
}
.single-post-cat {
  display: inline-block;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(237, 231, 34, 0.4);
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.single-post-cat:hover {
  background: var(--Yellow);
  color: var(--Dark-Blue);
}
.blog-hero-heading,
.single-post-title {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--White);
  margin: 26px 0 32px;
}
.blog-hero-heading { font-size: 56px; line-height: 1.1; }
.single-post-title { font-size: 48px; line-height: 1.15; max-width: 900px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }
.blog-hero-divider,
.related-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--Yellow);
  margin: 28px auto 0;
}
.blog-hero-intro {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #F2F2F2;
  max-width: 720px;
  margin: 28px auto 0;
}
.single-post-meta {
  margin-top: 22px;
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 14px;
  color: #F2F2F2;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.single-post-meta-sep { opacity: 0.5; }

/* Featured image on single */
.single-post-feature {
  margin-top: 44px;
}
.single-post-feature .container > img,
.single-post-feature .container > a img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(237, 231, 34, 0.25);
}

/* Category filter on archive */
.blog-filter {
  padding: 40px 0 0;
}
.blog-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.blog-cat a,
.blog-cat button {
  appearance: none;
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--White);
  background: rgba(0, 65, 100, 0.6);
  border: 1px solid rgba(237, 231, 34, 0.4);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-cat a:hover,
.blog-cat button:hover { background: var(--Yellow); color: var(--Dark-Blue); border-color: var(--Yellow); }
.blog-cat.is-active a,
.blog-cat.is-active button { background: var(--Yellow); color: var(--Dark-Blue); border-color: var(--Yellow); }

/* Grid */
.blog-grid-sec { padding: 40px 0 80px; }
.blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: rgba(0, 65, 100, 0.6);
  border: 1px solid rgba(237, 231, 34, 0.5);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--Yellow); background: var(--Blue); }
.post-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--Dark-Blue);
  overflow: hidden;
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-media-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #004164 0%, #0A1628 100%);
}
.post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--Yellow);
  color: var(--Dark-Blue);
  padding: 5px 10px;
  border-radius: 4px;
}
.post-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-card-date {
  font-family: var(--Font-Inter);
  font-size: 13px;
  color: #F2F2F2;
  opacity: 0.85;
}
.post-card-title {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--White);
  margin: 0;
}
.post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-card:hover .post-card-title a { color: var(--Yellow); }
.post-card-excerpt {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: #F2F2F2;
  margin: 0;
}
.post-card-link {
  margin-top: auto;
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-card-link .post-card-arrow {
  transition: transform 0.25s ease;
}
.post-card:hover .post-card-link .post-card-arrow { transform: translateX(4px); }

/* Pagination */
.blog-pagination {
  margin-top: 56px;
}
.blog-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  color: var(--White);
  background: rgba(0, 65, 100, 0.6);
  border: 1px solid rgba(237, 231, 34, 0.4);
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.blog-pagination a:hover { background: var(--Yellow); color: var(--Dark-Blue); }
.blog-pagination .current { background: var(--Yellow); color: var(--Dark-Blue); border-color: var(--Yellow); }

.blog-empty {
  text-align: center;
  font-family: var(--Font-Inter);
  font-size: 18px;
  color: #F2F2F2;
  padding: 80px 0;
}

/* =====================================================
   Single post — prose body, share row, related
   ===================================================== */

.single-post-zone { padding-top: 60px; }
.single-post-body { padding: 0 0 60px; }

.single-post-prose {
  font-family: var(--Font-Inter);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: #F2F2F2;
  max-width: 760px;
  margin: 0 auto;
}
.single-post-prose > * + * { margin-top: 22px; }
.single-post-prose p { margin: 0; }
.single-post-prose h2,
.single-post-prose h3,
.single-post-prose h4 {
  font-family: var(--Font-Orbitron);
  color: var(--Yellow);
  letter-spacing: 0.02em;
  margin: 48px 0 16px;
  line-height: 1.25;
}
.single-post-prose h2 { font-size: 30px; font-weight: 900; }
.single-post-prose h3 { font-size: 22px; font-weight: 700; }
.single-post-prose h4 { font-size: 18px; font-weight: 700; color: var(--White); }
.single-post-prose ul,
.single-post-prose ol {
  margin: 0;
  padding-left: 22px;
}
.single-post-prose ul li,
.single-post-prose ol li {
  list-style: disc;
  margin-top: 8px;
}
.single-post-prose ol li { list-style: decimal; }
.single-post-prose a {
  color: var(--Yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.single-post-prose a:hover { color: var(--Blue); }
.single-post-prose blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  border-left: 4px solid var(--Yellow);
  background: rgba(0, 65, 100, 0.45);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 19px;
  color: var(--White);
}
.single-post-prose blockquote p { margin: 0; }
.single-post-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-post-prose figure { margin: 32px 0; }
.single-post-prose figcaption {
  font-size: 13px;
  color: #F2F2F2;
  opacity: 0.7;
  text-align: center;
  margin-top: 8px;
}
.single-post-prose code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--Yellow);
}
.single-post-prose pre {
  background: #0A1628;
  border: 1px solid rgba(237, 231, 34, 0.2);
  border-radius: 8px;
  padding: 18px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}
.single-post-prose pre code {
  background: transparent;
  padding: 0;
  color: #F2F2F2;
}

/* Share row */
.single-post-share {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(237, 231, 34, 0.25);
  border-bottom: 1px solid rgba(237, 231, 34, 0.25);
  display: flex;
  align-items: center;
  gap: 18px;
}
.single-post-share-label {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Yellow);
}
.single-post-share ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 65, 100, 0.6);
  border: 1px solid rgba(237, 231, 34, 0.4);
  color: var(--Yellow);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.share-link:hover { background: var(--Yellow); color: var(--Dark-Blue); transform: translateY(-2px); }
.share-link svg { width: 18px; height: 18px; }
.share-copy { padding: 0; }
.share-copy-feedback {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background: var(--Yellow);
  color: var(--Dark-Blue);
  font-family: var(--Font-Orbitron);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.share-copy.is-copied .share-copy-feedback { opacity: 1; }

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 36px auto 0;
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Yellow);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.back-to-blog:hover { color: var(--Blue); transform: translateX(-4px); }
.single-post-body .row { display: flex; justify-content: center; }
.single-post-body .col-lg-8 { display: flex; flex-direction: column; }

/* Related posts */
.related-posts { padding: 24px 0 80px; text-align: center; }
.related-eyebrow {
  font-family: var(--Font-Orbitron);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--Yellow);
  margin: 0;
}
.related-heading {
  font-family: var(--Font-Orbitron);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--White);
  margin: 22px 0 0;
}
.related-grid { margin-top: 40px; text-align: left; }

/* Responsive */
@media (max-width: 991px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .blog-hero-heading { font-size: 42px; }
  .single-post-title { font-size: 36px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-hero, .single-post-hero { padding: 60px 0 16px; }
  .blog-hero-heading { font-size: 32px; }
  .single-post-title { font-size: 26px; }
  .single-post-feature .container > img { max-height: 280px; border-radius: 8px; }
  .blog-grid, .related-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-grid-sec { padding: 28px 0 56px; }
  .blog-filter { padding: 28px 0 0; }
  .single-post-prose { font-size: 16px; line-height: 1.7; }
  .single-post-prose h2 { font-size: 24px; margin-top: 36px; }
  .single-post-prose h3 { font-size: 19px; }
  .single-post-share { flex-direction: column; align-items: flex-start; gap: 12px; }
  .related-heading { font-size: 26px; }
  .blog-pagination ul { gap: 6px; }
  .blog-pagination a, .blog-pagination span { min-width: 36px; height: 36px; padding: 0 8px; font-size: 13px; }
}

/* =====================================================
   CC REDESIGN — Iteration 1 (scoped to body.cc-redesign)
   ===================================================== */

/* Hero — adds the intro paragraph below the heading.
   .ih-intro is a new element that only renders where the ih_intro field is
   filled (Atwater pilot), so it's safe to style un-gated and rollout-ready. */
.inner-hero .cnt-wrp .ih-intro {
  margin-top: 24px;
  max-width: 560px;
}
.inner-hero .cnt-wrp .ih-intro p {
  font-family: var(--Font-Open);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--White);
  margin: 0;
}
.inner-hero .cnt-wrp .ih-intro p + p {
  margin-top: 16px;
}

/* Services Offered — redesign. Two layout variants share the same block:
   .variant-cards (HVAC: bordered card grid, centered) and
   .variant-columns (Electrical: plain columns on a translucent panel, left-aligned). */
body.cc-redesign .services-offered .col-md-12 {
  max-width: none;
}
body.cc-redesign .services-offered h2.h3 {
  letter-spacing: 0.02em;
}
body.cc-redesign .services-offered h2.h3 span {
  display: block;
  color: var(--Yellow);
}
body.cc-redesign .services-offered .col-md-12 > p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
body.cc-redesign .services-offered .col-md-12 > p a:hover {
  color: var(--Yellow);
}

/* variant: cards (HVAC) */
body.cc-redesign .services-offered.variant-cards .col-md-12 > p {
  max-width: 880px;
  color: #F2F2F2;
}
body.cc-redesign .services-offered.variant-cards .services-wrp {
  column-gap: 18.5px;
  row-gap: 25.5px;
}
body.cc-redesign .services-offered.variant-cards .services-wrp .service {
  width: calc((100% - (18.5px * 2)) / 3);
  padding: 48px 28px;
}
@media (max-width: 991px) {
  body.cc-redesign .services-offered.variant-cards .services-wrp .service {
    width: calc((100% - 18.5px) / 2);
  }
}
@media (max-width: 640px) {
  body.cc-redesign .services-offered.variant-cards .services-wrp .service {
    width: 100%;
  }
}

/* variant: columns (Electrical) — plain columns, left-aligned, on page background */
body.cc-redesign .services-offered.variant-columns h2.h3 {
  text-align: left;
}
body.cc-redesign .services-offered.variant-columns .col-md-12 > p {
  text-align: left;
  margin-inline: 0;
  max-width: none;
  color: var(--White);
}
body.cc-redesign .services-offered.variant-columns .services-wrp {
  margin-top: 44px;
  column-gap: 28px;
  row-gap: 40px;
}
body.cc-redesign .services-offered.variant-columns .services-wrp .service {
  width: calc((100% - (28px * 2)) / 3);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  align-items: flex-start;
  text-align: left;
}
body.cc-redesign .services-offered.variant-columns .services-wrp .service h4 {
  color: var(--Yellow);
  font-size: 18px;
  letter-spacing: -0.19px;
  text-align: left;
  margin-bottom: 18px;
}
body.cc-redesign .services-offered.variant-columns .services-wrp .service h4::after {
  content: ':';
}
body.cc-redesign .services-offered.variant-columns .services-wrp .service p {
  text-align: left;
}
body.cc-redesign .services-offered.variant-columns .btn-wrp {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 991px) {
  body.cc-redesign .services-offered.variant-columns .services-wrp .service {
    width: calc((100% - 28px) / 2);
  }
}
@media (max-width: 640px) {
  body.cc-redesign .services-offered.variant-columns .services-wrp .service {
    width: 100%;
  }
}

/* Solar — left-image-right-content with a full-width top header + image/list row.
   Scoped to the lirc block that is NOT the left-content-right-image (.lcri-sec). */
body.cc-redesign .lirc-sec:not(.lcri-sec) .lirc-top {
  margin-bottom: 40px;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .lirc-top h2.h3 {
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .lirc-top-intro p {
  font-family: var(--Font-Open);
  font-size: 16px;
  line-height: 30px;
  color: var(--White);
  margin: 0;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .lirc-top-intro a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .lirc-top-intro a:hover {
  color: var(--Yellow);
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .main-wrp {
  align-items: flex-start;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .main-wrp .img-wrp {
  aspect-ratio: 546 / 479;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .cnt-wrp > div p {
  font-family: var(--Font-Open);
  font-size: 16px;
  line-height: 26px;
  color: var(--White);
  max-width: none;
  margin-bottom: 22px;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .cnt-wrp > div p:last-child {
  margin-bottom: 0;
}
body.cc-redesign .lirc-sec:not(.lcri-sec) .cnt-wrp > div p strong {
  color: var(--Yellow);
  font-weight: 700;
}
@media (max-width: 767px) {
  body.cc-redesign .lirc-sec:not(.lcri-sec) .main-wrp {
    flex-direction: column;
    row-gap: 28px;
  }
  body.cc-redesign .lirc-sec:not(.lcri-sec) .main-wrp .img-wrp,
  body.cc-redesign .lirc-sec:not(.lcri-sec) .main-wrp .cnt-wrp {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Why Atwater Homeowners Choose (key-benefits) — 2-col, left-aligned, no panel,
   no mascot/icons. Reuses the native yellow h5 + #F2F2F2 desc. */
body.cc-redesign .key-benefits {
  background: transparent;
  padding: 55px 0;
}
body.cc-redesign .key-benefits h2.h3 {
  text-align: left;
  letter-spacing: 0.02em;
  max-width: none;
  margin-bottom: 44px;
}
body.cc-redesign .key-benefits .benefits-wrp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: start;
  column-gap: 64px;
  row-gap: 40px;
}
body.cc-redesign .key-benefits .benefits-wrp .benefit {
  width: auto;
}
body.cc-redesign .key-benefits .benefits-wrp .benefit h5 {
  margin-bottom: 14px;
}
body.cc-redesign .key-benefits .benefits-wrp .benefit h5::after {
  content: ':';
}
body.cc-redesign .key-benefits .benefits-wrp .benefit p {
  line-height: 26px;
}
body.cc-redesign .key-benefits .btn-wrp {
  justify-content: flex-start;
  margin-top: 48px;
}
/* Mascot peeking in from the right (decorative). Positioned relative to the
   full-width .key-benefits section (not the container) so it bleeds to the
   screen edge like the CTA block. The PNG's left half is transparent so the
   right-column text stays readable beneath it; body overflow-x clips the bleed. */
body.cc-redesign .key-benefits .kb-mascot {
  position: absolute;
  top: 40px;
  right: 0;
  width: clamp(280px, 30vw, 440px);
  z-index: 0;
  pointer-events: none;
}
body.cc-redesign .key-benefits .kb-mascot img {
  display: block;
  width: 100%;
  height: auto;
}
body.cc-redesign .key-benefits h2.h3,
body.cc-redesign .key-benefits .benefits-wrp,
body.cc-redesign .key-benefits .btn-wrp {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  body.cc-redesign .key-benefits .kb-mascot {
    display: none;
  }
}
@media (max-width: 640px) {
  body.cc-redesign .key-benefits .benefits-wrp {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

/* Maintenance (full-width-content) — drop the per-item mini-mascot/service icons. */
body.cc-redesign .full-width-content .items-wrp .single-item .img-wrp {
  display: none;
}

/* Maintenance Plans (repurposed cta-banner) — cyan centered card with bullet list. */
body.cc-redesign .cta-banner .cb-card {
  background: var(--Blue);
  grid-template-columns: 1fr;
  text-align: center;
  padding: 50px 60px 56px;
}
body.cc-redesign .cta-banner .cb-heading {
  margin: 0 auto;
  max-width: 760px;
}
body.cc-redesign .cta-banner .cb-body {
  margin: 18px auto 0;
  max-width: 560px;
}
body.cc-redesign .cta-banner .cb-list {
  list-style: disc;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding-left: 24px;
  color: var(--Dark-Blue);
  font-family: var(--Font-Inter);
  font-size: 17px;
  line-height: 1.85;
}
body.cc-redesign .cta-banner .cb-list li {
  list-style: disc;
  color: var(--Dark-Blue);
}
body.cc-redesign .cta-banner .cb-actions {
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
body.cc-redesign .cta-banner .cb-btn {
  min-width: 365px;
}
body.cc-redesign .cta-banner .cb-btn--primary {
  background: var(--Yellow);
  border-color: var(--Yellow);
  color: var(--Dark-Blue);
}
body.cc-redesign .cta-banner .cb-btn--primary:hover {
  background: var(--Dark-Blue);
  border-color: var(--Dark-Blue);
  color: var(--Yellow);
}
body.cc-redesign .cta-banner .cb-btn--ghost {
  border-color: var(--Dark-Blue);
  color: var(--Dark-Blue);
}
@media (max-width: 640px) {
  body.cc-redesign .cta-banner .cb-card { padding: 36px 22px 40px; }
  body.cc-redesign .cta-banner .cb-btn { min-width: 0; width: 100%; }
}

/* Textured dark backdrop behind ONLY the first section after the hero
   (the HVAC services-offered / variant-cards). Contained to that section. */
body.cc-redesign .services-offered.variant-cards {
  position: relative;
  z-index: 0;
  background-image: url('../images/how-it-bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
body.cc-redesign .services-offered.variant-cards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #081F34;
  opacity: 0.92;
  z-index: -1;
}
body.cc-redesign .services-offered.variant-cards .container {
  position: relative;
  z-index: 1;
}
/* old per-block texture no longer needed on the redesign page */
body.cc-redesign .lirc-sec.lcri-sec .bg-image {
  display: none;
}


/* ===== Social icon recolor: #1DBCD5 default, #004164 hover (added) ===== */
.social-icons .social-icons-in a img,
.social-icons .social-icons-in a img.hover {
  display: none;
}
.social-icons .social-icons-in a {
  background-color: #1DBCD5;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.social-icons .social-icons-in a:hover {
  background-color: #004164;
}
.social-icons .social-icons-in a[href*="facebook"] {
  -webkit-mask-image: url(/wp-content/uploads/2026/04/facebook-icon.svg);
  mask-image: url(/wp-content/uploads/2026/04/facebook-icon.svg);
}
.social-icons .social-icons-in a[href*="instagram"] {
  -webkit-mask-image: url(/wp-content/uploads/2026/04/Instagram.svg);
  mask-image: url(/wp-content/uploads/2026/04/Instagram.svg);
}
.social-icons .social-icons-in a[href*="tiktok"] {
  -webkit-mask-image: url(/wp-content/uploads/2026/04/tiktok.svg);
  mask-image: url(/wp-content/uploads/2026/04/tiktok.svg);
}
.social-icons .social-icons-in a[href*="linkedin"] {
  -webkit-mask-image: url(/wp-content/uploads/2026/05/linkedin-icon.svg);
  mask-image: url(/wp-content/uploads/2026/05/linkedin-icon.svg);
}


/* ===== Layout width standardization (added) =====
   Canonical content container = 1178px (matches the site's default .container).
   These sections used non-standard max-widths, so their content left edge did
   not line up with the rest of the site. */
.hero-home .container,
.our-service .container,
.areas-we-serve .container,
.inner-hero .container,
.key-benefits .container,
.full-width-content .container,
.our-story .container,
.our-reputation .container,
.services-promo .container {
  max-width: 1178px;
}

/* "Ready to Launch?" CTA band: content was pushed right by a fixed padding-left
   tuned to an 886px container. Center it in the standard 1178px container so it
   aligns with the columns above. Rocket image is absolutely positioned to the
   section's right edge and is unaffected. Desktop only. */
@media (min-width: 1200px) {
  .cta {
    padding-left: 0;
  }
  .cta .main-wrp {
    max-width: 1178px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* LMH-header-center: center the main menu on the page regardless of logo/button widths (desktop only) */
@media (min-width: 1200px) {
  header .top-header {
    padding-left: 21px;
    padding-right: 21px;
  }
  header .top-header .left-wrp,
  header .top-header .right-wrp {
    flex: 1 1 0;
  }
  header .top-header .middle-wrp {
    flex: 0 1 auto;
  }
  header .top-header .right-wrp {
    display: flex;
    justify-content: flex-end;
  }
}

/* LMH-process-3col: Installation Approach process grid 3 across, full width (desktop) */
@media (min-width: 992px) {
  .installation-approach .steps-wrp {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* LMH-ghost-hover-fix: keep Call Now (ghost) text visible on hover */
body.cc-redesign .cta-banner .cb-btn--ghost:hover {
  color: var(--Yellow);
}

/* LMH-logo-fit: stop the header logo overflowing the band on desktop (negative margin caused the bottom to spill below the header) */
@media (min-width: 1200px) {
  header .logo { margin-bottom: 0; }
}


/* === Migrated from Customizer Additional CSS (non-media rules) — 2026-06-02 === */
/* Fix: slick slides collapse at >1440 viewports because .slick-track is
     display:flex without locking slide widths against shrinking. */
  .reviews-sec .review-list .slick-slide,
  .testimonials-section .review-list .slick-slide {
min-width:300px
 }

/* DESKTOP dropdowns */
  header .main_menu .dropdown-toggle::after { display: none; }      /* kill bootstrap caret */
  header .main_menu > ul > li.menu-item-has-children > a { position: relative; }
  header .main_menu > ul > li.menu-item-has-children > a::after {   /* our chevron */
    content: ""; display: block; position: absolute; top: 50%; right: 7px;
    translate: 0% -50%; width: 7px; height: 7px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); transition: transform 0.28s ease;
  }
  header .main_menu > ul > li.menu-item-has-children:hover > a::after { transform: rotate(225deg);
  }

  header .main_menu ul ul {                                          /* glassy panel */
    padding: 8px; border-radius: 12px;
    background: linear-gradient(180deg, rgba(10,22,40,.98) 0%, rgba(2,40,64,.98) 100%);
    border: 1px solid rgba(29,188,213,.30);
    box-shadow: 0 18px 48px rgba(0,0,0,.55), 0 0 26px rgba(29,188,213,.12);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transform: translateY(8px); transition: opacity .22s ease, transform .22s ease, visibility .22s
  ease;
  }
  header .main_menu li:hover > ul { transform: translateY(0); }      /* animate in */

  header .main_menu ul ul li a,                                      /* item type */
  header .main_menu > ul > li > ul li a {
    position: relative; border-radius: 8px; padding: 13px 18px !important;
    color: var(--White) !important; font-family: var(--Font-Orbitron) !important;
    font-weight: 600 !important; font-size: 14px !important;
    letter-spacing: .04em !important; text-transform: uppercase !important;
    transition: color .2s ease, background .2s ease, padding .2s ease;
  }
  header .main_menu ul ul li + li > a::before {                     /* divider */
    content: ""; position: absolute; top: 0; left: 14px; right: 14px;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  header .main_menu ul ul li > a::after {                           /* cyan accent bar */
    content: ""; position: absolute; left: 8px; top: 50%; width: 3px; height: 56%;
    border-radius: 3px; background: var(--Blue);
    transform: translateY(-50%) scaleY(0); transition: transform .2s ease;
  }
  header .main_menu ul ul li:hover > a,                             /* hover */
  header .main_menu > ul > li > ul > li:hover a {
    background: rgba(29,188,213,.14) !important; color: var(--Yellow) !important;
    padding-left: 24px !important;
  }
  header .main_menu ul ul li:hover > a::after { transform: translateY(-50%) scaleY(1); }

/* Location service cards - white text */
.service-link,
.service-link:visited {
	    color: #ffffff !important;
}

.service h4 a {
	    color: inherit !important;
}

/* Center the warning signs grid section */
.warning-signs .signs-grid {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

/* Center the 4 performance verification boxes */
.performance-verification .pv-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Fix: inner-hero character image - fill hero height, don't overlap text
   height-driven so both tall (AC guy 1:1) and wide (electrical guy 1.28:1) look proportional
   max-width prevents overlap with text column */
.inner-hero .inner-hero-wrp .img-wrp {
  width: auto;
  height: calc(100% - 67px);
  max-width: 48%;
  min-width: 380px;
}
.inner-hero .inner-hero-wrp .img-wrp img {
  object-fit: contain;
  object-position: bottom right;
  width: auto;
  height: 100%;
  max-width: 100%;
}

/* Increase spacing to the right of the Call Us button in the main nav */
header .btn-container {
    margin-right: 20px;
}

/* Hero gradient - moved up for better title contrast */
.hero-home .bg-video::before {
	  background: linear-gradient(
		    rgba(9, 25, 44, 0.6) 0%,
		    rgba(2, 26, 49, 0.85) 40%,
		    rgb(0, 26, 51) 100%
		  ) !important;
}



/* Hide "View All Coupons" button/link in the coupons section */
section.coupons .btn-wrp .neon-btn { display: none !important; }
