/****************************************************
****** HTML, SITEWIDE  ******************************
****************************************************/
html {
  overflow-x: hidden;
}

body {
  font-family: "Rethink Sans", sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
}

body.admin-bar .sticky {
  margin-top: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
img.no-full {
  max-width: 100%;
  width: unset;
  height: unset;
}

/****************************************************
****** CONTAINERS/WRAPPERS  ******************************
****************************************************/
#main-content {
  position: relative;
  z-index: 1;
}
#main-content p a {
  text-decoration: underline;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.wrapper .wrapper-inner {
  padding-left: 30px;
  padding-right: 30px;
}

/***  HERO WRAPPER ***/
.hero-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.hero-wrapper .wrapper-inner {
  padding-left: 0;
  padding-right: 0;
}

/***  WRAPPER WIDE ***/
.wrapper.wide {
  max-width: 1700px;
}
.wrapper.wide .wrapper-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

/***  WRAPPER FULL ***/
.wrapper.full {
  max-width: unset;
}
.wrapper.full .wrapper-inner {
  padding-left: 0;
  padding-right: 0;
}

.wrapper-header {
  max-width: 1400px;
  margin: 0 auto;
}
.wrapper-header .wrapper-inner {
  padding-left: 30px;
  padding-right: 30px;
}

.narrow-content {
  max-width: 800px;
  margin: 0 auto;
}

.gap-s {
  padding-top: 1rem;
}

.gap-b-s {
  padding-bottom: 1rem;
}

.gap {
  padding-top: 7rem;
}

.gap-b {
  padding-bottom: 7rem;
}

.gap-l {
  padding-top: 10rem;
}

.gap-b-l {
  padding-bottom: 10rem;
}

.white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text h6, .white-text p, .white-text a, .white-text strong, .white-text span {
  color: #FFFFFF;
}

.white-bg h1, .white-bg h2, .white-bg h3, .white-bg h4, .white-bg h5, .white-bg h6, .white-bg p, .white-bg a, .white-bg strong, .white-bg span {
  color: #122C42;
}

.dark-bg {
  background-color: #122C42;
}
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg p, .dark-bg a, .dark-bg strong, .dark-bg span, .dark-bg li {
  color: #FFFFFF;
}
.dark-bg hr {
  border-color: rgba(54, 165, 141, 0.2);
  margin-bottom: 30px;
  border-width: 0.5px;
}
.dark-bg .gfield_consent_label {
  color: white !important;
}
.dark-bg .gfield_consent_label a {
  text-decoration: underline;
}

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

#stretch-img-row .wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
#stretch-img-row .wrapper .wrapper-inner {
  padding-left: 0;
  padding-right: 0;
}
#stretch-img-row .wrapper .wrapper-inner .two-col-grid {
  grid-gap: 0;
}
#stretch-img-row .wrapper .wrapper-inner .two-col-grid picture {
  display: flex;
}
#stretch-img-row .wrapper .wrapper-inner .two-col-grid picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/12;
}
#stretch-img-row.text-image .two-col-grid .col:last-child {
  max-width: 600px;
  padding: 2rem 3rem;
  justify-self: flex-end;
}
#stretch-img-row.image-text .two-col-grid .col:last-child {
  max-width: 600px;
  padding: 2rem 3rem;
  justify-self: flex-start;
}

/****************************************************
****** COLUMNS  ******************************
****************************************************/
/***  ONE COLUMN  ***/
.one-col {
  max-width: 1200px;
  margin: 0 auto;
}
.one-col.narrow {
  max-width: 900px;
}

/***  TWO COLUMN GRID  ***/
.two-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
}
.two-col-grid.left-third {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  grid-gap: 5rem;
}
.two-col-grid.right-third {
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 5rem;
}
.two-col-grid :first-child {
  -ms-grid-column: 1;
}
.two-col-grid :last-child {
  -ms-grid-column: 2;
}

/***  TWO COLUMN FLEX  ***/
.two-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.two-col-flex .col {
  width: 49%;
}

/***  THREE COLUMN GRID  ***/
.three-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3rem;
}
.three-col-grid :first-child {
  -ms-grid-column: 1;
}
.three-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.three-col-grid :last-child {
  -ms-grid-column: 3;
}

/***  THREE COLUMN FLEX  ***/
.three-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.three-col-flex .col {
  width: 32%;
}

/***  FOUR COLUMN GRID  ***/
.four-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.four-col-grid :first-child {
  -ms-grid-column: 1;
}
.four-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.four-col-grid :nth-child(3) {
  -ms-grid-column: 3;
}
.four-col-grid :last-child {
  -ms-grid-column: 4;
}

/***  FIVE COLUMN GRID  ***/
.five-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.five-col-grid :first-child {
  -ms-grid-column: 1;
}
.five-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.five-col-grid :nth-child(3) {
  -ms-grid-column: 3;
}
.five-col-grid :nth-child(4) {
  -ms-grid-column: 4;
}
.five-col-grid :last-child {
  -ms-grid-column: 5;
}

/***  FOUR COLUMN FLEX  ***/
.four-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.four-col-flex .col {
  width: 23%;
}

.col.center {
  display: flex;
  justify-content: center;
}

.align-c {
  align-items: center;
}

.align-b {
  align-items: flex-end;
}

@media screen and (max-width: 991px) {
  .four-col-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .two-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
  .two-col-flex .col {
    width: 100%;
  }
  .two-col-flex .col.hero-two-col-image {
    order: 1;
  }
  .two-col-flex .col.hero-two-col-content {
    order: 2;
    max-width: unset !important;
    padding: 30px !important;
  }
}
@media screen and (max-width: 575px) {
  .three-col-grid,
  .four-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
}
/****************************************************
****** FONTS STYLES, & TYPOGRAPHY ***********
****************************************************/
h1 {
  color: #122C42;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 1.5rem;
}

