@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/****************************************************
****** HTML, SITEWIDE  ******************************
****************************************************/
html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", 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 hr {
  margin: 3rem 0;
  border: 1px solid #f2f2f2;
}

.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: 3.5rem;
}

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

.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: #132A4F;
}
.white-bg ul li {
  color: #132A4F;
}

.dark-bg {
  background-color: #132A4F;
}
.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;
}

.light-bg {
  background-color: #F3F8FC;
}

.contour-bg {
  background-color: #CBDDEA;
  background-image: url("../svg/contour.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.leaf-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  color: #70AD4C;
}
.leaf-icon .leaf-icon-svg {
  flex: 0 0 auto;
  width: 34px;
  height: auto;
}
.leaf-icon .leaf-icon-svg path {
  fill: currentColor;
}

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

table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  border-spacing: 0;
}

table th,
table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #ddd;
}

table th {
  font-weight: 600;
  background: #f5f5f5;
}

table tbody tr:nth-child(even) {
  background: #fafafa;
}

@media (max-width: 767px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  table th,
  table td {
    min-width: 140px;
    padding: 12px;
  }
}
/****************************************************
****** COLUMNS  ******************************
****************************************************/
/***  ONE COLUMN  ***/
.one-col {
  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;
}

/****************************************************
****** FONTS STYLES, & TYPOGRAPHY ***********
****************************************************/
h1 {
  color: #132A4F;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 54px;
  margin-bottom: 1.5rem;
}

h2 {
  color: #132A4F;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

h3 {
  color: #132A4F;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

h5 {
  color: #132A4F;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  background-color: #FFFFFF;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 50px;
  color: #70AD4C;
}

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

p {
  color: #000000;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  margin: 0 auto 20px;
}

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

strong {
  font-weight: 700;
  color: #132A4F;
}

a {
  text-decoration: none;
  color: #132A4F;
}

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

.green-text {
  color: #70AD4C !important;
}

.gradient-text {
  background: linear-gradient(90deg, #2C70DC 0%, #E2171A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

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) {
  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;
  }
  #main-content ul,
  #main-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }
  #main-content ul li,
  #main-content ol li {
    font-size: 16px;
    line-height: 28px;
    padding: 3px 0;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 1.5rem;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .side-card .side-card-content h2, .side-card .side-card-content h3, .side-card .side-card-content h4 {
    font-size: 22px !important;
    line-height: 28px !important;
  }
}
/****************************************************
****** BUTTONS *************************************
****************************************************/
.btn {
  border: 0 solid #FFFFFF;
  background-color: #132A4F;
  border: 2px solid #132A4F;
  color: #FFFFFF;
  padding: 1rem 3rem;
  text-align: center;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  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;
  margin-top: 10px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #70AD4C;
  z-index: 1;
  transition: width 0.4s ease;
}
.btn span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.btn:hover {
  color: #ffffff;
  border-color: #70AD4C;
}
.btn:hover svg {
  position: relative;
  z-index: 1;
}
.btn:hover svg path {
  fill: #FFFFFF;
}
.btn:hover::before {
  width: 100%;
}
.btn.outline {
  background-color: transparent;
  border: 2px solid #132A4F;
  color: #132A4F;
}
.btn.outline:hover {
  border-color: #70AD4C;
  color: #FFFFFF;
}

.sample-button a {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
}
.sample-button a svg {
  height: 16px;
  width: auto;
}
.sample-button a svg path {
  fill: #FFFFFF;
}
.background-animation {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  background-color: #132A4F;
}
.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: #70AD4C;
}
.background-animation:hover::before {
  width: 100%;
}

.thermal-highlight {
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  color: #FFFFFF;
  gap: 20px;
  background: linear-gradient(90deg, #2F70DA 0%, #E11C55 100%);
  background-size: 200% 100%;
  animation: thermal-highlight-gradient 4s ease-in-out infinite alternate;
  border-radius: 33px;
  margin-bottom: 20px;
}

@keyframes thermal-highlight-gradient {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .thermal-highlight {
    animation: none;
  }
}
/****************************************************
****** HEADER  ******************************
****************************************************/
header {
  background-color: #FFFFFF;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1215686275);
  position: relative;
  z-index: 101;
}
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: auto;
  height: 60px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content {
  display: flex;
  flex-direction: row-reverse;
  gap: 25px;
  align-items: center;
}
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;
}

/* Submenu Dropdown */
.main-navigation li {
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
}
.main-navigation li a {
  color: #132A4F;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: -1px;
}
.main-navigation li a:hover {
  color: #70AD4C;
}
.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: 350px;
  border-radius: 10px;
}
.main-navigation li > ul li {
  position: relative;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 10px;
  width: 100%;
}
.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: #132A4F;
  width: 100%;
}
.main-navigation li > ul li a:after {
  content: "";
  width: 18px; /* Adjust size */
  height: 12px;
  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: #70AD4C;
}
.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='%231BCC9D'/%3E%3C/svg%3E") no-repeat center;
}
.main-navigation li:hover > ul {
  opacity: 1;
  display: block;
}
.main-navigation li#menu-item-134 a {
  background-color: #132A4F;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
}
.main-navigation li#menu-item-134:hover a {
  background-color: #70AD4C;
}

