@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Figtree", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 25px;
}

h1, h2, h3, h4 {
  color: #023047;
  margin: 24px 0 16px 0;
  font-weight: 600;
}
h1:first-child, h1:only-child, h2:first-child, h2:only-child, h3:first-child, h3:only-child, h4:first-child, h4:only-child {
  margin-top: 0;
}

h1, .h1 {
  font-size: 32px;
  line-height: 40px;
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 40px;
    line-height: 48px;
  }
}

h2, .h2 {
  font-size: 28px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

h3, .h3 {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  h3, .h3 {
    font-size: 28px;
    line-height: 36px;
  }
}

h4, .h4 {
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 24px;
    line-height: 32px;
  }
}

p {
  font-size: 18px;
  line-height: 26px;
  color: #5D6471;
  margin: 0 0 16px 0;
}
p:last-child, p:only-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 16px 32px;
}
ul:only-child, ul:last-child,
ol:only-child,
ol:last-child {
  margin-bottom: 0;
}
ul li,
ol li {
  color: #023047;
}

.branded-list ul, .branded-list ol {
  list-style-type: none;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.branded-list ul li, .branded-list ol li {
  position: relative;
  padding-left: 28px;
}
.branded-list ul li::before, .branded-list ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("../svg/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 12px 12px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #023047;
}

.hamburger-box {
  width: 28px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: #023047;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 14px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-4px, -5px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-90deg);
}

.hamburger {
  display: flex;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  height: 3px;
}

.primary-nav {
  display: none;
}
@media (min-width: 1024px) {
  .primary-nav {
    display: block;
  }
}
.primary-nav > .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .primary-nav > .menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.primary-nav .menu-item {
  position: relative;
  border-bottom: 1px solid #DDDDDD;
}
@media (min-width: 1024px) {
  .primary-nav .menu-item {
    border-bottom: none;
  }
}
.primary-nav .menu-item > a {
  display: block;
  padding: 16px;
  color: #023047;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
@media (min-width: 1024px) {
  .primary-nav .menu-item > a {
    padding: 8px 0;
  }
}
.primary-nav .menu-item > a:hover, .primary-nav .menu-item > a:focus-visible {
  color: #23A6C5;
}
.primary-nav .menu-item.current-menu-item > a, .primary-nav .menu-item.current-menu-parent > a, .primary-nav .menu-item.current-menu-ancestor > a {
  color: #23A6C5;
}
.primary-nav .menu-item:last-child {
  border-bottom: none;
}
@media (max-width: 1023.98px) {
  .primary-nav .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .primary-nav .menu-item-has-children > a {
    flex: 1 1 auto;
  }
}
@media (min-width: 1024px) {
  .primary-nav .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    margin-left: 0.375rem;
    vertical-align: 0.15em;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.15s ease;
  }
}
.primary-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023.98px) {
  .primary-nav .menu-item-has-children > .sub-menu {
    display: none;
    flex-basis: 100%;
    padding-left: 0;
  }
  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    display: flex;
    flex-direction: column;
    background-color: #F4F6F8;
  }
}
@media (min-width: 1024px) {
  .primary-nav .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }
  .primary-nav .menu-item-has-children > .sub-menu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  .primary-nav .menu-item-has-children > .sub-menu .sub-menu {
    top: -0.5rem;
    left: 100%;
  }
  .primary-nav .menu-item-has-children:hover > .sub-menu,
  .primary-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .primary-nav .menu-item-has-children:hover > a::after,
  .primary-nav .menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 1023.98px) {
  .primary-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 0;
    height: calc(100dvh - 90px);
    overflow-y: auto;
  }
}

.submenu-toggle {
  display: none;
}
@media (max-width: 1023.98px) {
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: #023047;
    flex: 0 0 auto;
  }
}
.submenu-toggle__icon {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.submenu-toggle[aria-expanded=true] .submenu-toggle__icon {
  transform: rotate(45deg);
}

@media (max-width: 1023.98px) {
  body.mobile-nav-open {
    overflow: hidden;
  }
}
.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 1;
}

.hamburger {
  padding: 0;
}

.hero p {
  color: #023047;
}
.hero p a {
  text-decoration: underline;
}
.hero p a:hover {
  text-decoration: none;
}