h2 {
  color: #122C42;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 1.5rem;
}

h3 {
  color: #122C42;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 1.5rem;
}

h4 {
  color: #122C42;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 1.5rem;
}

h5 {
  color: #122C42;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

h6 {
  color: #122C42;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 1.5rem;
}

p {
  color: #16181D;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  margin: 0 auto 20px;
}

p.large {
  color: #16181D;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  margin: 0 auto 20px;
}

strong {
  font-weight: 700;
  color: #122C42;
}

a {
  text-decoration: none;
  color: #122C42;
}

blockquote p {
  font-size: 22px;
  font-style: italic;
  line-height: 36px;
  margin-bottom: 20px !important;
}
blockquote p:last-child {
  margin-bottom: 0;
}

.blue-hue {
  color: #1FB6D4 !important;
}

div#main-content ul,
div#main-content ol {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
div#main-content ul li,
div#main-content ol li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  padding: 3px 0;
}
div#main-content ul li::marker,
div#main-content ol li::marker {
  color: #1FB6D4;
}
div#main-content ul li strong,
div#main-content ol li strong {
  font-weight: 500;
  color: #1FB6D4;
}

ul.nothing {
  margin: 0 !important;
  list-style-type: none !important;
  padding: 0 !important;
}

ul.lined {
  border: 5px solid rgba(255, 255, 255, 0.0705882353);
  border-bottom: 5px solid rgba(38, 50, 79, 0.0705882353);
  padding: 2rem 3rem !important;
  margin-top: 5px !important;
  transition: all ease-in-out 0.4s;
}
ul.lined h4 {
  margin-bottom: 10px;
}
ul.lined p:last-child {
  margin-bottom: 0;
}
ul.lined:hover {
  border: 5px solid rgba(38, 50, 79, 0.0705882353);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0901960784);
  border-radius: 0 50px !important;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
    line-height: 54px;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 1.5rem;
  }
  h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }
  h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 1.5rem;
  }
  h5 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 1.5rem;
  }
  h6 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 1.5rem;
  }
  p {
    font-size: 16px;
    line-height: 28px;
    margin: 0 auto 20px;
  }
  div#main-content ul,
  div#main-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }
  div#main-content ul li,
  div#main-content ol li {
    font-size: 16px;
    line-height: 28px;
    padding: 3px 0;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 1.5rem;
  }
}
/****************************************************
****** BUTTONS *************************************
****************************************************/
.btn {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 1rem 3rem;
  text-align: center;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  gap: 10px; /* Space between text and arrow */
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  /* Ensure text stays above pseudo element */
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: width 0.4s ease;
}
.btn span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.btn:hover {
  color: #0e3a56;
}
.btn:hover::before {
  width: 100%;
}

.btn.bright {
  border: 2px solid #1FB6D4;
  color: #1FB6D4;
}
.btn.bright::before {
  background: #1FB6D4;
}
.btn.bright:hover {
  color: #ffffff;
}

.btn.dark {
  border: 2px solid #122C42;
  color: #122C42;
}
.btn.dark::before {
  background: #122C42;
}
.btn.dark:hover {
  color: #ffffff;
}

.background-animation {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  background-color: #122C42;
}
.background-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: width 0.4s ease;
}
.background-animation span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.background-animation:hover {
  color: #FFFFFF;
  background-color: #1FB6D4;
}
.background-animation:hover::before {
  width: 100%;
}

/****************************************************
****** ANIMATION  ******************************
****************************************************/
/****************************************************
****** HEADER  ******************************
****************************************************/
header {
  background-color: #122C42;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1215686275);
  position: relative;
  z-index: 999;
}
header .navigation .wrapper-header .wrapper-inner .n-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
  width: 280px;
  height: auto;
  overflow: visible;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-nav .main-navigation {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .clearpay {
  height: 32px;
  width: auto;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone {
  background-color: #1c3d5a;
  padding: 8px 20px;
  border-radius: 50px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone.quote {
  background-color: #d42167;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone svg {
  width: auto;
  height: 16px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone:hover {
  background-color: #1FB6D4;
}

#triangle-left {
  transform: translate(-2px, -2px);
  transition: transform 0.3s ease;
}

#triangle-right {
  transform: translate(2px, -1px);
  transition: transform 0.3s ease;
}

#triangle-bottom {
  transform: translate(0, 3px);
  transition: transform 0.3s ease;
}

svg:hover #triangle-left {
  transform: translate(0, 0);
}

svg:hover #triangle-right {
  transform: translate(0, 0);
}

svg:hover #triangle-bottom {
  transform: translate(0, 0);
}

/* Optional: add transitions to normal state too */
#triangle-left,
#triangle-right,
#triangle-bottom {
  transition: transform 0.3s ease;
}

