/**
       *
       * Outputs css custom properties with a prefix into :root
       *
       * @param string $css_variables  css custom property name and value
       * @param string $prefix  Default "witsage" prefix added to each custom property
**/
/* ==========================================================================
   Theming
   Mostly CSS custom properties that are used in later stylesheets
   ========================================================================== */
.pointer-events-none {
  pointer-events: none;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.bottom-0 {
  bottom: 0px;
}
.left-0 {
  left: 0px;
}
.right-0 {
  right: 0px;
}
.top-0 {
  top: 0px;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.m-0 {
  margin: 0px;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.-mt-3 {
  margin-top: -0.75rem;
}
.-mt-4 {
  margin-top: -1rem;
}
.-mt-8 {
  margin-top: -2rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-\[88px\] {
  height: 88px;
}
.h-full {
  height: 100%;
}
.w-\[220px\] {
  width: 220px;
}
.w-full {
  width: 100%;
}
.max-w-100 {
  max-width: 100px;
}
.max-w-1000 {
  max-width: 1000px;
}
.max-w-1100 {
  max-width: 1100px;
}
.max-w-1150 {
  max-width: 1150px;
}
.max-w-1200 {
  max-width: 1200px;
}
.max-w-1300 {
  max-width: 1300px;
}
.max-w-200 {
  max-width: 200px;
}
.max-w-250 {
  max-width: 250px;
}
.max-w-300 {
  max-width: 300px;
}
.max-w-350 {
  max-width: 350px;
}
.max-w-450 {
  max-width: 450px;
}
.max-w-500 {
  max-width: 500px;
}
.max-w-550 {
  max-width: 550px;
}
.max-w-600 {
  max-width: 600px;
}
.max-w-650 {
  max-width: 650px;
}
.max-w-700 {
  max-width: 700px;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-850 {
  max-width: 850px;
}
.max-w-950 {
  max-width: 950px;
}
.max-w-\[150px\] {
  max-width: 150px;
}
.flex-1 {
  flex: 1 1 0%;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.border {
  border-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-r {
  border-right-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-blue {
  border-color: var(--color-secondary);
}
.border-b-black {
  border-bottom-color: var(--color-site-black);
}
.border-r-black {
  border-right-color: var(--color-site-black);
}
.bg-black {
  background-color: var(--color-site-black);
}
.bg-blue {
  background-color: var(--color-secondary);
}
.bg-grey {
  background-color: var(--color-site-grey);
}
.bg-white {
  background-color: var(--color-site-white);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.to-white {
  --tw-gradient-to: var(--color-site-white) var(--tw-gradient-to-position);
}
.p-0 {
  padding: 0px;
}
.p-4 {
  padding: 1rem;
}
.p-7 {
  padding: 1.75rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-11 {
  padding-bottom: 2.75rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-10 {
  font-size: 10px;
}
.text-12 {
  font-size: 12px;
}
.text-18 {
  font-size: 18px;
}
.text-20 {
  font-size: 20px;
}
.text-24 {
  font-size: 24px;
}
.font-bold {
  font-weight: 700;
}
.font-normal {
  font-weight: 400;
}
.text-black {
  color: var(--color-site-black);
}
.text-blue {
  color: var(--color-secondary);
}
.text-white {
  color: var(--color-site-white);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
/* purgecss start ignore */
/*** Variables ***/
/*** Structure ***/
body {
  margin: 0;
}

/*** Typography ***/
* {
  font-variant-numeric: lining-nums !important;
}

::placeholder,
div,
input,
li,
p,
span,
ul {
  font-family: filson-pro, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-site-black);
  line-height: 140%;
}

p {
  margin-bottom: 16px;
}
p:last-of-type {
  margin-bottom: 0;
}

span {
  font-weight: inherit;
  color: inherit;
}

::placeholder {
  font-family: filson-pro, sans-serif;
}

a {
  font-weight: 400;
  text-decoration: none;
  color: var(--color-secondary);
}
a:hover {
  color: var(--color-site-black);
}

.brother, ul#primary-menu li a, .btn, .frm_fields_container .frm_submit button, .wp-block-button__link {
  font-family: brother-1816, sans-serif;
}

.filson {
  font-family: filson-pro, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: brother-1816, sans-serif;
  position: relative;
  color: var(--color-secondary);
  font-weight: bold !important;
  line-height: 120%;
  margin-top: 0;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  font-size: inherit;
}
h1.text-white,
h2.text-white,
h3.text-white,
h4.text-white,
h5.text-white {
  color: white;
}

.page-title, .hero-title {
  font-size: 40px;
}

.page-sub-title {
  font-size: 24px;
}

h1, .h1 {
  font-size: 32px;
}

h2, .h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

h3, .h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4, .h4 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: normal;
}

h5, .h5 {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 120%;
  color: var(--color-site-black);
  font-weight: normal;
}

.home .page-title, .home .hero-title {
  font-size: 40px;
}
.home .page-sub-title {
  font-size: 32px;
}
.home h1, .home .h1 {
  font-size: 24px;
}
.home h2, .home .h2 {
  font-size: 32px;
}
.home h3, .home .h3 {
  font-size: 24px;
}
.home h4, .home .h4 {
  font-size: 16px;
}

.filter-black {
  filter: var(--filter-color-black);
}

.filter-blue {
  filter: var(--filter-color-blue);
}

.filter-teal {
  filter: var(--filter-color-teal);
}

strong {
  font-weight: bold;
}

.text-18 p {
  font-size: 18px;
}

.text-24 p,
.text-24 span,
.laptop\:text-24 p,
.laptop\:text-24 span {
  font-size: 24px;
}

.text-32 p,
.text-32 span,
.laptop\:text-32 p,
.laptop\:text-32 span {
  font-size: 32px;
}

.text-16 p,
.laptop\:text-16 p {
  font-size: 16px;
}

.leading-normal p {
  line-height: 1.5;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium span,
.font-medium p {
  font-weight: 500;
}

.text-20 p {
  font-size: 20px;
  line-height: 28px;
}

.text-white p, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white span, .text-white a, .text-white li, .text-white div {
  color: white;
}

.text-black h2, .text-black h3, .text-black li, .text-black span, .text-black p {
  color: var(--color-site-black);
}

.text-10 div, .text-10 span {
  font-size: 10px;
}

.leading-0 {
  line-height: 0;
}

/*** Universal ***/
*,
::before,
::after {
  box-sizing: border-box;
}

.frm_fields_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.frm_fields_container input, .frm_fields_container textarea, .frm_fields_container select {
  background-color: var(--color-site-white) !important;
  border: 1px solid var(--color-secondary) !important;
  border-radius: 4px;
  margin-bottom: 8px;
  color: var(--color-secondary) !important;
  font-weight: 900;
}
.frm_fields_container input::placeholder, .frm_fields_container textarea::placeholder, .frm_fields_container select::placeholder {
  color: var(--color-secondary) !important;
}
.frm_fields_container input option, .frm_fields_container textarea option, .frm_fields_container select option {
  font-weight: bold;
}
.frm_fields_container .frm_submit {
  margin: 8px auto 0;
}
.frm_fields_container .frm_submit button {
  cursor: pointer;
}
.frm_fields_container .frm6 {
  max-width: 48%;
}

.frm_error_style {
  color: var(--color-site-black);
  font-size: 12px;
  margin-bottom: 8px;
}

.frm_error {
  margin-top: -5px;
  margin-bottom: 12px;
  color: red;
}

.frm_form_field {
  flex: 1 100%;
  margin-bottom: 9px;
}

.frm_form_field.frm_half {
  flex: 1 50%;
  max-width: 49%;
}

legend {
  display: none;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

div,
section {
  position: relative;
}

* {
  transition: background 0.4s, color 0.4s, border-color 0.4s, filter 0.4s, opacity 0.4s, max-width 0.4s, max-height 0.4s, border 0.4s, padding 0.4s;
}

*:focus {
  outline: none;
}

img.iconImage {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

.OSX .btn, .OSX .frm_fields_container .frm_submit button, .frm_fields_container .frm_submit .OSX button, .OSX .wp-block-button__link {
  padding: 12px;
}

.btn, .frm_fields_container .frm_submit button, .wp-block-button__link {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  min-width: 120px;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  border: none;
  line-height: 100%;
  margin-top: 16px;
}
.btn img.iconImage, .frm_fields_container .frm_submit button img.iconImage, .wp-block-button__link img.iconImage {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  max-height: 14px;
}
.btn.bigBtn, .frm_fields_container .frm_submit button.bigBtn, .bigBtn.wp-block-button__link {
  font-size: 20px;
  padding: 12px 14px;
}
.btn.blueBtn, .frm_fields_container .frm_submit button, .wp-block-button__link {
  background: var(--color-secondary);
  color: white;
}
.btn.blueBtn:hover, .frm_fields_container .frm_submit button:hover, .wp-block-button__link:hover {
  background: var(--color-site-black);
  color: white;
}
.btn.tealBtn, .frm_fields_container .frm_submit button.tealBtn, .tealBtn.wp-block-button__link {
  background: var(--color-primary);
  color: var(--color-site-black);
}
.btn.tealBtn:hover, .frm_fields_container .frm_submit button.tealBtn:hover, .tealBtn.wp-block-button__link:hover {
  background: var(--color-site-black);
  color: white;
}
.btn.tealBtn.blueBtn, .frm_fields_container .frm_submit button.tealBtn, .tealBtn.wp-block-button__link {
  background: var(--color-secondary);
  color: white;
}
.btn.tealBtn.blueBtn:hover, .frm_fields_container .frm_submit button.tealBtn:hover, .tealBtn.wp-block-button__link:hover {
  background: var(--color-site-black);
  color: white;
}

.ghostBtn:hover {
  background: white;
  color: var(--color-secondary);
}

.social-icons-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.social-icons-container .social-media-account {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
}
.social-icons-container .social-media-account img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.social-icons-container .social-media-account img.passive-icon {
  opacity: 1;
}
.social-icons-container .social-media-account:hover .passive-icon {
  opacity: 0;
}

.rounded-6 {
  border-radius: 6px;
}

.rounded-8 {
  border-radius: 8px !important;
}

.rounded-14 {
  border-radius: 14px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-20 {
  border-radius: 20px;
}

.rounded-24 {
  border-radius: 24px;
}

.align-text-top {
  vertical-align: text-top !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.overlay.home-hero-overlay {
  background-color: rgba(6, 58, 98, 0.82);
}
.overlay.horizontal-gradient-overlay {
  height: 80px;
  top: 0;
  z-index: 1;
  background-image: linear-gradient(-180deg, rgb(243, 245, 247) 0%, rgba(243, 245, 247, 0.2) 50%, rgba(243, 245, 247, 0) 100%);
}
.overlay.horizontal-gradient-overlay.reverse {
  top: unset;
  bottom: -1px;
  background-image: linear-gradient(0deg, rgb(243, 245, 247) 0%, rgba(243, 245, 247, 0.2) 50%, rgba(243, 245, 247, 0) 100%);
}
.overlay.horizontal-gradient-overlay.blue-overlay {
  background-image: linear-gradient(0deg, rgb(33, 113, 170) 0%, rgba(33, 113, 170, 0) 100%);
}
.overlay.vertical-gradient-overlay {
  height: 100%;
  width: 80px;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, rgb(243, 245, 247) 0%, rgba(243, 245, 247, 0) 100%);
}
.overlay.vertical-gradient-overlay.reverse {
  left: unset;
  right: 0;
  background-image: linear-gradient(-90deg, rgb(243, 245, 247) 0%, rgba(243, 245, 247, 0) 100%);
}
.overlay.vertical-gradient-overlay.blue-overlay {
  background-image: linear-gradient(90deg, rgb(33, 113, 170) 0%, rgba(33, 113, 170, 0) 100%);
}

.hoverIcon,
.passiveIcon {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hoverIcon {
  z-index: 2;
  opacity: 0 !important;
}

.hoverSet:hover .hoverIcon,
.hoverSetOuterContainer:hover .hoverIcon {
  opacity: 1 !important;
}

ul {
  list-style: disc;
  padding-left: 25px;
  margin: 10px 0;
}
ul li {
  color: var(--color-site-black);
}
ul li::marker {
  color: var(--color-primary);
}

form input,
form select {
  height: 40px !important;
}
form input,
form select,
form textarea {
  background-color: var(--color-site-white);
  border: 1px solid var(--color-site-black) !important;
  border-radius: 0;
  padding: 8px 10px 4px;
  width: 100%;
}
form input::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: var(--color-site-black) !important;
}
form label {
  display: block;
  text-align: left;
}
form .frm_verify {
  display: none;
}

.labelHide label {
  display: none !important;
}

img.alignright {
  float: right;
}

img.alignleft {
  float: left;
}

.se-widget-button {
  cursor: pointer;
}

.center-x {
  left: 50%;
  transform: translateX(-50%);
}

.center-y, .error-links ul li:before, .testimonials-section .testimonials-watermark {
  top: 50%;
  transform: translateY(-50%);
}

.center-xy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordionItem {
  margin-bottom: 16px;
}
.accordionItem .accordionTitle {
  cursor: pointer;
  line-height: 130%;
  background: var(--color-site-grey);
  color: var(--color-secondary);
  padding: 17px 52px 17px 15px;
  border-radius: 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.accordionItem .accordionTitle:after {
  content: url(/wp-content/uploads/icon_minus.svg);
  transform: rotate(90deg);
  position: absolute;
  right: 20px;
  line-height: 0;
  transition: transform 0.4s;
}
.accordionItem .accordionTitle:before {
  content: url(/wp-content/uploads/icon_minus.svg);
  position: absolute;
  right: 20px;
  line-height: 0;
  transition: transform 0.4s;
}
.accordionItem .accordionContent {
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  overflow: hidden;
}
.accordionItem .accordionContent p:first-of-type {
  margin-top: 0;
}
.accordionItem.active .accordionTitle:after {
  transform: rotate(180deg);
}
.accordionItem.active .accordionContent {
  max-height: 1000px;
  opacity: 1;
  padding: 10px 20px;
}

.bg-none {
  background: none !important;
}

img {
  max-width: 100%;
}

.border-t-6px {
  border-top: 6px solid var(--color-secondary);
}

.border-b-solid {
  border-bottom-style: solid;
}

.border-t-solid {
  border-top-style: solid;
}

.border-l-solid {
  border-left-style: solid;
}

.border-r-solid {
  border-right-style: solid;
}

.columns-2 {
  column-count: 2;
}

/*** Universal Sections ***/
/* Testimonials */
.testimonials-section .testimonials-watermark {
  background: url("/wp-content/uploads/reviews_squiggle.png") center/contain no-repeat;
  max-width: 760px;
  width: 100%;
  height: 80%;
  position: absolute;
  right: 0;
}

/* Guarantees */
.guarantees-section .guarantees-item-inner {
  max-width: 360px;
  width: 100%;
}
.guarantees-section .guarantees-item-inner h3 {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantees-section .guarantees-item-inner:after {
  top: 10px;
  left: 10px;
}

/* Service Area */
.service-area-section .service-area-inner .service-area-content ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 0;
}

.bg-blur {
  backdrop-filter: blur(9px);
  background-color: rgba(255, 255, 255, 0.7);
}
.bg-blur .blur-inner {
  position: relative;
  z-index: 10;
}

/* Intro */
.intro-section .intro-left img {
  border-radius: 20px;
}
.intro-section .intro-right h2 + h1 {
  font-size: 16px;
}

/* Glide */
.glide__bullets .glide__bullet {
  background: var(--color-secondary);
  border: none !important;
  margin: 0 6px;
}
.glide__bullets .glide__bullet.glide__bullet--active {
  background: var(--color-primary);
}

.glide__arrows {
  max-width: 115px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.glide__arrows .glide__arrow {
  padding: 0;
  border: none;
}

/* Hero */
.hero {
  border-radius: 0 0 40px 40px;
}
.hero .hero-left {
  min-height: 480px;
}
.hero .hero-right {
  height: 375px;
  border-bottom-right-radius: 40px;
}

/* Pattern */
.overlay-pattern {
  background: var(--color-secondary);
  background: #138BE0;
  border-radius: 20px;
  position: relative;
}
.overlay-pattern > * {
  position: relative;
  z-index: 10;
}
.overlay-pattern:after {
  content: "";
  background: var(--color-primary);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  border-radius: 20px;
  mix-blend-mode: multiply;
}
.overlay-pattern.big-overlay:after {
  top: 10px;
  left: 10px;
}
.overlay-pattern.xl-overlay:after {
  top: 14px;
  left: 14px;
}
@media screen and (max-width: 1024px) {
  .overlay-pattern {
    border-radius: 17px;
  }
  .overlay-pattern:after {
    top: 4px;
    left: 4px;
    border-radius: 17px;
  }
  .overlay-pattern.big-overlay:after, .overlay-pattern.mob-big-overlay:after {
    top: 8px;
    left: 8px;
  }
  .overlay-pattern.xl-overlay:after {
    top: 16px;
    left: 16px;
  }
}

/*** Header ***/
header#masthead {
  position: fixed;
  width: 100%;
  z-index: 99;
  background: var(--color-site-grey);
}
header#masthead .headerLogo {
  line-height: 0;
}
header#masthead .headerLogo img {
  max-width: 240px;
}
@media screen and (min-width: 1000px) {
  header#masthead.customSticky {
    max-width: 100%;
    background: var(--color-site-grey);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
  }
  header#masthead.customSticky .headerMain {
    padding: 6px 20px;
  }
  header#masthead.customSticky .headerMain .headerScheduleLink {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }
  header#masthead.customSticky .headerMain .headerLogo img {
    max-width: 204px;
  }
}
@media screen and (max-width: 1280px) {
  header#masthead .headerSchedule {
    display: none;
  }
}
header#masthead nav#site-navigation, header#masthead .headerCall {
  display: inline-block;
}

ul#primary-menu li {
  display: inline-block;
  position: relative;
  margin: 0;
}
ul#primary-menu li a {
  font-size: 16px;
  border: 1px solid transparent;
  border-radius: 15px 15px 0 0;
  padding: 4px 10px;
  margin: 0;
  font-weight: bold;
  display: inline-block;
  color: var(--color-secondary);
  letter-spacing: 0.03em;
  line-height: 24px;
  transition: none;
  width: 100%;
}
ul#primary-menu li a:hover {
  color: var(--color-secondary);
}
@media screen and (max-width: 1350px) {
  ul#primary-menu li a {
    font-size: 14px;
  }
}
ul#primary-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: var(--color-secondary);
  margin: 0;
  text-align: left;
  padding: 11px 3px;
  min-width: 300px;
  border-radius: 4px;
}
ul#primary-menu li ul.sub-menu li {
  display: block !important;
}
ul#primary-menu li ul.sub-menu li a {
  margin: 0 !important;
  padding: 6px 15px !important;
  font-weight: bold !important;
  color: var(--color-site-white) !important;
}
ul#primary-menu li ul.sub-menu .sub-menu {
  display: none !important;
}
ul#primary-menu li:nth-last-child(1) .sub-menu {
  left: unset;
  right: 0;
  border-radius: 8px 0 8px 8px;
}
ul#primary-menu li:nth-last-child(2) .sub-menu {
  left: unset;
  right: 0;
  border-radius: 8px 0 8px 8px;
}
ul#primary-menu li.menu-item-has-children:hover .sub-menu {
  display: block;
}