.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='%231BCC9D' 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: 8px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.nbar-tog #nav-button {
  display: block;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 4px;
  background: #132A4F;
  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(6px, 6px);
}
.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.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: #132A4F;
  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;
}

.flyout .flyout-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.182);
  padding-top: 2rem;
  margin-top: 2rem;
}
.flyout .flyout-contact .flyout-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 0;
}
.flyout .flyout-contact .flyout-contact-item span {
  display: inline-block;
  min-width: 150px;
}
.flyout .flyout-contact .flyout-contact-item a {
  background-color: #132A4F;
  padding: 14px 20px;
  border-radius: 8px;
  color: #FFFFFF;
  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;
}
.flyout .flyout-contact .flyout-contact-item a svg {
  width: auto;
  height: 16px;
}
.flyout .flyout-contact .flyout-contact-item a svg path {
  fill: #FFFFFF;
}
.flyout .flyout-contact .flyout-contact-item a:hover {
  background-color: #70AD4C;
  color: #FFFFFF;
}
.flyout .flyout-contact .flyout-contact-item a:hover svg path {
  fill: #FFFFFF;
}
.flyout .mobile-menu {
  margin: 2rem 0 4rem;
}
.flyout .mobile-menu .menu-item-has-children.submenu-open > .sub-menu {
  display: block;
}
.flyout .mobile-menu li ul.sub-menu {
  padding-left: 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: none;
}
.flyout .mobile-menu li a {
  padding: 12px 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  display: inline-block;
  justify-content: center;
}

.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;
}

header.nav-header.overlay {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
}

header.nav-header.overlay.sticky {
  background-color: #FFFFFF;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1215686275);
}

header.sticky-blue:not(.sticky) .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg path {
  fill: #FFFFFF;
}
header.sticky-blue:not(.sticky) .hamburger-line {
  background: #FFFFFF;
}

.sticky-blue .logo-colour-blue,
.sticky-blue .logo-colour-black {
  fill: white !important;
}