/* Submenu Dropdown */
.main-navigation li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1607843137);
  padding-right: 20px;
  margin-right: 20px;
}
.main-navigation li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.main-navigation li a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.main-navigation li a:hover {
  color: #1FB6D4;
}
.main-navigation li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  min-width: 280px;
  border-radius: 0;
}
.main-navigation li > ul li {
  position: relative;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 0;
  margin-right: 0;
}
.main-navigation li > ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.main-navigation li > ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #122C42;
  font-size: 14px;
}
.main-navigation li > ul li a:after {
  content: "";
  width: 16px; /* Adjust size */
  height: 10px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.162 61.291'%3E%3Cpath d='M226.734 39.422l25.774 25.556.215.2a4.939 4.939 0 0 1 1.439 3.316l0 .448A4.857 4.857 0 0 1 252.9 71.91l-.3.31L226.734 97.869a4.917 4.917 0 0 1-6.918 0 4.867 4.867 0 0 1 0-6.918L237.673 73.24l-71.771 0a4.881 4.881 0 1 1 0-9.763l71.2 0L219.816 46.34a4.867 4.867 0 0 1 0-6.918 4.917 4.917 0 0 1 6.918 0Z' transform='translate(-161 -38)' fill='%23122C42'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.main-navigation li > ul li a:hover {
  color: #1FB6D4;
}
.main-navigation li > ul li a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.162 61.291'%3E%3Cpath d='M226.734 39.422l25.774 25.556.215.2a4.939 4.939 0 0 1 1.439 3.316l0 .448A4.857 4.857 0 0 1 252.9 71.91l-.3.31L226.734 97.869a4.917 4.917 0 0 1-6.918 0 4.867 4.867 0 0 1 0-6.918L237.673 73.24l-71.771 0a4.881 4.881 0 1 1 0-9.763l71.2 0L219.816 46.34a4.867 4.867 0 0 1 0-6.918 4.917 4.917 0 0 1 6.918 0Z' transform='translate(-161 -38)' fill='%231FB6D4'/%3E%3C/svg%3E") no-repeat center;
}
.main-navigation li:hover > ul {
  opacity: 1;
  display: block;
}

.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  margin-left: 0;
  vertical-align: middle;
}
.menu-item-has-children > a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%231FB6D4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

/* Mobile Flyout Styles */
.nbar-tog {
  border-radius: 3px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.nbar-tog #nav-button {
  display: block;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.mobile-menu .menu-item-has-children.submenu-open > .sub-menu {
  display: block;
}
.mobile-menu li ul.sub-menu {
  padding-left: 30px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: none;
}
.mobile-menu li a {
  padding: 12px 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  display: inline-block;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease-out;
}
.hamburger-line:nth-child(1) {
  top: 0;
}
.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 85%;
}
.hamburger-line:nth-child(3) {
  bottom: 0;
}

.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.closed#nav-button:hover .hamburger-line:nth-child(1) {
  transform: rotate(15deg) translate(0px, 0px);
}
.closed#nav-button:hover .hamburger-line:nth-child(3) {
  transform: rotate(-15deg) translate(0px, 0px);
}

/* Sticky Area Styling */
.flyout {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: -100%; /* Start hidden above the top */
  background-color: #122C42;
  overflow-x: hidden;
  padding-top: 10rem;
  transition: top 0.2s; /* Animate the top property */
}

.mobile-menu .submenu-open > a:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  transform: rotate(180deg);
}

.mobile-menu .menu-item-has-children > a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