/*** Home ***/
.home-offer .home-offer-top {
  border-radius: 20px;
}
.home-offer .home-offer-top h3 {
  color: #073658 !important;
  font-size: 16px !important;
  margin: 0;
  font-family: brother-1816, sans-serif;
}
.home-offer .home-offer-top-inner p {
  margin: 0;
}
.home-offer .home-offer-inner {
  border-radius: 20px;
  box-shadow: 0 0 0 4px #5dbeaa, 0 0 0 8px #2171aa, 0 0 0 9px white;
}

.home-services .home-service-item-inner {
  transition: all 0.4s;
}
.home-services .home-service-item-inner:after {
  transition: all 0.4s;
}
.home-services .home-service-item-inner:hover {
  transform: translate(4px, 4px);
}
.home-services .home-service-item-inner:hover:after {
  top: 0px;
  left: 0px;
}

.home-about .home-about-right {
  border-radius: 0 20px 20px 0;
}

.home-offer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px; /* or any height you need */
  background: linear-gradient(to bottom, rgba(30, 115, 190, 0) 0%, white 100%);
  pointer-events: none;
}

/*** Services ***/
.sidebar-services-items ul {
  list-style: none;
  padding: 0;
  column-count: 2;
}
.sidebar-services-items ul li {
  margin-bottom: 20px;
}
.sidebar-services-items ul li a:hover {
  text-decoration: underline;
}