/* Sticky Menu Styling */
header.nav-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101;
}
header.nav-header.sticky .email {
  display: none !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: auto;
  height: 50px;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-content {
  flex-direction: row-reverse;
  align-items: center;
}

header.nav-header.sticky-blue.sticky .hamburger-line {
  background: #132A4F;
}

/****************************************************
****** 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 {
  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 {
  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: #70AD4C;
}
.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: #70AD4C !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;
  border-radius: 14px;
}
.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: #70AD4C;
  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 20px 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;
  display: flex;
  border-radius: 8px;
}
.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;
  border-radius: 8px;
}
.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: #70AD4C;
}
.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: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.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;
}

/****************************************************
****** CONTACT CTA ROW  ******************************
****************************************************/
label {
  color: #132A4F !important;
  font-size: 12px !important;
  margin-bottom: 5px !important;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 40%;
}

.frm_form_fields { /* Rectangle 30 */
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 3rem 3rem 0rem;
}

button.frm_button_submit {
  background-color: #132A4F !important;
  padding: 20px 50px !important;
  border-radius: 8px !important;
  color: #FFFFFF !important;
  display: inline-flex !important;
  align-items: center !important;
  font-size: 14px !important;
  line-height: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: none !important;
  font-family: "Montserrat", sans-serif !important;
}
button.frm_button_submit:hover {
  background-color: #70AD4C !important;
  color: #FFFFFF !important;
}

.with_frm_style input[type=text], .with_frm_style input[type=password], .with_frm_style input[type=email], .with_frm_style input[type=number], .with_frm_style input[type=url], .with_frm_style input[type=tel], .with_frm_style input[type=phone], .with_frm_style input[type=search], .with_frm_style select, .with_frm_style textarea, .frm_form_fields_style, .with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .with_frm_style .frm-card-element.StripeElement {
  padding: 15px !important;
  background: #FCFCFC;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: none;
  color: #132A4F;
  font-size: 16px;
  font-weight: 600;
}
.with_frm_style input[type=text]::placeholder, .with_frm_style input[type=password]::placeholder, .with_frm_style input[type=email]::placeholder, .with_frm_style input[type=number]::placeholder, .with_frm_style input[type=url]::placeholder, .with_frm_style input[type=tel]::placeholder, .with_frm_style input[type=phone]::placeholder, .with_frm_style input[type=search]::placeholder, .with_frm_style select::placeholder, .with_frm_style textarea::placeholder, .frm_form_fields_style::placeholder, .with_frm_style .frm_scroll_box .frm_opt_container::placeholder, .frm_form_fields_active_style::placeholder, .frm_form_fields_error_style::placeholder, .with_frm_style .frm-card-element.StripeElement::placeholder {
  color: #132A4F;
  font-size: 16px;
  font-weight: 600;
}

.contact-cta {
  background-image: url(https://penguinpak.com/wp-content/uploads/2026/07/contact-penguin-2.webp);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 700px;
  padding: 5rem 0;
}
.contact-cta .cta-tel {
  display: block;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #CBDDEA;
}
.contact-cta .cta-tel:hover {
  color: #FFFFFF;
}
.contact-cta .btn.sample-button {
  background-color: #CBDDEA;
  border-color: #CBDDEA;
  color: #132A4F;
}
.contact-cta .btn.sample-button svg path {
  fill: #132A4F;
}
.contact-cta .btn.sample-button::before {
  background-color: #FFFFFF;
}
.contact-cta .btn.sample-button:hover {
  border-color: #FFFFFF;
}
.contact-cta .btn.sample-button:hover::before {
  background-color: #FFFFFF;
}
.contact-cta .btn.outline {
  border-color: #CBDDEA;
  color: #CBDDEA;
}
.contact-cta .btn.outline::before {
  background-color: #FFFFFF;
}
.contact-cta .btn.outline:hover {
  border-color: #FFFFFF;
  color: #132A4F;
}
.contact-cta .btn.outline:hover::before {
  background-color: #FFFFFF;
}
.contact-cta .contact-cta-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2rem;
}
.contact-cta .contact-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px;
  color: #FFFFFF;
  text-align: center;
  background-color: #0E2449;
  border-radius: 8px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.contact-cta .contact-cta-action:hover, .contact-cta .contact-cta-action:focus-visible {
  color: #FFFFFF;
  background-color: #0A1F40;
  transform: translateY(-3px);
}
.contact-cta .contact-cta-action h3 {
  margin: 20px 0 10px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
}
.contact-cta .contact-cta-action p {
  max-width: 290px;
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 16px;
}
.contact-cta .contact-cta-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.contact-cta .contact-cta-action-icon svg {
  width: 100%;
  height: 100%;
}
.contact-cta .contact-cta-action-icon svg path {
  fill: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .contact-cta .contact-cta-actions {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .contact-cta .contact-cta-action {
    min-height: 190px;
    padding: 28px 24px;
  }
}
.contact-area .footer-contact {
  margin-bottom: 3rem;
}
.contact-area .footer-contact .footer-contact-item svg path {
  fill: #000000;
}
.contact-area .footer-contact .footer-contact-item a {
  background-color: #70AD4C;
  color: #000000;
}
.contact-area .footer-contact .footer-contact-item a:hover {
  background-color: #E2171A;
  color: #000000;
}
.contact-area .footer-contact .footer-contact-item a:hover svg path {
  fill: #000000;
}

@media screen and (min-width: 992px) and (max-width: 1140px) {
  .contact-cta {
    background-size: 60%;
  }
}
@media screen and (max-width: 991px) {
  .contact-cta {
    padding: 3rem 0 25rem;
    background-image: url(https://penguinpak.com/wp-content/uploads/2026/07/contact-penguin.webp);
    background-size: 600px;
  }
  .contact-cta .two-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .contact-cta {
    padding: 3rem 0 18rem;
    background-image: url(https://penguinpak.com/wp-content/uploads/2026/07/contact-penguin.webp);
    background-size: 400px;
  }
}
/****************************************************
****** CARDS  ******************************
****************************************************/
.cards .cards-introduction {
  margin-bottom: 3rem;
}
.cards .cards-introduction > :last-child {
  margin-bottom: 0;
}
.cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.cards .application-card {
  min-width: 0;
}
.cards .application-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  color: #000000;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.0901960784);
}
.cards a.application-card-inner:hover {
  color: #000000;
}
.cards a.application-card-inner:hover .application-card-image img {
  transform: scale(1.04);
}
.cards a.application-card-inner:hover h3 {
  color: #70AD4C;
}
.cards .application-card-image {
  flex: 0 0 auto;
  height: 280px;
  overflow: hidden;
}
.cards .application-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cards .application-card-content {
  flex: 1;
  padding: 28px 36px 34px;
}
.cards .application-card-content h3 {
  margin: 26px 0 16px;
  color: #132A4F;
  transition: color 0.25s ease;
}
.cards .application-card-content > h3:first-child {
  margin-top: 0;
}
.cards .application-card-tagline {
  display: inline-block;
  padding: 7px 18px;
  color: #3F7D34;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background-color: #EEF6E9;
  border-radius: 999px;
}
.cards .application-card-copy p,
.cards .application-card-copy li {
  font-size: 17px;
  line-height: 1.65;
}
.cards .application-card-copy ul {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.cards .application-card-copy ol {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  list-style: decimal;
}
.cards .application-card-copy > :last-child {
  margin-bottom: 0;
}
.cards .cards-slider {
  padding-bottom: 76px;
}
.cards .cards-slider .application-card {
  width: calc((100% - 48px) / 3);
  min-height: 620px;
  margin-right: 24px;
}
.cards .cards-slider .flickity-viewport {
  width: 100%;
}
.cards .cards-slider .flickity-prev-next-button {
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  color: #132A4F;
  background: transparent;
  border: 2px solid #132A4F;
  transform: none;
}
.cards .cards-slider .flickity-prev-next-button:hover {
  color: #FFFFFF;
  background-color: #132A4F;
}
.cards .cards-slider .flickity-prev-next-button.previous {
  left: 0;
}
.cards .cards-slider .flickity-prev-next-button.next {
  right: auto;
  left: 54px;
}
.cards .cards-slider .flickity-page-dots {
  bottom: 0;
  left: 120px;
  display: flex;
  align-items: center;
  width: auto;
  height: 44px;
  text-align: left;
  margin: 0 !important;
}
.cards .cards-slider .flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #FFFFFF;
  opacity: 1;
}
.cards .cards-slider .flickity-page-dots .dot.is-selected {
  background-color: #132A4F;
}
.cards .cards-slider .flickity-page-dots .dot:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .cards .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards .cards-slider .application-card {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 575px) {
  .cards .cards-introduction {
    margin-bottom: 2rem;
  }
  .cards .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cards .application-card-image {
    height: 220px;
  }
  .cards .application-card-content {
    padding: 24px;
  }
  .cards .cards-slider .application-card {
    width: 86%;
    min-height: 560px;
    margin-right: 16px;
  }
}
/****************************************************
****** HOW IT WORKS  ********************************
****************************************************/
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.how-it-works-step {
  min-width: 0;
  min-height: 220px;
  padding: 28px 30px;
  color: #132A4F;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.0901960784);
}
.how-it-works-step .how-it-works-number {
  display: block;
  margin-bottom: 26px;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}
.how-it-works-step .how-it-works-content h2,
.how-it-works-step .how-it-works-content h3,
.how-it-works-step .how-it-works-content h4,
.how-it-works-step .how-it-works-content h5,
.how-it-works-step .how-it-works-content h6 {
  margin: 0 0 14px;
  color: #132A4F;
  font-size: 17px;
  line-height: 1.35;
}
.how-it-works-step .how-it-works-content p,
.how-it-works-step .how-it-works-content li {
  color: #405477;
  font-size: 15px;
  line-height: 1.6;
}
.how-it-works-step .how-it-works-content > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 575px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .how-it-works-step {
    min-height: 0;
    padding: 24px;
  }
  .how-it-works-step .how-it-works-number {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
/****************************************************
****** DIAGRAM SLIDER  ******************************
****************************************************/
.diagram-slider-section {
  overflow: hidden;
}
.diagram-slider-section .diagram-slider-introduction {
  max-width: 1080px;
  margin-bottom: 0.75rem;
}
.diagram-slider-section .diagram-slider-introduction > :last-child {
  margin-bottom: 0;
}
.diagram-slider-section .diagram-slider {
  padding-bottom: 0;
}
.diagram-slider-section .diagram-slide {
  width: 100%;
  overflow: hidden;
  padding-top: 36px;
}
.diagram-slider-section .diagram-slide--columns {
  padding-bottom: 76px;
}
.diagram-slider-section .diagram-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 60px);
}
.diagram-slider-section .diagram-column-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.diagram-slider-section .diagram-column-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.diagram-slider-section a.diagram-column-image:hover img {
  transform: scale(1.05);
}
.diagram-slider-section .diagram-column-content {
  padding: 1.25rem 20px 0;
}
.diagram-slider-section .diagram-column-content h3 {
  margin: 0;
  color: #132A4F;
}
.diagram-slider-section .diagram-column-content h3 a {
  color: inherit;
}
.diagram-slider-section .diagram-column-copy {
  margin-top: 10px;
}
.diagram-slider-section .diagram-column-copy p,
.diagram-slider-section .diagram-column-copy li {
  color: #132A4F;
}
.diagram-slider-section .diagram-column-copy > :last-child {
  margin-bottom: 0;
}
.diagram-slider-section .diagram-stage {
  position: relative;
  container-type: inline-size;
  min-height: clamp(320px, 26vw, 440px);
}
.diagram-slider-section .diagram-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 70%;
  transform: translate(-50%, -50%);
}
.diagram-slider-section .diagram-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.diagram-slider-section .diagram-points {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.diagram-slider-section .diagram-point {
  --elbow-height: 44px;
  position: absolute;
  top: var(--point-y);
  left: var(--point-x);
  z-index: 2;
  width: 14px;
  height: 14px;
  background-color: #70AD4C;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.diagram-slider-section .diagram-point::after {
  position: absolute;
  width: 100px;
  height: var(--elbow-height);
  content: "";
}
.diagram-slider-section .diagram-point-left::after {
  right: 7px;
  width: min(280px, max(0px, (var(--point-x-value) - 2) * 1cqw));
  border-left: 2px solid #70AD4C;
}
.diagram-slider-section .diagram-point-left .diagram-point-content {
  top: 28px;
  right: 24px;
  right: calc((var(--point-x-value) - 2) * 1cqw - clamp(240px, 30cqw, 460px));
  width: clamp(240px, 30cqw, 460px);
  transform: none;
}
.diagram-slider-section .diagram-point-right::after {
  left: 7px;
  width: min(280px, max(0px, (98 - var(--point-x-value)) * 1cqw));
  border-right: 2px solid #70AD4C;
}
.diagram-slider-section .diagram-point-right .diagram-point-content {
  top: 28px;
  left: calc((98 - var(--point-x-value)) * 1cqw - clamp(240px, 30cqw, 460px));
  width: clamp(240px, 30cqw, 460px);
  transform: none;
}
.diagram-slider-section .diagram-point-down::after {
  top: 6px;
  border-top: 2px solid #70AD4C;
}
.diagram-slider-section .diagram-point-down .diagram-point-content {
  top: calc(var(--elbow-height) + 16px);
  bottom: auto;
}
.diagram-slider-section .diagram-point-up::after {
  top: auto;
  bottom: 6px;
  border-bottom: 2px solid #70AD4C;
}
.diagram-slider-section .diagram-point-up .diagram-point-content {
  top: auto;
  bottom: calc(var(--elbow-height) + 16px);
}
.diagram-slider-section .diagram-point-content {
  position: absolute;
  top: 50%;
  width: 280px;
  color: #405477;
  pointer-events: auto;
  transform: translateY(-50%);
}
.diagram-slider-section .diagram-point-content h2,
.diagram-slider-section .diagram-point-content h3,
.diagram-slider-section .diagram-point-content h4,
.diagram-slider-section .diagram-point-content h5,
.diagram-slider-section .diagram-point-content h6 {
  margin: 0 0 8px;
  color: #70AD4C;
  font-size: 17px;
  line-height: 1.3;
}
.diagram-slider-section .diagram-point-content p,
.diagram-slider-section .diagram-point-content li {
  color: #405477;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.diagram-slider-section .diagram-point-content > :last-child {
  margin-bottom: 0;
}
.diagram-slider-section .flickity-prev-next-button {
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  color: #132A4F;
  background: transparent;
  border: 2px solid #132A4F;
  transform: none;
}
.diagram-slider-section .flickity-prev-next-button:hover {
  color: #FFFFFF;
  background-color: #132A4F;
}
.diagram-slider-section .flickity-prev-next-button.previous {
  left: 0;
}
.diagram-slider-section .flickity-prev-next-button.next {
  right: auto;
  left: 54px;
}
.diagram-slider-section .flickity-page-dots {
  bottom: 0;
  left: 120px;
  display: flex;
  align-items: center;
  width: auto;
  height: 44px;
  margin: 0 !important;
  text-align: left;
}
.diagram-slider-section .flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #E8EDF2;
  opacity: 1;
}
.diagram-slider-section .flickity-page-dots .dot.is-selected {
  background-color: #132A4F;
}
.diagram-slider-section .flickity-page-dots .dot:first-child {
  margin-left: 0;
}

@media screen and (max-width: 900px) {
  .diagram-slider-section .diagram-slider-introduction {
    margin-bottom: 2.5rem;
  }
  .diagram-slider-section .diagram-slider {
    padding-bottom: 76px;
  }
  .diagram-slider-section .diagram-stage {
    min-height: 0;
  }
  .diagram-slider-section .diagram-columns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }
  .diagram-slider-section .diagram-image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    max-height: 480px;
    margin-bottom: 2rem;
    transform: none;
  }
  .diagram-slider-section .diagram-image img {
    max-height: 480px;
  }
  .diagram-slider-section .diagram-points {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .diagram-slider-section .diagram-point,
  .diagram-slider-section .diagram-point-left,
  .diagram-slider-section .diagram-point-right {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 18px 20px;
    background-color: #F5F8FA;
    border-left: 4px solid #70AD4C;
    border-radius: 8px;
    transform: none;
  }
  .diagram-slider-section .diagram-point::after,
  .diagram-slider-section .diagram-point-left::after,
  .diagram-slider-section .diagram-point-right::after {
    display: none;
  }
  .diagram-slider-section .diagram-point .diagram-point-content,
  .diagram-slider-section .diagram-point-left .diagram-point-content,
  .diagram-slider-section .diagram-point-right .diagram-point-content {
    position: static;
    width: auto;
    transform: none;
  }
}
@media screen and (max-width: 575px) {
  .diagram-slider-section .diagram-columns-grid {
    grid-template-columns: 1fr;
  }
  .diagram-slider-section .diagram-column-content {
    padding-right: 8px;
    padding-left: 8px;
  }
  .diagram-slider-section .diagram-points {
    grid-template-columns: 1fr;
  }
  .diagram-slider-section .diagram-point,
  .diagram-slider-section .diagram-point-left,
  .diagram-slider-section .diagram-point-right {
    padding: 16px 18px;
  }
}
/****************************************************
****** CONTACT DETAILS SHORTCODE  *******************
****************************************************/
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact-details .contact-details-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #70AD4C;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}
.contact-details .contact-details-item span {
  color: #70AD4C;
  display: flex;
  width: auto;
}
.contact-details .contact-details-item:hover, .contact-details .contact-details-item:focus-visible {
  color: #132A4F;
}
.contact-details .contact-details-item:hover span, .contact-details .contact-details-item:focus-visible span {
  color: #132A4F;
}
.contact-details .contact-details-icon {
  display: flex;
  flex: 0 0 50px;
  width: 40px;
  height: 40px;
}
.contact-details .contact-details-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-details .contact-details-icon svg path {
  fill: #70AD4C;
  transition: fill 0.25s ease;
}
.contact-details .contact-details-item:hover .contact-details-icon svg path,
.contact-details .contact-details-item:focus-visible .contact-details-icon svg path {
  fill: #132A4F;
}