/* Sticky Menu Styling */
header.nav-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101;
}
header.nav-header.sticky .clearpay, header.nav-header.sticky .email, header.nav-header.sticky .telephone {
  display: none !important;
}
header.nav-header.sticky .quote {
  display: inline-flex !important;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar {
  padding: 15px 0;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
  width: 250px;
  height: auto;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-content {
  flex-direction: row-reverse;
  align-items: center;
  gap: 0;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-nav > ul > li {
  padding-right: 15px;
  margin-right: 15px;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-nav > ul > li a {
  font-size: 16px;
}

/****************************************************
****** MULTI COLUMNS  ******************************
****************************************************/
.text-image .two-col-grid .col:first-child {
  order: 2;
}
.text-image .two-col-grid .col:last-child {
  order: 1;
}

.two-col-grid.image-grid .col,
.three-col-grid.image-grid .col,
.four-col-grid.image-grid .col,
.five-col-grid.image-grid .col {
  background: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.two-col-grid.image-grid .col:hover,
.three-col-grid.image-grid .col:hover,
.four-col-grid.image-grid .col:hover,
.five-col-grid.image-grid .col:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s ease;
}
.two-col-grid.image-grid .col:hover .column-image,
.three-col-grid.image-grid .col:hover .column-image,
.four-col-grid.image-grid .col:hover .column-image,
.five-col-grid.image-grid .col:hover .column-image {
  transform: scale(1.1);
}
.two-col-grid.image-grid .col:hover .column-heading a,
.three-col-grid.image-grid .col:hover .column-heading a,
.four-col-grid.image-grid .col:hover .column-heading a,
.five-col-grid.image-grid .col:hover .column-heading a {
  color: #1FB6D4;
}
.two-col-grid.image-grid .col:hover .link-icon-overlay,
.three-col-grid.image-grid .col:hover .link-icon-overlay,
.four-col-grid.image-grid .col:hover .link-icon-overlay,
.five-col-grid.image-grid .col:hover .link-icon-overlay {
  background-color: #1FB6D4 !important;
}
.two-col-grid.image-grid .col .column-link,
.three-col-grid.image-grid .col .column-link,
.four-col-grid.image-grid .col .column-link,
.five-col-grid.image-grid .col .column-link {
  position: relative;
}
.two-col-grid.image-grid .col .column-link picture,
.three-col-grid.image-grid .col .column-link picture,
.four-col-grid.image-grid .col .column-link picture,
.five-col-grid.image-grid .col .column-link picture {
  display: flex;
  margin-bottom: 10px;
  overflow: hidden;
}
.two-col-grid.image-grid .col .column-link picture .column-image,
.three-col-grid.image-grid .col .column-link picture .column-image,
.four-col-grid.image-grid .col .column-link picture .column-image,
.five-col-grid.image-grid .col .column-link picture .column-image {
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid .col .column-link .link-icon-overlay,
.three-col-grid.image-grid .col .column-link .link-icon-overlay,
.four-col-grid.image-grid .col .column-link .link-icon-overlay,
.five-col-grid.image-grid .col .column-link .link-icon-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #014167;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.three-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.four-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.five-col-grid.image-grid .col .column-link .link-icon-overlay svg {
  width: 20px;
  height: auto;
  fill: white;
}
.two-col-grid.image-grid .col .column-content,
.three-col-grid.image-grid .col .column-content,
.four-col-grid.image-grid .col .column-content,
.five-col-grid.image-grid .col .column-content {
  padding: 1rem 2rem 2rem;
}
.two-col-grid.image-grid .col .column-content p:last-child,
.two-col-grid.image-grid .col .column-content ul:last-child,
.three-col-grid.image-grid .col .column-content p:last-child,
.three-col-grid.image-grid .col .column-content ul:last-child,
.four-col-grid.image-grid .col .column-content p:last-child,
.four-col-grid.image-grid .col .column-content ul:last-child,
.five-col-grid.image-grid .col .column-content p:last-child,
.five-col-grid.image-grid .col .column-content ul:last-child {
  margin-bottom: 0 !important;
}
.two-col-grid.image-grid .col picture,
.three-col-grid.image-grid .col picture,
.four-col-grid.image-grid .col picture,
.five-col-grid.image-grid .col picture {
  overflow: hidden;
}
.two-col-grid.image-grid .col picture .column-image,
.three-col-grid.image-grid .col picture .column-image,
.four-col-grid.image-grid .col picture .column-image,
.five-col-grid.image-grid .col picture .column-image {
  transition: transform 0.4s ease;
}
.two-col-grid.icon-grid .link-icon-overlay,
.three-col-grid.icon-grid .link-icon-overlay,
.four-col-grid.icon-grid .link-icon-overlay,
.five-col-grid.icon-grid .link-icon-overlay {
  display: none;
}
.two-col-grid.icon-grid .col.text-left,
.three-col-grid.icon-grid .col.text-left,
.four-col-grid.icon-grid .col.text-left,
.five-col-grid.icon-grid .col.text-left {
  text-align: left;
}
.two-col-grid.icon-grid .col.text-center,
.three-col-grid.icon-grid .col.text-center,
.four-col-grid.icon-grid .col.text-center,
.five-col-grid.icon-grid .col.text-center {
  text-align: center;
}
.two-col-grid.icon-grid .col .column-image,
.three-col-grid.icon-grid .col .column-image,
.four-col-grid.icon-grid .col .column-image,
.five-col-grid.icon-grid .col .column-image {
  margin-bottom: 20px;
  width: auto;
  height: 46px;
  transition: transform 0.4s ease;
}
.two-col-grid.icon-grid .col:hover .column-content h3 a,
.three-col-grid.icon-grid .col:hover .column-content h3 a,
.four-col-grid.icon-grid .col:hover .column-content h3 a,
.five-col-grid.icon-grid .col:hover .column-content h3 a {
  color: #1FB6D4;
}
.two-col-grid.icon-grid .col .column-content,
.three-col-grid.icon-grid .col .column-content,
.four-col-grid.icon-grid .col .column-content,
.five-col-grid.icon-grid .col .column-content {
  padding: 0;
}
.two-col-grid.icon-grid .col .column-content h3,
.three-col-grid.icon-grid .col .column-content h3,
.four-col-grid.icon-grid .col .column-content h3,
.five-col-grid.icon-grid .col .column-content h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 28px;
}
.two-col-grid.icon-grid .col .column-content p,
.three-col-grid.icon-grid .col .column-content p,
.four-col-grid.icon-grid .col .column-content p,
.five-col-grid.icon-grid .col .column-content p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 26px;
}
.two-col-grid.image-grid.image-h-small .col .column-image,
.three-col-grid.image-grid.image-h-small .col .column-image,
.four-col-grid.image-grid.image-h-small .col .column-image,
.five-col-grid.image-grid.image-h-small .col .column-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid.image-h-med .col .column-image,
.three-col-grid.image-grid.image-h-med .col .column-image,
.four-col-grid.image-grid.image-h-med .col .column-image,
.five-col-grid.image-grid.image-h-med .col .column-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid.image-h-large .col .column-image,
.three-col-grid.image-grid.image-h-large .col .column-image,
.four-col-grid.image-grid.image-h-large .col .column-image,
.five-col-grid.image-grid.image-h-large .col .column-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.grey-bg {
  background-color: #F7F7F7;
}

.column-icon-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.column-icon-wrapper .icon {
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.column-icon-wrapper .icon img {
  margin-bottom: 10px;
  width: 90px;
  height: auto;
}
.column-icon-wrapper .icon p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

/****************************************************
****** SITE ELEMENTS  ******************************
****************************************************/
.highlight-icon-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
  max-width: 2400px;
  margin: 0 auto;
}
.highlight-icon-content-wrapper .highlight-item {
  padding: 3rem;
  background-color: #0C2132;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.highlight-icon-content-wrapper .highlight-item h3, .highlight-icon-content-wrapper .highlight-item h4, .highlight-icon-content-wrapper .highlight-item p, .highlight-icon-content-wrapper .highlight-item li, .highlight-icon-content-wrapper .highlight-item span, .highlight-icon-content-wrapper .highlight-item a {
  color: #FFFFFF;
}
.highlight-icon-content-wrapper .highlight-item ul {
  margin-top: 0 !important;
}
.highlight-icon-content-wrapper .highlight-item p, .highlight-icon-content-wrapper .highlight-item li, .highlight-icon-content-wrapper .highlight-item span, .highlight-icon-content-wrapper .highlight-item a {
  font-size: 16px !important;
  line-height: 26px !important;
}
.highlight-icon-content-wrapper .highlight-item *:last-child {
  margin-bottom: 0 !important;
}
.highlight-icon-content-wrapper .highlight-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-icons-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 2rem;
  align-items: stretch;
  margin-top: 3rem;
}
.feature-icons-wrapper .feature-icons-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
.feature-icons-wrapper .feature-icons-icons .col {
  background-color: white;
  padding: 2rem;
}
.feature-icons-wrapper .feature-icons-icons .col p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.feature-icons-wrapper .feature-icons-icons .col .feature-icon-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.feature-icons-wrapper .feature-icons-icons .col .feature-icon-heading h4 {
  margin: 0;
}
.feature-icons-wrapper .feature-icons-icons .col .feature-icon-heading img {
  width: 35px;
  height: auto;
}

.camera-list {
  list-style-type: none !important;
  padding-left: 0 !important;
}
.camera-list li {
  font-size: 16px !important;
  line-height: 26px !important;
  position: relative;
  display: flex;
  align-items: center;
}
.camera-list li:before {
  background-image: url(https://securecctv.co.uk/site/wp-content/uploads/2025/07/cctv-cam.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
}

.systems .three-col-grid {
  grid-gap: 1.5rem;
}
.systems .column-content .system-price {
  color: #d42167;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 16px;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 10px;
}
.systems .column-content p {
  font-size: 16px;
  line-height: 26px;
}
.systems .column-content h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-cta .cta-tel {
  display: block;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 2rem;
  color: #1FB6D4;
}
.contact-cta .cta-tel:hover {
  color: #d42167;
}
.contact-cta .clearpay-cta {
  width: 150px;
  display: block;
  margin: 40px auto 0;
}

.logo-grid-wrapper {
  background-image: url(https://securecctv.co.uk/site/wp-content/uploads/2025/07/logos-shape.svg);
  background-repeat: no-repeat;
  background-size: 550px;
  background-position: -5% 130%;
  padding-bottom: 15rem;
  position: relative;
}
.logo-grid-wrapper:before {
  content: "";
  background-image: url(https://securecctv.co.uk/site/wp-content/uploads/2025/07/shape-1.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: 30px;
  right: 30px;
}
.logo-grid-wrapper:after {
  content: "";
  background-image: url(https://securecctv.co.uk/site/wp-content/uploads/2025/07/shape-2.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  bottom: 40px;
  left: 60px;
}

.logos-wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.logos-wrapper:hover .logos-track {
  animation-play-state: paused;
}
.logos-wrapper .logos-row {
  overflow: hidden;
  white-space: nowrap;
}
.logos-wrapper .logos-row .logos-track {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-left 100s linear infinite;
}
.logos-wrapper .logos-row .logos-track img {
  max-width: 150px;
  width: auto;
  height: auto;
  max-height: 60px;
}
.logos-wrapper .logos-row.logos-row-2 .logos-track {
  animation: scroll-right 100s linear infinite;
}

.logos-track.logos-track-duplicate {
  margin-left: 4rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.usp-row {
  background-color: #0f2436;
  padding: 1.5rem 0;
}
.usp-row .col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.usp-row .col span {
  color: #FFFFFF;
  max-width: 199px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.usp-row .col svg {
  width: 40px;
  height: auto;
}

.cards .three-col-grid {
  grid-gap: 1.5rem;
}
.cards .card {
  position: relative;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
}
.cards .card a {
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  width: 100%;
}
.cards .card a .card-image {
  border-radius: 24px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
  overflow: hidden;
  display: flex;
}
.cards .card a .card-content {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 20px;
  background-color: #122C42;
  padding: 1.5rem;
  border-radius: 24px;
}
.cards .card a .card-content h3 {
  color: #FFFFFF;
  margin: 0;
  z-index: 1;
  position: relative;
}
.cards .card a .card-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #1FB6D4;
  z-index: 1;
  transition: width 0.4s ease;
  border-radius: 24px;
}
.cards .card a:hover {
  color: #FFFFFF;
}
.cards .card a:hover span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.cards .card a:hover .card-content::before {
  width: 100%;
}
.cards .card a:hover .card-image {
  transform: scale(1.05);
  overflow: hidden;
}
.cards .card a:hover .card-content h3 {
  color: #FFFFFF;
}

/****************************************************
****** BLOG ******************************
****************************************************/
.blog-post-grid {
  grid-gap: 1rem;
}
.blog-post-grid .col {
  background-color: #FFFFFF;
}
.blog-post-grid .col .blog-image {
  overflow: hidden;
}
.blog-post-grid .col .blog-image img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}

ul.pager {
  list-style-type: none !important;
  margin: 2rem 0 !important;
  padding: 0 !important;
  display: flex;
  gap: 10px;
  align-items: center;
}
ul.pager li a {
  background-color: #122C42;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
ul.pager li.active a, ul.pager li:hover a {
  background-color: #d42167;
  opacity: 1;
}

/****************************************************
****** HERO AREA TWO COLUMNS ******************************
****************************************************/
.hero-area-two-column {
  background-image: url(https://securecctv.co.uk/site/wp-content/uploads/2025/07/hero-bg-1.webp);
  background-position: center;
  background-size: contain;
  background-repeat: repeat;
  margin-top: -1px;
}
.hero-area-two-column .clearpay-hero {
  width: 300px;
  height: auto;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex {
  align-items: center;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-content {
  max-width: 650px;
  margin-left: auto;
  padding: 6rem 0 6rem 30px;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image {
  align-self: stretch;
  position: relative;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-height: 700px;
  min-height: 500px;
  max-width: 1200px;
  display: flex;
  object-position: center;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image .google-badge-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image .google-badge-overlay .wpsr-reviews-badge-html.wpsr-default {
  margin-bottom: 0;
}

.hero-area-full {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
  position: relative;
}
.hero-area-full .wrapper {
  min-height: 600px;
}
.hero-area-full .wrapper .wrapper-inner {
  position: absolute;
  bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.hero-area-full .wrapper .wrapper-inner .hero-float-box {
  position: relative;
}
.hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner {
  max-width: 750px;
  background-color: rgba(247, 247, 247, 0.9);
  padding: 3rem 3rem 2rem;
}

/****************************************************
****** ACCORDION ******************************
****************************************************/
.accordion-wrapper .accordion-item {
  margin-top: 1rem;
  border-top: 1px solid rgba(1, 66, 103, 0.1058823529);
  padding-top: 1rem;
}
.accordion-wrapper .accordion-item:last-child {
  border-bottom: 1px solid rgba(1, 66, 103, 0.1058823529);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.accordion-wrapper .accordion-item .accordion-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 5px 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  transition: background 0.3s ease;
  position: relative;
  font-family: "Rethink Sans", sans-serif;
  color: #122C42;
}
.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon::before {
  content: "+";
  font-size: 2rem;
  line-height: 28px;
}
.accordion-wrapper .accordion-item .accordion-toggle.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-wrapper .accordion-item .accordion-toggle:hover {
  color: #1FB6D4;
}
.accordion-wrapper .accordion-item .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  padding: 0;
}
.accordion-wrapper .accordion-item .accordion-content p {
  font-size: 16px;
  line-height: 28px;
}
.accordion-wrapper .accordion-item .accordion-content.open {
  padding-top: 0.5rem;
}

/****************************************************
****** TABS ******************************
****************************************************/
.tabs .tab-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.tabs .tab-buttons .tab-button {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #122C42;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  font-family: "Rethink Sans", sans-serif;
}
.tabs .tab-buttons .tab-button.active {
  color: #1FB6D4;
}
.tabs .tab-buttons .tab-button.active::after {
  content: "";
  display: block;
  height: 3px;
  background: #1FB6D4;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.tabs .tab-buttons .tab-button:hover {
  color: #1FB6D4;
}
.tabs .tab-contents .tab-content {
  display: none;
}
.tabs .tab-contents .tab-content.active {
  display: block;
}
.tabs .tab-contents .tab-content .two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.tabs .tab-contents .tab-content .two-col-grid .col p {
  margin-bottom: 1rem;
}
.tabs .tab-contents .tab-content .two-col-grid .col img {
  max-width: 100%;
  border-radius: 8px;
  background: #f2f2f2;
  aspect-ratio: 16/11;
  object-fit: cover;
}

/****************************************************
****** FLICKITY ******************************
****************************************************/
ol.flickity-page-dots {
  margin: 0 !important;
}

.carousel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.carousel .carousel-cell {
  width: 100%;
  height: auto;
  margin-right: 10px;
}
.carousel .carousel-cell img {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 8px;
}
.carousel .flickity-prev-next-button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.carousel .flickity-button {
  background: #d42167;
}
.carousel .flickity-prev-next-button .flickity-button-icon {
  width: 50%;
  height: 50%;
  top: 26%;
  fill: white;
}

.single-case_studies .carousel .carousel-cell img {
  height: auto;
  object-fit: unset;
}

/****************************************************
****** ICONS  ******************************
****************************************************/
/****************************************************
****** FORM STYLING & CONTACT  ******************************
****************************************************/
.page-id-224 .gform_wrapper {
  margin: 40px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-id-224 #two-thirds h5 {
  border-top: 1px solid rgba(54, 165, 141, 0.2);
  padding-top: 30px;
  margin-bottom: 15px;
  opacity: 0.5;
}
.page-id-224 #two-thirds a.tel {
  font-size: 22px;
}
.page-id-224 #two-thirds a.tel:hover {
  color: #d42167;
}
.page-id-224 #two-thirds a.mail {
  color: #1FB6D4;
  margin-top: 10px;
  display: block;
  font-size: 20px;
}
.page-id-224 #two-thirds a.mail:hover {
  color: #d42167;
}

#two-thirds .two-col-grid {
  grid-template-columns: 1fr 2fr;
  -ms-grid-columns: 1fr 2fr;
  grid-gap: 5rem;
}

label.gfield_label.gform-field-label {
  font-size: 12px;
  color: #122C42;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p.gform_required_legend {
  display: none;
}

.gform-theme--foundation .gform_fields {
  row-gap: 25px !important;
}

.gform-theme--foundation .gfield .ginput_password.large, .gform-theme--foundation .gfield input.large {
  border-radius: 7px;
  height: 50px;
  font-weight: 400;
  font-size: 16px;
  border: none;
  background: #f7f7f7;
}
.gform-theme--foundation .gfield .ginput_password.large::placeholder, .gform-theme--foundation .gfield input.large::placeholder {
  opacity: 0.5;
}

label.gform-field-label.gform-field-label--type-inline.gfield_consent_label {
  font-size: 14px;
  color: #8b8b8b;
}

.ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
}

input[type=checkbox] {
  border: none !important;
  background: #f1f1f1 !important;
}

.cky-notice .cky-title {
  margin: 10px 0 0 0 !important;
}

div#gform_wrapper_3 {
  margin: 0 !important;
  padding: 0;
  border: none;
}

.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input {
  width: 100%;
  border: none;
  background: #f7f7f7;
}
.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input::placeholder {
  opacity: 0.5;
}

.gform-theme--foundation .gfield select.large {
  border-radius: 7px;
  font-weight: 400;
  font-size: 16px;
  border: none;
  background: #f7f7f7;
  color: #848d97;
}
.gform-theme--foundation .gfield select.large option {
  opacity: 0.5;
}
.gform-theme--foundation .gfield select.large::placeholder {
  opacity: 0.5;
}

.gform-theme--foundation .gfield textarea {
  font-size: 16px;
  font-weight: 400;
  border: none;
  background: #f7f7f7;
}
.gform-theme--foundation .gfield textarea::placeholder {
  opacity: 0.5;
}

.gform_button {
  border-radius: 50px !important;
  padding: 15px 50px !important;
  background: #1FB6D4 !important;
  font-size: 16px !important;
  color: #FFFFFF !important;
}
.gform_button:hover {
  background-color: #122C42 !important;
  color: #FFFFFF !important;
}

.dark-bg label.gfield_label.gform-field-label {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dark-bg p.gform_required_legend {
  display: none;
}
.dark-bg .gform_wrapper {
  margin: 40px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  padding-bottom: 40px;
}
.dark-bg .gform-theme--foundation .gform_fields {
  row-gap: 25px !important;
}
.dark-bg .gform-theme--foundation .gfield .ginput_password.large, .dark-bg .gform-theme--foundation .gfield input.large {
  border-radius: 7px;
  height: 50px;
  font-weight: 400;
  font-size: 16px;
}
.dark-bg .gform-theme--foundation .gfield select.large {
  border-radius: 7px;
  font-weight: 400;
  font-size: 16px;
}
.dark-bg .gform-theme--foundation .gfield textarea {
  font-size: 16px;
  font-weight: 400;
}
.dark-bg .gform_button {
  border-radius: 50px !important;
  padding: 12px 30px !important;
  background: transparent !important;
  border: 2px solid white !important;
  font-size: 16px !important;
  color: #FFFFFF !important;
}
.dark-bg .gform_button:hover {
  background-color: #FFFFFF !important;
  color: #122C42 !important;
}

/****************************************************
****** Contact Icons & Forms ******************************
****************************************************/
/****************************************************
****** FOOTER  ******************************
****************************************************/
footer {
  background-color: #122C42;
  position: relative;
  background-image: url("../svg/footer-icon.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 350px;
}
footer .footer-row-grid {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  grid-gap: 4rem;
  z-index: 2;
  position: relative;
}
footer .footer-row-grid .col.footer-main .main-logo > svg {
  width: 200px;
  height: auto;
  overflow: visible;
}
footer .footer-row-grid .three-col-grid {
  grid-gap: 2rem;
}
footer .footer-row-grid .three-col-grid .col:last-child {
  border-right: none;
  padding-right: 0;
}
footer ul.menu li {
  padding: 5px 0 !important;
}
footer ul.menu li a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  padding: 2px 0;
  display: inline-block;
}
footer ul.menu li a:hover {
  color: #1FB6D4;
  font-weight: 300;
}
footer p, footer span, footer a {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
footer h6 {
  font-weight: 600;
  font-size: 18px;
}
footer .bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}
footer .bottom-bar p, footer .bottom-bar li, footer .bottom-bar span, footer .bottom-bar a {
  font-size: 12px;
  line-height: 22px;
  opacity: 0.7;
}
footer .bottom-bar .social-links {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
footer .bottom-bar .social-links a {
  opacity: 1;
}
footer .bottom-bar .social-links a:hover svg rect {
  stroke: #1FB6D4;
}
footer .bottom-bar .social-links a:hover svg path {
  fill: #1FB6D4;
}

.footer-contact {
  margin-bottom: 2rem;
}
.footer-contact .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.footer-contact .footer-contact-item span {
  display: inline-block;
  min-width: 150px;
}
.footer-contact .footer-contact-item a {
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  color: #122C42;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.footer-contact .footer-contact-item a svg {
  height: 16px;
  width: auto;
}
.footer-contact .footer-contact-item a svg path {
  fill: #122C42;
}
.footer-contact .footer-contact-item a:hover {
  background-color: #1FB6D4;
  color: #FFFFFF;
}
.footer-contact .footer-contact-item a:hover svg path {
  fill: #FFFFFF;
}
.footer-contact .footer-contact-item a.quote {
  background-color: #d42167;
  color: #FFFFFF;
  padding: 12px 20px;
}
.footer-contact .footer-contact-item a.quote svg {
  height: 16px;
  width: auto;
}
.footer-contact .footer-contact-item a.quote svg path {
  fill: #FFFFFF;
}
.footer-contact .footer-contact-item a.quote:hover {
  background-color: #1FB6D4;
}

.header-contact {
  margin-bottom: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.144);
  padding-top: 2rem;
}
.header-contact .header-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.header-contact .header-contact-item span {
  display: inline-block;
  min-width: 150px;
}
.header-contact .header-contact-item a {
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  color: #122C42;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.header-contact .header-contact-item a svg {
  height: 16px;
  width: auto;
}
.header-contact .header-contact-item a svg path {
  fill: #122C42;
}
.header-contact .header-contact-item a:hover {
  background-color: #1FB6D4;
  color: #FFFFFF;
}
.header-contact .header-contact-item a:hover svg path {
  fill: #FFFFFF;
}
.header-contact .header-contact-item a.quote {
  background-color: #d42167;
  color: #FFFFFF;
  padding: 12px 20px;
}
.header-contact .header-contact-item a.quote svg {
  height: 16px;
  width: auto;
}
.header-contact .header-contact-item a.quote svg path {
  fill: #FFFFFF;
}
.header-contact .header-contact-item a.quote:hover {
  background-color: #1FB6D4;
}

footer .wpsr-reviews-badge-wrapper {
  text-align: left !important;
}
footer .wpsr-reviews-badge-html.wpsr-default {
  box-shadow: none;
  width: 100%;
  background-color: rgba(255, 255, 255, 0) !important;
  border: 1px solid rgba(255, 255, 255, 0.1411764706);
  margin: 0;
}
footer .wpsr-reviews-badge-html.wpsr-default:hover {
  background-color: rgba(255, 255, 255, 0) !important;
  border: 1px solid rgba(255, 255, 255, 0.1411764706);
}
footer .wpsr-total-rating {
  color: #ffb542 !important;
  font-size: 14px !important;
}
footer span.wpsr-rating {
  margin-top: -3px !important;
}
footer .wpsr-total-rating {
  margin-top: 5px;
}

.wpsr-reviews-badge-wrapper {
  text-align: left !important;
}

/****************************************************
****** QUOTE BUILDER ******************************
****************************************************/
.open-quote-btn {
  background: #1FB6D4;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 50px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}

.quote-popup {
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.quote-popup-content {
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  position: relative; /* ensure this container is relative for buttons */
}

.quote-popup-content .gfield input.large {
  text-align: left;
}

.quote-popup-content div#gform_confirmation_message_8 {
  color: #d42167;
  font-weight: bold;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #1FB6D4;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.back-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1FB6D4;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.button-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quote-btn {
  border: none;
  color: #FFFFFF;
  padding: 20px 50px;
  text-align: center;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  gap: 10px; /* Space between text and arrow */
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  /* Ensure text stays above pseudo element */
  z-index: 1;
  font-family: "Rethink Sans", sans-serif;
}
.quote-btn img {
  height: 22px;
  width: auto;
  margin-right: 10px;
}
.quote-btn:hover {
  background-color: #1FB6D4;
}

.cctv-btn, .alarm-btn {
  background: #d42167;
  color: #fff;
}

.both-btn {
  background: #d42167;
  color: #fff;
}

.back-btn-inline, .next-btn {
  padding: 1rem 3rem;
  font-size: 16px;
}

.back-btn-inline {
  background: white;
  color: #132c42;
}

.afterpay {
  margin-top: 2rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.afterpay img {
  height: 50px;
  width: auto;
}

.hidden {
  display: none;
}

.camera-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.camera-options.three-cols {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.camera-options.four-cols {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.camera-btn {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Rethink Sans", sans-serif;
}

.camera-btn:hover {
  background: #132c42;
  border-color: #1FB6D4;
  border-width: 2px;
  color: white;
}

.camera-btn.active {
  background: #122C42;
  color: #fff;
  border-color: #21b6d4;
  border-width: 2px;
}

.camera-btn img {
  width: auto;
  height: 35px;
  display: block;
  margin: 0 auto 10px;
}

/* Multi-select camera button base styles */
.camera-btn.multi-select {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Rethink Sans", sans-serif;
}

.camera-btn.multi-select:hover {
  background: #132c42;
  border-color: #1FB6D4;
  border-width: 2px;
  color: white;
}

.camera-btn.multi-select.active {
  background: #122C42;
  color: #fff;
  border-color: #21b6d4;
  border-width: 2px;
}

/****************************************************
****** MEDIA QUERIES ******************************
****************************************************/
/** IE11/10 **/
/*** MIN WIDTH 1200PX ***/
/*** MAX WIDTH 1199PX ***/
/*** MAX WIDTH 1199PX ***/
@media screen and (max-width: 1070px) {
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone.email {
    display: none;
  }
}
/*** MAX WIDTH 991PX ***/
@media screen and (max-width: 991px) {
  footer .footer-row-grid .col.footer-main {
    max-width: 500px;
    margin: 0 auto;
  }
  footer ul.menu li {
    text-align: left;
  }
  footer h6 {
    text-align: left;
  }
  footer .footer-row-grid .three-col-grid {
    max-width: 700px;
    margin: 0 auto;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .clearpay-header {
    display: none !important;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg,
  header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
    width: 220px;
  }
  .hide-tablet {
    display: none;
  }
  footer .footer-row-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }
  footer .footer-row-grid .col {
    border: none;
    padding: 0;
  }
  footer .contact-details div a {
    justify-content: center;
  }
  .wrapper .wrapper-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nbar-tog {
    display: block;
  }
  .n-nav {
    display: none !important;
  }
  .logo-grid-wrapper {
    padding: 7rem 0;
  }
  .highlight-icon-content-wrapper .highlight-item {
    padding: 2rem;
  }
  .three-col-grid.image-grid.blog-post-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  #two-thirds .two-col-grid {
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
  }
}
/*** MAX WIDTH 767PX ***/
@media screen and (max-width: 767px) {
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone {
    display: none;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone.quote {
    display: flex;
  }
  .gap {
    padding-top: 4rem;
  }
  .gap-b {
    padding-bottom: 4rem;
  }
  .cards .three-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  footer ul.menu li {
    text-align: center;
  }
  footer h6 {
    text-align: center;
  }
  .logos-wrapper .logos-row .logos-track img {
    max-width: 100px;
    max-height: 30px;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg,
  header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
    width: 150px;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone.quote {
    font-size: 12px;
    padding: 8px 12px;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-content .n-contact .telephone svg {
    height: 12px;
  }
  .systems .three-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .feature-icons-wrapper {
    grid-template-columns: 1fr;
  }
  .carousel .carousel-cell img {
    height: 400px;
    object-fit: contain;
  }
  .highlight-icon-content-wrapper {
    grid-template-columns: 1fr;
  }
  .highlight-icon-content-wrapper .highlight-item-img img {
    height: 300px;
    display: flex;
  }
  .feature-icons-wrapper .feature-icons-icons {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
  .tabs .tab-contents .tab-content .two-col-grid {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
  .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner {
    background-color: rgba(247, 247, 247, 0.6);
  }
  .two-col-grid.align-c.alternative-layout .col:first-child {
    order: 2;
  }
  .three-col-grid.image-grid.blog-post-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  #two-thirds .two-col-grid {
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image picture img {
    max-height: 500px;
    min-height: 300px;
  }
  .usp-row .three-col-grid {
    grid-gap: 10px;
  }
  .usp-row .col svg {
    width: 24px;
  }
  .usp-row .col span {
    font-size: 12px;
    font-weight: 400;
  }
  .usp-row .col {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
/*** MAX WIDTH 575PX ***/
/*** MAX WIDTH 460PX ***/

/*# sourceMappingURL=main.css.map */