.services-bottom .services-bottom-left .accordionItem {
  border-bottom: 1px solid var(--color-site-black);
}
.services-bottom .services-bottom-left .accordionItem .accordionTitle {
  color: var(--color-secondary);
  font-size: 24px;
  padding-top: 0;
  padding-bottom: 13px;
}
.services-bottom .services-bottom-left .accordionItem .accordionTitle:after {
  display: none;
}
.services-bottom .services-bottom-left .accordionItem .accordionTitle:before {
  content: url(/wp-content/uploads/icon_right_arrow.svg);
  position: absolute;
  right: 20px;
  line-height: 0;
  transition: transform 0.4s;
}
.services-bottom .services-bottom-left .accordionItem.active .accordionTitle:before {
  transform: rotate(90deg);
}
.services-bottom .services-bottom-left .accordionItem:last-of-type {
  border: none;
}
.services-bottom .services-bottom-right img {
  border-radius: 20px;
}

.services-blogs .blog-excerpt a {
  display: none;
}
.services-blogs .glide__bullets button {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.services-cta h2 {
  text-align: center;
}

.wpsp-faq__wrap .wp-block-wpsp-faq-child {
  margin-bottom: 0 !important;
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child .wpsp-faq-child__wrapper .wpsp-faq-item {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid var(--color-secondary) !important;
  outline: none !important;
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child .wpsp-faq-child__wrapper .wpsp-faq-item .wpsp-faq-questions .wpsp-faq-icon-wrap {
  display: none !important;
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child .wpsp-faq-child__wrapper .wpsp-faq-item .wpsp-faq-questions .wpsp-question {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-secondary);
  padding-right: 35px;
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child .wpsp-faq-child__wrapper .wpsp-faq-item .wpsp-faq-questions:after {
  content: "";
  background: var(--color-secondary);
  width: 16px;
  height: 2px;
  top: 24px;
  transform: rotate(90deg);
  position: absolute;
  right: 20px;
  line-height: 0;
  transition: transform 0.4s;
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child .wpsp-faq-child__wrapper .wpsp-faq-item .wpsp-faq-questions:before {
  content: "";
  background: var(--color-secondary);
  width: 16px;
  height: 2px;
  top: 24px;
  position: absolute;
  right: 20px;
  line-height: 0;
  transition: transform 0.4s;
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child .wpsp-faq-child__wrapper .wpsp-faq-item .wpsp-faq-content {
  padding-left: 20px;
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child .wpsp-faq-child__wrapper .wpsp-faq-item.wpsp-faq-item-active .wpsp-faq-questions:after {
  transform: rotate(180deg);
}
.wpsp-faq__wrap .wp-block-wpsp-faq-child:last-of-type .wpsp-faq-item {
  border-bottom: none !important;
}

/*** 404 Error page ***/
.error-links ul {
  padding: 0;
}
.error-links ul li {
  position: relative;
  padding-left: 12px;
  margin-right: 12px;
}
.error-links ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  background: var(--color-secondary);
}

/*** Contact Page ***/
@media screen and (min-width: 767px) {
  .contactTop h2 {
    font-size: 36px;
  }
  .contactTop .contactLeftTop p {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .contactTop .contactLeft {
    padding-right: 20px;
  }
  .contactTop .contactRight {
    padding-left: 20px;
  }
}
.contactTop img.contactPhoneIcon {
  vertical-align: middle;
}
.contactTop .contactLocationAddress p {
  margin: 11px 0 2px;
}
.contactTop .contactLeftInner,
.contactTop .contactRightInner {
  border: 1px solid #013271;
  padding: 40px 40px;
}
.contactTop .social-icons-container {
  justify-content: flex-start;
}
.contactTop label {
  display: none;
}
.contactTop h3.frm_form_title {
  display: none;
}
.contactTop .frm_form_field {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contactTop .frm_form_field h3 {
  flex: 1 100%;
}

/*** Blog / Expert Tips ***/
.sidebar-cats #cats-picker {
  appearance: none;
  cursor: pointer;
  background-color: var(--color-site-white);
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, var(--color-primary) 50%), linear-gradient(135deg, var(--color-primary) 50%, rgba(0, 0, 0, 0) 50%), linear-gradient(to right, var(--color-secondary), var(--color-secondary));
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  border: none;
  box-sizing: border-box;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  min-width: 100%;
  padding: 0.5em 3.5em 0.5em 1em;
}

/*** Default Page ***/
/*** Footer ***/
footer .footer-watermark {
  background: url("/wp-content/uploads/footer-squiggle.png") left center/auto 80% no-repeat;
}
footer .footer-hiring h3 {
  font-size: 20px;
}
footer .footer-contact .btn, footer .footer-contact .frm_fields_container .frm_submit button, .frm_fields_container .frm_submit footer .footer-contact button, footer .footer-contact .wp-block-button__link {
  max-width: 140px;
  width: 100%;
  padding-left: 4px;
  padding-right: 4px;
}
footer .footer-location .social-icons-container {
  justify-content: flex-start;
}

/*** Media Queries ***/
@media screen and (min-width: 1024px) {
  .mobileOnly {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  /*** Structure ***/
  .desktopOnly {
    display: none !important;
  }
  .flexHalf,
  .flexThird {
    flex: 1 100%;
    padding: 0;
  }
  .hoverSet.iconImages {
    width: 13px;
    height: 13px;
    margin-right: 7px;
    vertical-align: middle;
  }
  img {
    max-width: 100%;
  }
  /*** Typography ***/
  .page-title, .hero-title {
    font-size: 28px;
  }
  .page-sub-title {
    font-size: 18px;
  }
  h1, .h1 {
    font-size: 28px;
  }
  h2, .h2 {
    font-size: 24px;
  }
  h3, .h3 {
    font-size: 20px;
  }
  h4, .h4 {
    font-size: 18px;
  }
  h5, .h5 {
    font-size: 16px;
  }
  .home .page-title, .home .hero-title {
    font-size: 28px;
  }
  .home h1, .home .h1 {
    font-size: 18px;
  }
  .home h2, .home .h2 {
    font-size: 24px;
  }
  .home h3, .home .h3 {
    font-size: 20px;
  }
  .home h4, .home .h4 {
    font-size: 16px;
  }
  .home h5, .home .h5 {
    font-size: 16px;
  }
  /*** Header ***/
  html[lang=en-US] {
    margin: 0 !important;
  }
  div#wpadminbar {
    display: none;
  }
  header .headerLogo.logo {
    line-height: 0;
    max-width: 85px;
  }
  header .headerLogo.logo * {
    line-height: 0;
  }
  header .headerLogo.logo img {
    width: 100%;
  }
  header .headerMainInner {
    padding: 8px;
  }
  header .headerMainInner ul#primary-menu {
    background: var(--color-site-grey);
  }
  header .headerMainInner ul#primary-menu li {
    display: block;
  }
  header .headerMainInner ul#primary-menu a {
    font-size: 20px;
    padding: 10px;
    color: var(--color-secondary);
    font-weight: 600;
  }
  header .headerMainInner ul#primary-menu a:after {
    display: none !important;
  }
  header .headerMainInner ul#primary-menu .btn.greenBtn, header .headerMainInner ul#primary-menu .frm_fields_container .frm_submit button.greenBtn, .frm_fields_container .frm_submit header .headerMainInner ul#primary-menu button.greenBtn, header .headerMainInner ul#primary-menu .greenBtn.wp-block-button__link {
    margin: 0 auto;
    font-size: 16px;
    max-width: 120px;
    padding: 0;
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  header .headerMainInner ul#primary-menu .menu-item {
    padding: 0 16px;
  }
  header .headerMainInner ul#primary-menu .menu-item:last-of-type {
    line-height: 0;
  }
  header .headerMainInner ul#primary-menu .menu-item:last-of-type a {
    border-bottom: none;
  }
  header .headerMainInner ul#primary-menu .activeMenu.menu-item-has-children .sub-menu {
    display: block !important;
  }
  header .headerMainInner ul#primary-menu ul.sub-menu {
    column-count: 1;
    width: 100%;
    padding: 0;
    box-shadow: none;
    margin: 0 0 5px 0;
    position: relative;
    background: none;
  }
  header .headerMainInner ul#primary-menu ul.sub-menu a {
    padding-left: 35px !important;
    color: var(--color-secondary) !important;
    font-size: 16px !important;
  }
  header .headerMainInner ul#primary-menu ul.sub-menu li {
    border: none !important;
    padding: 0;
  }
  header .headerMainInner ul#primary-menu .minus {
    display: none;
  }
  header .headerMainInner .activeMenu .fa-plus {
    display: none;
  }
  header .headerMainInner .activeMenu .fa-minus {
    display: block;
  }
  header .headerMainInner .mobileMenuBookBtn {
    max-width: 135px;
    margin: 16px auto 24px !important;
  }
  header .headerMainInner .mobileMenuBookBtn a {
    padding: 5px 0 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: var(--color-site-black) !important;
  }
  header .headerMainInner .menu-main-menu-container {
    display: none;
    background: var(--color-site-grey);
    position: fixed;
    width: 100vw;
    left: 0;
    top: 77px;
    max-height: calc(100vh - 77px);
    overflow-y: scroll;
    text-align: left;
  }
  header .headerMainInner .menu-main-menu-container a {
    background: none;
  }
  header .headerMainInner .closeMenu {
    text-align: center;
  }
  header .headerMainInner .closeMenu a {
    font-weight: bold;
  }
  header .headerMainInner .plusMinus {
    height: 46px;
    width: 46px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .headerMainInner .plusMinus span {
    width: 22px;
    height: 22px;
  }
  header .headerMainInner .plusMinus span img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
  }
  header .headerMainInner .plusMinus .fa-minus {
    display: none;
  }
  header .headerMainInner .menu-item-has-children .sub-menu {
    display: none !important;
  }
  header .headerMainInner .activeMenu .plusMinus span img {
    transform: rotate(90deg);
  }
  header .headerMainInner .activeMenu.menu-item-has-children .sub-menu {
    display: block !important;
  }
  header.customSticky {
    border-top-width: 0;
  }
  header.customSticky .headerMainInner {
    padding: 8px;
  }
  header.customSticky .headerMainInner .headerLogo.logo {
    max-width: 75px;
  }
  header.customSticky .headerMainInner .headerRight {
    line-height: 0;
  }
  header.customSticky .headerMainInner .headerRight .menuIsOpen {
    line-height: 0;
  }
  header.customSticky .headerMainInner .menu-main-menu-container {
    top: 65px;
    max-height: calc(100vh - 65px);
  }
  .admin-bar header#masthead {
    top: 0;
    z-index: 999999;
  }
  .toggled .menu-main-menu-container {
    display: block !important;
  }
  .toggledMainMenu header .headerMainInner {
    background: var(--color-site-grey);
    padding: 8px;
  }
  .toggledMainMenu header .headerMainInner .menuIsClosed {
    display: block !important;
  }
  .toggledMainMenu header .headerMainInner .menuIsOpen {
    display: none;
  }
  .menu-item-has-children .sub-menu {
    display: none !important;
  }
  li:not(.menu-item-has-children) .plusMinus {
    display: none;
  }
  #nav-toggle {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    display: flex;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
  }
  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-site-black);
    border-radius: 1px;
    content: "";
    transition: all 500ms ease-in-out;
  }
  #nav-toggle span:before {
    top: -5px;
  }
  #nav-toggle span:after {
    bottom: -5px;
  }
  .toggled #nav-toggle span {
    background-color: transparent;
  }
  .toggled #nav-toggle span:before, .toggled #nav-toggle span:after {
    top: 0;
    height: 4px;
  }
  .toggled #nav-toggle span:before {
    transform: rotate(45deg);
  }
  .toggled #nav-toggle span:after {
    transform: rotate(-45deg);
  }
  /*** Universal ***/
  .glide__bullets .glide__bullet {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
  }
  .hero .hero-left {
    min-height: 0;
    padding-bottom: 20px;
  }
  .hero .hero-right {
    height: 165px;
    border-bottom-left-radius: 40px;
  }
  /*** Universal Sections ***/
  .service-area-section {
    background: none !important;
  }
  .service-area-section h2 {
    text-align: center;
    padding: 0 30px;
  }
  .service-area-section a.btn, .service-area-section a.wp-block-button__link {
    margin: 0 auto;
    display: block;
    max-width: 125px;
  }
  .guarantees-section .guarantees-item-inner h3 {
    min-height: 0;
  }
  .guarantees-section .guarantees-item-inner div {
    max-width: 240px;
    margin: 0 auto;
    white-space: pre-line;
  }
  .guarantees-section .glide__bullets .glide__bullet {
    background: var(--color-site-grey);
  }
  .guarantees-section .glide__bullets .glide__bullet.glide__bullet--active {
    background-color: var(--color-primary);
  }
  .testimonials-section .testimonials-left {
    height: 244px;
    border-radius: 20px 20px 0 0;
  }
  /*** Home ***/
  .home-about .home-about-right {
    border-radius: 20px 20px 0 0;
  }
  .home-cta .home-cta-right p {
    margin: 10px 0;
  }
  .home-cta .home-cta-right img {
    max-width: 56px;
  }
  /*** Services ***/
  .services-bottom .services-bottom-left .accordionItem {
    border-bottom: 1px solid var(--color-site-black);
  }
  .services-bottom .services-bottom-left .accordionItem .accordionTitle {
    padding-top: 10px;
    font-size: 20px;
  }
  .services-bottom .services-bottom-left .accordionItem .accordionTitle:before {
    content: "";
    width: 9px;
    height: 15px;
    background: url(/wp-content/uploads/icon_right_arrow.svg) center/cover;
  }
  .services-bottom .services-bottom-left .accordionItem:last-of-type {
    border: none;
  }
  .services-cta {
    background: none !important;
  }
  /*** Footer ***/
  footer .footer-watermark {
    background: url("/wp-content/uploads/footer-wiggle.png") left center/auto 80% no-repeat;
  }
  footer .footer-top > div {
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer-top > div.footer-location .social-icons-container {
    justify-content: center;
  }
  footer .footer-top > div.footer-hiring {
    max-width: 100%;
  }
}
/* purgecss end ignore */
.maxw1440 {
  max-width: 1440px;
}