@media screen and (max-width: 575px) {
  .contact-details {
    gap: 14px;
  }
  .contact-details .contact-details-item {
    gap: 12px;
    font-size: 16px;
  }
  .contact-details .contact-details-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}
/****************************************************
****** SIDE CARDS  **********************************
****************************************************/
.side-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.side-card {
  --side-card-accent: #132A4F;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 270px;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.0901960784);
}
.side-card .side-card-image {
  flex: 0 0 29%;
}
.side-card .side-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-card .side-card-icon {
  position: absolute;
  top: 20px;
  left: calc(29% - 32px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 16px;
  color: #FFFFFF;
  background-color: var(--side-card-accent);
  border-radius: 50%;
}
.side-card .side-card-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.side-card .side-card-icon svg path {
  fill: currentColor;
}
.side-card .side-card-content {
  flex: 1;
  min-width: 0;
  padding: 32px 32px 28px 52px;
}
.side-card .side-card-content h2,
.side-card .side-card-content h3,
.side-card .side-card-content h4 {
  margin-top: 0;
  color: var(--side-card-accent);
  font-size: 26px;
  line-height: 34px;
}
.side-card .side-card-content p:last-child,
.side-card .side-card-content ul:last-child,
.side-card .side-card-content ol:last-child {
  margin-bottom: 0;
}
.side-card .side-card-content ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 0 !important;
}
.side-card .side-card-content ol {
  padding-left: 1.25rem;
  list-style: decimal;
}
.side-card.no-image .side-card-icon {
  left: 24px;
}
.side-card.no-image .side-card-content {
  padding-left: 108px;
}
.side-card:hover .side-card-icon svg, .side-card:focus-within .side-card-icon svg {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .side-card .side-card-icon svg {
    transition: none;
  }
  .side-card:hover .side-card-icon svg,
  .side-card:focus-within .side-card-icon svg {
    transform: none;
  }
}
@media screen and (max-width: 1024px) {
  .side-cards-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 575px) {
  .side-card.has-image {
    flex-direction: column;
  }
  .side-card.has-image .side-card-image {
    flex: none;
    width: 100%;
    height: 220px;
  }
  .side-card.has-image .side-card-icon {
    top: 188px;
    left: 24px;
  }
  .side-card.has-image .side-card-content {
    padding: 48px 24px 28px;
  }
}
/****************************************************
****** COMPARISON TABLE  ****************************
****************************************************/
.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: unset;
  margin: 0;
  overflow: hidden;
  color: #132A4F;
  background-color: #FFFFFF;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
}
.comparison-table th,
.comparison-table td {
  border: 0;
}
.comparison-table thead {
  color: #FFFFFF;
  background-color: #132A4F;
}
.comparison-table thead th {
  padding: 18px 25px;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -1px;
  background-color: #132A4F;
}
.comparison-table thead th:first-child {
  width: 46%;
  text-align: left;
}
.comparison-table tbody th,
.comparison-table tbody td {
  padding: 18px 25px;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
  background-color: #FFFFFF;
  letter-spacing: -0.5px;
}
.comparison-table tbody th {
  text-align: left;
}
.comparison-table tbody td {
  width: 27%;
  text-align: center;
}