footer {
  position: relative;
}
footer .menu {
  padding: 0;
  margin: 0;
}
footer .menu li a {
  color: #FFFFFF;
  display: inline-flex;
  padding: 4px 0;
}
footer .menu li a:hover {
  text-decoration: underline;
}
footer .prefs-settings-link {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 13px;
  line-height: 17px;
  color: #FFFFFF;
  display: inline-flex;
  padding: 0;
  font-weight: 400;
}
footer .company-address p {
  color: #FFFFFF;
  margin-bottom: 16px;
}
footer .footer-legal .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 16px;
}
footer .footer-legal .menu li a {
  font-size: 13px;
  line-height: 16px;
}
footer .footer-legal .menu li a:hover {
  text-decoration: underline;
}
footer .branded-divider {
  position: absolute;
  bottom: 0;
  left: -10%;
  height: 24px;
  width: 120%;
  max-width: unset;
}
@media (min-width: 768px) {
  footer .branded-divider {
    width: 100%;
    left: 0;
  }
}

body button {
  font-family: "Figtree", Arial, sans-serif;
  font-weight: 600;
}
body .ff-default .ff-el-form-control {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 12px;
  border: 1px solid #DDDDDD;
}
body .ff-default .ff-el-input--label label {
  font-weight: 600;
  color: #023047;
}
body .fluentform .ff-el-group.ff_submit_btn_wrapper {
  margin-bottom: 0;
}
body .fluentform button.ff-btn-submit {
  background-color: #023047;
  font-weight: 600;
  color: #FFFFFF;
  border-radius: 1000px;
  display: inline-flex;
  padding: 12px 24px;
  border: none;
  align-items: center;
  min-height: 48px;
}
body .ff-message-success {
  background-color: #45BE4D;
  border: none;
  border-radius: 8px;
  padding: 24px;
  color: #FFFFFF;
  box-shadow: none;
  font-weight: 600;
}
body .ff-message-success p {
  color: #FFFFFF;
}
body .ff-el-tc p {
  font-size: 13px;
  line-height: 16px;
}
body .ff-el-tc p a {
  text-decoration: underline;
  font-size: 13px;
  line-height: 16px;
}
body .fluentform .ff-el-tc label.ff_tc_label > span {
  padding-top: 0 !important;
}
body .fluentform .ff-el-form-check.ff-el-tc {
  margin-bottom: 0;
}
body .fluentform .ff-el-tc label.ff_tc_label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.horizon-prefs {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  width: calc(100% - 32px);
  max-width: 360px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(2, 48, 71, 0.16);
  display: none;
}
.horizon-prefs.is-visible {
  display: block;
}
.horizon-prefs__title {
  margin: 0 0 8px;
  color: #023047;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.horizon-prefs__text {
  margin: 0 0 16px;
  color: #5D6471;
  font-size: 14px;
  line-height: 20px;
}
.horizon-prefs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.horizon-prefs__btn {
  border: 0;
  cursor: pointer;
  border-radius: 9999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.horizon-prefs__btn:hover {
  opacity: 0.85;
}
.horizon-prefs__btn--accept {
  background-color: #023047;
  color: #FFFFFF;
}
.horizon-prefs__btn--reject {
  background-color: #F4F6F8;
  color: #023047;
}
.horizon-prefs__link {
  display: inline-block;
  margin-top: 12px;
  color: #023047;
  font-size: 13px;
  line-height: 18px;
  text-decoration: underline;
}

body.page-template-reward-foundations .footer-logo {
  display: none;
}
body.page-template-reward-foundations .form-content p:first-child {
  color: #023047;
  font-size: 20px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
body.page-template-reward-foundations .form-content p strong {
  color: #023047;
  font-size: 20px;
  line-height: 18px;
  font-weight: 600;
}
body.page-template-reward-foundations .ff-message-success p a {
  text-decoration: underline;
}

body.single-product #wcpay-payment-request-button,
body.single-product #wcpay-payment-request-wrapper,
body.single-product .wcpay-payment-request-button,
body.single-product #wcpay-express-checkout-element,
body.single-product #wcpay-express-checkout-button-separator,
body.single-product .wcpay-express-checkout-wrapper,
body.single-product #wcpay-woopay-button,
body.single-product .wcpay-woopay-button,
body.single-product .wc-block-components-express-payment,
body.single-product .wc-block-components-express-payment-continue-rule {
  display: none !important;
}
body.single-product .product_meta {
  display: none !important;
}
body.single-product .toolkit-savings {
  background-color: #F4F6F8;
}
body.single-product .single-product__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #023047;
  color: #023047;
  font-weight: 400;
  border-radius: 1000px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 14px;
  background: transparent;
  margin-top: 24px;
  cursor: pointer;
}
body.single-product .single-product__view-all img {
  transition: all 0.08s ease-in-out;
  transform: rotate(0deg);
}
body.single-product .single-product__view-all[aria-expanded=true] img {
  transform: rotate(45deg);
}
body.single-product .purchase-price-text span {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  font-family: "Figtree", Arial, sans-serif;
  color: #023047;
}
body.single-product .single_add_to_cart_button.single-product__pay {
  font-family: "Figtree", Arial, sans-serif;
  background-color: #023047;
  color: #FFFFFF;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  padding: 16px 24px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
body.single-product .single-product__price span {
  font-size: 32px;
  line-height: 40px;
}
body.single-product .single-product__tab {
  transition: all 0.08s ease-in-out;
  background: rgba(255, 255, 255, 0);
  border-radius: 4px;
  border: none;
  padding: 8px;
  font-weight: 400;
  color: #5D6471;
  cursor: pointer;
  font-family: "Figtree", arial, sans-serif;
}
body.single-product .single-product__tab[aria-selected=true] {
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  font-weight: 600;
  color: #023047;
}
body.single-product .single-product__card-tab {
  transition: all 0.08s ease-in-out;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 400;
  color: #5D6471;
  cursor: pointer;
  font-family: "Figtree", arial, sans-serif;
}
body.single-product .single-product__card-tab[aria-selected=true] {
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  font-weight: 600;
  color: #023047;
}
body.single-product .single-product__check input[type=checkbox] {
  accent-color: #023047;
  width: 16px;
  height: 16px;
}
body.single-product .woocommerce-message, body.single-product .woocommerce-info, body.single-product .woocommerce-error, body.single-product .woocommerce-noreviews, body.single-product p.no-comments {
  list-style-type: none;
  padding: 0;
  margin: 0 16px;
}

body.page-template-home .hero-inner {
  position: relative;
}
body.page-template-home .hero-inner:before {
  content: "";
  background: url("../img/hero-bg-mobile.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .hero-inner:before {
    background: url("../img/hero-bg-desktop.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

body.page-template-about-us .hero-inner {
  position: relative;
}
body.page-template-about-us .hero-inner:before {
  content: "";
  background: url("../img/hero-bg-mobile.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  body.page-template-about-us .hero-inner:before {
    background: url("../img/hero-bg-desktop.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

body.page-template-project-delivery .hero-inner {
  position: relative;
}
body.page-template-project-delivery .hero-inner:before {
  content: "";
  background: url("../img/hero-bg-2-mobile.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  body.page-template-project-delivery .hero-inner:before {
    background: url("../img/hero-bg-2-desktop.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

body.woocommerce-checkout header.entry-header {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  body.woocommerce-checkout header.entry-header {
    padding: 0 0;
  }
}
body.woocommerce-checkout header.entry-header h1 {
  margin-bottom: 0;
}
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 0 0;
  }
}
body.woocommerce-checkout .wc-block-components-checkout-order-summary__title {
  margin-top: 0;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__image,
body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image > img,
body.woocommerce-checkout .widget-area {
  display: none;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  padding-left: 0;
}
body.woocommerce-checkout .wc-block-components-product-badge {
  background-color: #F4F6F8;
  color: #23A6C5;
  font-size: 14px;
  line-height: 18px;
  border-radius: 1000px;
  padding: 4px 8px;
}
body.woocommerce-checkout .wc-block-components-product-badge span {
  font-size: 14px;
  line-height: 18px;
}
body.woocommerce-checkout .wc-block-components-product-price__value.is-discounted {
  background-color: #F4F6F8;
}
body.woocommerce-checkout .wc-block-components-totals-item__value {
  font-size: 14px;
  line-height: 14px;
}
body.woocommerce-checkout .wc-block-components-totals-item__value span {
  font-size: 17px;
  line-height: 25px;
}
body.woocommerce-checkout button.wc-block-components-checkout-place-order-button {
  background-color: #45BE4D;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 1000px;
  font-size: 16px;
  line-height: 16px;
  padding: 16px 24px;
  border: none;
}
body.woocommerce-checkout .wc-block-checkout__order-notes {
  display: none !important;
}

.woocommerce-notices-wrapper {
  max-width: 1024px;
  margin: 0 auto;
}
.woocommerce-notices-wrapper li {
  padding: 16px;
}
.woocommerce-notices-wrapper ul.woocommerce-error li {
  color: white;
}
.woocommerce-notices-wrapper ul.woocommerce-error a {
  color: white;
  text-decoration: underline;
}
.woocommerce-notices-wrapper .woocommerce-message {
  padding: 16px !important;
  color: white;
}
.woocommerce-notices-wrapper .woocommerce-message a {
  color: #FFFFFF;
  text-decoration: underline;
}

body.woocommerce-cart header.entry-header {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  body.woocommerce-cart header.entry-header {
    padding: 0 0;
  }
}
body.woocommerce-cart header.entry-header h1 {
  margin-bottom: 0;
}
body.woocommerce-cart .wp-block-woocommerce-filled-cart-block {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  body.woocommerce-cart .wp-block-woocommerce-filled-cart-block {
    padding: 0 0;
  }
}
body.woocommerce-cart .widget-area {
  display: none;
}
body.woocommerce-cart .wc-block-components-product-badge {
  background-color: #F4F6F8;
  color: #23A6C5;
  font-size: 14px;
  line-height: 18px;
  border-radius: 1000px;
  padding: 4px 8px;
}
body.woocommerce-cart .wc-block-components-product-badge span {
  font-size: 14px;
  line-height: 18px;
}
body.woocommerce-cart .wc-block-components-product-price__value.is-discounted {
  background-color: #F4F6F8;
}
body.woocommerce-cart .wc-block-cart__submit-button {
  background-color: #45BE4D;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 1000px;
  font-size: 16px;
  line-height: 16px;
  padding: 16px 24px;
  border: none;
}

body.woocommerce-order-received .entry-content {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  body.woocommerce-order-received .entry-content {
    padding: 0 0;
  }
}
body.woocommerce-order-received p.woocommerce-thankyou-order-received {
  background-color: #45BE4D;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
body.woocommerce-order-received ul.woocommerce-order-overview {
  border: 1px solid #DDDDDD;
  padding: 16px 16px 16px 32px;
  border-radius: 8px;
  margin: 0 0 24px 0;
}
body.woocommerce-order-received .woocommerce-table {
  border-collapse: collapse;
}
body.woocommerce-order-received .woocommerce-table td, body.woocommerce-order-received .woocommerce-table th {
  border: 1px solid #DDDDDD;
  border-collapse: collapse;
  padding: 8px;
}
body.woocommerce-order-received .woocommerce-table td.download-file a, body.woocommerce-order-received .woocommerce-table th.download-file a {
  background-color: #F4F6F8;
  color: #023047;
  text-decoration: underline;
  display: inline-flex;
  padding: 4px;
}
body.woocommerce-order-received .wc-payment-gateway-method-logo-wrapper.wc-payment-card-logo img {
  max-height: 32px;
}

.footer-logo {
  display: none;
}

*, html {
  scroll-behavior: smooth;
}

body {
  padding-top: 90px;
}
@media (min-width: 1024px) {
  body {
    padding-top: 104px;
  }
}

.branded-card {
  position: relative;
  overflow: hidden;
}
.branded-card .divider {
  position: absolute;
  bottom: 0;
  left: -10%;
  height: 24px;
  width: 120%;
  max-width: none;
}

.usp-card .content p:first-child,
.usp-card .content p:first-of-type {
  color: #023047;
}

body.page-template-toolkits .prod-short-desc p,
body.page-template-toolkit-bundles .prod-short-desc p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
body.page-template-toolkits .prod-short-desc p strong,
body.page-template-toolkit-bundles .prod-short-desc p strong {
  color: #023047;
  font-size: 16px;
  line-height: 24px;
}
body.page-template-toolkits .prod-short-desc ul,
body.page-template-toolkit-bundles .prod-short-desc ul {
  margin-bottom: 8px;
}
body.page-template-toolkits .prod-short-desc ul li,
body.page-template-toolkit-bundles .prod-short-desc ul li {
  font-size: 14px !important;
  line-height: 18px !important;
  color: #5D6471;
  padding-left: 24px;
}
body.page-template-toolkits .prod-short-desc ul li:before,
body.page-template-toolkit-bundles .prod-short-desc ul li:before {
  width: 16px;
  height: 16px;
  top: 2px;
}

body.page-template-toolkit-bundles .toolkit-card h3,
body.page-template-toolkits .toolkit-card h3 {
  margin-bottom: 8px;
}

.toolkit-info p {
  font-size: 14px;
  line-height: 18px;
  font-style: italic;
}

.toolkit-price del span {
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
}
.toolkit-price ins {
  font-size: 17px !important;
  line-height: 25px !important;
  font-weight: 600 !important;
  background: transparent;
}

.toolkit-savings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px !important;
  line-height: 16px !important;
  padding: 4px 8px;
  border-radius: 1000px;
  background-color: #FFFFFF;
  color: #23A6C5;
}
.toolkit-savings span {
  font-size: 14px !important;
  line-height: 18px !important;
}

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