.maxw1350 {
  max-width: 1350px;
}

.maxw1300 {
  max-width: 1300px;
}

.maxw1200 {
  max-width: 1200px;
}

.maxw1150 {
  max-width: 1150px;
}

.maxw1100 {
  max-width: 1100px;
}

.maxw1050 {
  max-width: 1050px;
}

.maxw1000 {
  max-width: 1000px;
}

.maxw900 {
  max-width: 900px;
}

.maxw850 {
  max-width: 850px;
}

.maxw800 {
  max-width: 800px;
}

.maxw750 {
  max-width: 750px;
}

.maxw700 {
  max-width: 700px;
}

.maxw650 {
  max-width: 650px;
}

.maxw600 {
  max-width: 600px;
}

.maxw550 {
  max-width: 550px;
}

.maxw500 {
  max-width: 500px;
}

.maxw450 {
  max-width: 450px;
}

.maxw400 {
  max-width: 400px;
}

.maxw350 {
  max-width: 350px;
}

.maxw300 {
  max-width: 300px;
}

.maxw250 {
  max-width: 250px;
}

.maxw200 {
  max-width: 200px;
}

.maxw150 {
  max-width: 150px;
}

.maxw100 {
  max-width: 100px;
}

.maxw50 {
  max-width: 50px;
}