.comparison-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  border-radius: 50%;
}
.comparison-icon.comparison-yes {
  background-color: #70AD4C;
}
.comparison-icon.comparison-no {
  background-color: #E11C55;
}

.page-id-124 .comparison-table thead tr th {
  width: 33.333%;
}
.page-id-124 .comparison-table .comparison-benefit strong {
  color: #70AD4C;
}

@media screen and (max-width: 767px) {
  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table tbody td {
    padding: 10px 15px;
  }
}
/****************************************************
****** COMPARISON GRAPH  ****************************
****************************************************/
.comparison-graph {
  position: relative;
  padding: 3rem;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #132A4F;
  border-radius: 14px;
}
.comparison-graph .comparison-graph-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 760px;
}
.comparison-graph .comparison-graph-intro h2 {
  margin: 0 0 20px;
  color: #FFFFFF;
}
.comparison-graph .comparison-graph-intro p {
  margin: 0;
  color: #FFFFFF;
}
.comparison-graph .comparison-graph-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 52px;
  row-gap: 0 !important;
  margin: 42px 0 38px;
  padding: 0 !important;
  list-style: none;
}
.comparison-graph .comparison-graph-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  cursor: pointer;
}
.comparison-graph .comparison-graph-legend li > span {
  width: 18px;
  height: 18px;
  background-color: currentColor;
  border-radius: 50%;
}
.comparison-graph .comparison-graph-legend .polystyrene {
  color: #E5A126;
}
.comparison-graph .comparison-graph-legend .half-euro {
  color: #70AD4C;
}
.comparison-graph .comparison-graph-legend .two-stone {
  color: #C7DCEE;
}
.comparison-graph .comparison-graph-chart {
  padding: 15px 0 25px;
  background-color: #0a1c38;
  border-radius: 18px;
}
.comparison-graph .comparison-graph-chart-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-graph .comparison-graph-scrollbar {
  display: none;
}
.comparison-graph svg {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}
.comparison-graph .comparison-graph-grid line {
  stroke: #FFFFFF;
  stroke-width: 1;
  opacity: 0.28;
}
.comparison-graph .comparison-graph-labels text {
  fill: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.comparison-graph .comparison-graph-series path {
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.comparison-graph .comparison-graph-series:has(path:hover) path {
  opacity: 0.5;
}
.comparison-graph .comparison-graph-series:has(path:hover) path:hover {
  opacity: 1;
}
.comparison-graph:has(.comparison-graph-legend .polystyrene:is(:hover, :focus-visible)) .comparison-graph-series path, .comparison-graph:has(.comparison-graph-legend .half-euro:is(:hover, :focus-visible)) .comparison-graph-series path, .comparison-graph:has(.comparison-graph-legend .two-stone:is(:hover, :focus-visible)) .comparison-graph-series path {
  opacity: 0.5;
}
.comparison-graph:has(.comparison-graph-legend .polystyrene:is(:hover, :focus-visible)) .comparison-graph-series path.polystyrene-line, .comparison-graph:has(.comparison-graph-legend .half-euro:is(:hover, :focus-visible)) .comparison-graph-series path.half-euro-line, .comparison-graph:has(.comparison-graph-legend .two-stone:is(:hover, :focus-visible)) .comparison-graph-series path.two-stone-line {
  opacity: 1;
}
.comparison-graph .polystyrene-line {
  stroke: #E5A126;
}
.comparison-graph .half-euro-line {
  stroke: #70AD4C;
}
.comparison-graph .two-stone-line {
  stroke: #C7DCEE;
}

@media (prefers-reduced-motion: reduce) {
  .comparison-graph .comparison-graph-series path {
    transition: none;
  }
}
.comparison-graph-milestones {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.comparison-graph-milestone {
  min-width: 0;
  padding: 28px 25px;
  color: #132A4F;
  background-color: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.0901960784);
}
.comparison-graph-milestone .comparison-graph-time {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
}
.comparison-graph-milestone h3 {
  margin: 0 0 14px;
  color: #132A4F;
  font-size: 18px;
  line-height: 1.3;
}
.comparison-graph-milestone p {
  margin: 0;
  color: #405477;
  font-size: 16px;
  line-height: 1.55;
}

@media screen and (max-width: 1100px) {
  .comparison-graph-milestones {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .comparison-graph-milestones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .comparison-graph-milestones {
    grid-template-columns: 1fr;
  }
  .comparison-graph-milestone {
    padding: 24px;
  }
  .comparison-graph-milestone .comparison-graph-time {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .comparison-graph {
    padding: 35px 20px 25px;
    border-radius: 14px;
  }
  .comparison-graph .comparison-graph-intro {
    display: block;
  }
  .comparison-graph .comparison-graph-legend {
    gap: 10px 18px;
    margin: 30px 0;
  }
  .comparison-graph .comparison-graph-legend li {
    gap: 7px;
    font-size: 13px;
  }
  .comparison-graph .comparison-graph-legend li > span {
    width: 12px;
    height: 12px;
  }
  .comparison-graph .comparison-graph-chart {
    padding: 16px 12px 8px;
    border-radius: 12px;
  }
  .comparison-graph .comparison-graph-chart-scroll {
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .comparison-graph .comparison-graph-chart-scroll::-webkit-scrollbar {
    display: none;
  }
  .comparison-graph .comparison-graph-scrollbar {
    display: block;
    width: 100%;
    height: 10px;
    margin-top: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.24);
    border-radius: 10px;
  }
  .comparison-graph .comparison-graph-scrollbar.is-hidden {
    display: none;
  }
  .comparison-graph .comparison-graph-scrollbar span {
    display: block;
    width: 40%;
    height: 100%;
    background-color: #13A8F4;
    border-radius: inherit;
    transition: transform 0.08s linear;
  }
  .comparison-graph svg {
    width: 100%;
    min-width: 650px;
  }
}
/****************************************************
****** HERO AREAS ******************************
****************************************************/
.hero-area-two-column {
  background-color: #F6F6F6;
}
.hero-area-two-column .hero-wrapper .wrapper-inner {
  padding: 0;
}
.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 30px 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: 800px;
  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 85%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hero-area-full:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(90deg, #FFFFFF 6.28%, rgba(255, 255, 255, 0) 92.53%);
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.15));
}
.hero-area-full .wrapper {
  position: relative;
  z-index: 2;
}
.hero-area-full .wrapper .wrapper-inner {
  padding: 15rem 30px 10rem;
}
.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: 600px;
}

.page-not-found-hero p {
  max-width: 620px;
}

.page-not-found-sitemap .wrapper-inner {
  max-width: 900px;
}

.standard-page-hero p {
  max-width: 620px;
}

.standard-page-content .wrapper-inner {
  max-width: 900px;
}

.usp-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  grid-gap: 20px;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0901960784);
  position: relative;
  z-index: 2;
  margin-top: -50px;
  background-color: #FFFFFF;
}
.usp-icons .usp-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
.usp-icons .usp-icon svg {
  width: auto;
  height: 52px;
}
.usp-icons .usp-icon span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -1px;
}
.usp-icons .usp-icon#green svg path {
  fill: #70AD4C;
}
.usp-icons .usp-icon#green span {
  color: #70AD4C;
}
.usp-icons .usp-icon#light-blue svg path {
  fill: #2F70DA;
}
.usp-icons .usp-icon#light-blue span {
  color: #2F70DA;
}
.usp-icons .usp-icon#red svg path {
  fill: #E2171A;
}
.usp-icons .usp-icon#red span {
  color: #E2171A;
}
.usp-icons .usp-icon#dark-blue svg path {
  fill: #132A4F;
}
.usp-icons .usp-icon#dark-blue span {
  color: #132A4F;
}
.usp-icons .usp-icon#purple svg path {
  fill: #5F2FDA;
}
.usp-icons .usp-icon#purple span {
  color: #5F2FDA;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .usp-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 18px;
    padding: 1.5rem;
  }
  .usp-icons .usp-icon {
    grid-column: span 2;
    gap: 12px;
  }
  .usp-icons .usp-icon:nth-child(4) {
    grid-column: 2/span 2;
  }
  .usp-icons .usp-icon:nth-child(5) {
    grid-column: 4/span 2;
  }
  .usp-icons .usp-icon svg {
    flex: 0 0 auto;
    height: 42px;
    max-width: 48px;
  }
  .usp-icons .usp-icon span {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 767px) {
  .usp-icons {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.75rem 1.25rem;
    margin-top: -30px;
  }
  .usp-icons .usp-icon {
    justify-self: center;
    width: min(100%, 320px);
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(19, 42, 79, 0.1);
  }
  .usp-icons .usp-icon:last-child {
    border-bottom: 0;
  }
  .usp-icons .usp-icon svg {
    flex: 0 0 42px;
    width: 42px;
    height: 36px;
  }
  .usp-icons .usp-icon span {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.5px;
  }
  .usp-icons .usp-icon span br {
    display: none;
  }
}
/****************************************************
****** 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: "Montserrat", sans-serif;
  color: #132A4F;
}
.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: #70AD4C;
}
.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;
}
.tabs .tab-buttons .tab-button {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #132A4F;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
.tabs .tab-buttons .tab-button.active {
  color: #70AD4C;
}
.tabs .tab-buttons .tab-button.active::after {
  content: "";
  display: block;
  height: 3px;
  background: #70AD4C;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.tabs .tab-buttons .tab-button:hover {
  color: #70AD4C;
}
.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 ******************************
****************************************************/
/****************************************************
****** BLOG  ******************************
****************************************************/
.blog-post-grid {
  margin-bottom: 3rem;
}