/* ==========================================================================
   Bring in Site specific Styles
   ========================================================================== */
/*! purgecss start ignore */
/**
       *
       * Outputs css custom properties with a prefix into :root
       *
       * @param string $css_variables  css custom property name and value
       * @param string $prefix  Default "witsage" prefix added to each custom property
**/
/* ===========================  Theme  ========================== */
:root {
  --color-primary: #77ccc2;
  --color-secondary: #2171aa;
  --color-site-black: #073658;
  --color-site-grey: #f3f5f7;
  --color-site-white: #ffffff;
  --color-black: #000000;
  --color-grey: #cccccc;
  --color-white: #ffffff;
  --color-smoke: #f5f5f5;
  --filter-color-primary: brightness(0) saturate(100%) invert(76%) sepia(22%) saturate(587%) hue-rotate(124deg) brightness(94%) contrast(92%);
  --filter-color-teal: brightness(0) saturate(100%) invert(76%) sepia(22%) saturate(587%) hue-rotate(124deg) brightness(94%) contrast(92%);
  --filter-color-secondary: brightness(0) saturate(100%) invert(36%) sepia(64%) saturate(880%) hue-rotate(168deg) brightness(88%) contrast(86%);
  --filter-color-blue: brightness(0) saturate(100%) invert(36%) sepia(64%) saturate(880%) hue-rotate(168deg) brightness(88%) contrast(86%);
  /*--filter-color-tertiary:  brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(728%) hue-rotate(161deg) brightness(91%) contrast(92%);
  --filter-color-lightblue:   brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(728%) hue-rotate(161deg) brightness(91%) contrast(92%);

  --filter-color-quaternary:  brightness(0) saturate(100%) invert(81%) sepia(50%) saturate(578%) hue-rotate(353deg) brightness(102%) contrast(101%);
  --filter-color-yellow:      brightness(0) saturate(100%) invert(81%) sepia(50%) saturate(578%) hue-rotate(353deg) brightness(102%) contrast(101%);*/
  --filter-color-site-black: brightness(0) saturate(100%) invert(13%) sepia(27%) saturate(5359%) hue-rotate(187deg) brightness(95%) contrast(94%);
  --filter-color-site-grey: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(196%) hue-rotate(169deg) brightness(99%) contrast(96%);
  --filter-color-site-white: brightness(0) saturate(100%) invert(100%);
  --filter-color-black: brightness(0) saturate(100%);
  --filter-color-white: brightness(0) saturate(100%) invert(100%);
  --filter-color-grey: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(485%) hue-rotate(134deg) brightness(88%) contrast(83%);
}
.last\:mb-0:last-child {
  margin-bottom: 0px;
}
.last\:border-b-white:last-child {
  border-bottom-color: var(--color-site-white);
}
.last\:pb-0:last-child {
  padding-bottom: 0px;
}
@media (min-width: 1024px) {
  .laptop\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .laptop\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .laptop\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .laptop\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .laptop\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .laptop\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .laptop\:mb-12 {
    margin-bottom: 3rem;
  }
  .laptop\:mb-16 {
    margin-bottom: 4rem;
  }
  .laptop\:mb-8 {
    margin-bottom: 2rem;
  }
  .laptop\:ml-4 {
    margin-left: 1rem;
  }
  .laptop\:ml-6 {
    margin-left: 1.5rem;
  }
  .laptop\:mr-2 {
    margin-right: 0.5rem;
  }
  .laptop\:mr-5 {
    margin-right: 1.25rem;
  }
  .laptop\:mr-8 {
    margin-right: 2rem;
  }
  .laptop\:mt-12 {
    margin-top: 3rem;
  }
  .laptop\:mt-4 {
    margin-top: 1rem;
  }
  .laptop\:mt-6 {
    margin-top: 1.5rem;
  }
  .laptop\:inline-block {
    display: inline-block;
  }
  .laptop\:flex {
    display: flex;
  }
  .laptop\:grid {
    display: grid;
  }
  .laptop\:max-w-1\/2 {
    max-width: 50%;
  }
  .laptop\:max-w-300 {
    max-width: 300px;
  }
  .laptop\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .laptop\:items-center {
    align-items: center;
  }
  .laptop\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .laptop\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .laptop\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }
  .laptop\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .laptop\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .laptop\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .laptop\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .laptop\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .laptop\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .laptop\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .laptop\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .laptop\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .laptop\:pb-24 {
    padding-bottom: 6rem;
  }
  .laptop\:pb-4 {
    padding-bottom: 1rem;
  }
  .laptop\:pb-5 {
    padding-bottom: 1.25rem;
  }
  .laptop\:pb-6 {
    padding-bottom: 1.5rem;
  }
  .laptop\:pl-4 {
    padding-left: 1rem;
  }
  .laptop\:pl-5 {
    padding-left: 1.25rem;
  }
  .laptop\:pl-6 {
    padding-left: 1.5rem;
  }
  .laptop\:pr-4 {
    padding-right: 1rem;
  }
  .laptop\:pr-8 {
    padding-right: 2rem;
  }
  .laptop\:pt-10 {
    padding-top: 2.5rem;
  }
  .laptop\:pt-11 {
    padding-top: 2.75rem;
  }
  .laptop\:pt-16 {
    padding-top: 4rem;
  }
  .laptop\:pt-36 {
    padding-top: 9rem;
  }
  .laptop\:pt-6 {
    padding-top: 1.5rem;
  }
  .laptop\:text-20 {
    font-size: 20px;
  }
  .laptop\:text-24 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .mob\:order-2 {
    order: 2;
  }
  .mob\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .mob\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .mob\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .mob\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .mob\:-mt-1 {
    margin-top: -0.25rem;
  }
  .mob\:mb-4 {
    margin-bottom: 1rem;
  }
  .mob\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .mob\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .mob\:mb-8 {
    margin-bottom: 2rem;
  }
  .mob\:mt-6 {
    margin-top: 1.5rem;
  }
  .mob\:mt-8 {
    margin-top: 2rem;
  }
  .mob\:flex {
    display: flex;
  }
  .mob\:flex-wrap {
    flex-wrap: wrap;
  }
  .mob\:gap-2 {
    gap: 0.5rem;
  }
  .mob\:gap-4 {
    gap: 1rem;
  }
  .mob\:p-5 {
    padding: 1.25rem;
  }
  .mob\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mob\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .mob\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .mob\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .mob\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .mob\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .mob\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .mob\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .mob\:pb-4 {
    padding-bottom: 1rem;
  }
  .mob\:pb-6 {
    padding-bottom: 1.5rem;
  }
  .mob\:pl-2 {
    padding-left: 0.5rem;
  }
  .mob\:pl-4 {
    padding-left: 1rem;
  }
  .mob\:pr-8 {
    padding-right: 2rem;
  }
  .mob\:pt-1 {
    padding-top: 0.25rem;
  }
  .mob\:pt-20 {
    padding-top: 5rem;
  }
  .mob\:pt-5 {
    padding-top: 1.25rem;
  }
  .mob\:pt-6 {
    padding-top: 1.5rem;
  }
  .mob\:pt-8 {
    padding-top: 2rem;
  }
  .mob\:text-center {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .lg\:block {
    display: block;
  }
}

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