ul.pager {
  list-style-type: none !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}
ul.pager li a {
  background: #f0f0f0;
  padding: 5px 15px;
}

/****************************************************
****** FOOTER  ******************************
****************************************************/
footer {
  background-color: #F7F7F7;
  position: relative;
}
footer .wrapper {
  padding: 5rem 0;
}
footer .wrapper .footer-menu-logo {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .wrapper .footer-menu-logo ul.main-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer .wrapper .footer-menu-logo ul.main-navigation li {
  padding: 5px 0 !important;
  margin-right: 0;
}
footer .wrapper .footer-menu-logo ul.main-navigation li a {
  color: #132A4F;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  padding: 2px 0;
  display: inline-block;
}
footer .wrapper .footer-menu-logo ul.main-navigation li a:hover {
  color: #70AD4C;
}
footer .wrapper .footer-menu-logo ul.main-navigation li.menu-item-134 a {
  background-color: #132A4F;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
}
footer .wrapper .footer-menu-logo ul.main-navigation li.menu-item-134:hover a {
  background-color: #70AD4C;
}
footer p, footer span, footer a {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
footer h6 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}

.bottom-bar {
  padding: 25px 0;
}
.bottom-bar .wrapper-inner {
  text-align: center;
}
.bottom-bar p, .bottom-bar li, .bottom-bar span, .bottom-bar a {
  font-size: 12px;
  line-height: 22px;
  opacity: 0.7;
}
.bottom-bar .bottom-bar-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bottom-bar .bottom-bar-links li {
  display: flex;
  align-items: center;
  margin: 0;
}
.bottom-bar .bottom-bar-links li:not(:last-child)::after {
  content: "|";
  margin: 0 4px;
  opacity: 0.7;
}
.bottom-bar a {
  font-weight: 600;
}
.bottom-bar a:hover {
  color: #2F70DA;
}

.footer-links {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgb(238, 238, 238);
}
.footer-links a {
  opacity: 1;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #132A4F;
}
.footer-links a svg {
  height: 40px;
  width: auto;
}
.footer-links a:hover {
  color: #70AD4C;
}
.footer-links a:hover svg path {
  fill: #70AD4C;
}

/****************************************************
****** MEDIA QUERIES ******************************
****************************************************/
/** IE11/10 **/
/*** MIN WIDTH 1200PX ***/
/*** MAX WIDTH 1199PX ***/
/*** MAX WIDTH 1199PX ***/
@media screen and (max-width: 991px) {
  .main-logo svg {
    height: 40px !important;
    width: auto;
  }
  footer .wrapper .footer-menu-logo {
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .wrapper .footer-menu-logo .main-navigation {
    width: 100%;
    justify-content: center;
  }
  .footer-links {
    gap: 25px;
  }
  .footer-links a {
    font-size: 16px;
  }
  .footer-links a svg {
    height: 30px;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-content {
    width: 100%;
    max-width: unset;
    order: 2;
    padding: 3rem 30px 3rem 30px;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image {
    width: 100%;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image picture img {
    max-height: 400px;
  }
  .hide-tablet,
  header .n-bar .n-contact .email,
  header .n-bar .n-contact .telephone {
    display: none !important;
  }
  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, .hero-wrapper .wrapper-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nbar-tog {
    display: block;
  }
  .n-nav {
    display: none !important;
  }
  .four-col-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
  }
  .three-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar {
    padding: 15px 0;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
    width: auto;
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .two-col-grid,
  .tabs .tab-contents .tab-content .two-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
  footer .wrapper .footer-menu-logo ul.main-navigation {
    gap: 5px;
  }
  footer .wrapper .footer-menu-logo ul.main-navigation li {
    width: 100%;
  }
  footer .wrapper .footer-menu-logo ul.main-navigation li.menu-item-134 a {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .three-col-grid,
  .four-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-area-full .wrapper .wrapper-inner {
    padding: 10rem 30px 4rem;
  }
}
/*** MAX WIDTH 460PX ***/

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