/*
Theme Name: Blitz Payment Solutions
Author: Kelly Jones (FPM3)
Author URI: https://fpm3.com/
Version: 1.0
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}

body {
  background-color: #fff;
  color: #1B2C54;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
}

.container {
  margin: 0px auto;
  padding: 0px 15px;
  width: 100%;
  max-width: 1280px;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.wp-block-image {
  display: block;
  margin: 0px;
}

.wp-block-image img {
  display: block;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h2 em {
  color: #C3A061;
  display: block;
  font-size: 22px;
  font-style: normal;
  font-weight: normal;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

p strong {
  font-weight: bolder !important;
}

blockquote {
  font-size: 36px;
  font-weight: 600;
  position: relative;
  margin: 2rem 0px;
  padding: 20px;
}

blockquote::before {
  background-image: linear-gradient(to bottom, #EDCF85, #9A713D);
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: -20px;
  width: 3px;
  height: 80%;
  max-height: 202px;
}

blockquote p {
  line-height: 49px !important;
  margin-top: 2rem;
  margin-bottom: 0px;
}

blockquote p:first-child {
  margin-top: 0px;
}

p {
  margin: 0.5rem 0px 0.5rem 0px;
}

p:not(.has-large-font-size).has-text-align-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 730px;
}

p.read-more a, 
a.read-more {
  color: #C3A061 !important;
  display: flex;
  align-items: center;
  font-weight: bolder;
  text-transform: uppercase;
}

p.read-more a::after, 
a.read-more::after {
  background-image: url('images/icons/Icon_Arrow Next-gold.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  display: block;
  margin-left: 0px;
  width: 24px;
  height: 24px;
}

p em {
  color: #C3A061;
  font-style: normal;
}

hr {
  background-image: linear-gradient(to right, #9A713D, #EDCF85);
  border: none;
  display: block;
  margin: 30px 0px;
  width: 100%;
  height: 3px;
}

/* Header */

#topBar {
  background-color: #1B2C54;
  color: #C3A061;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  width: 100%;
  height: 35px;
  z-index: 999;
}

#topBar a {
  color: #C3A061;
  text-decoration: none;
}

#topBar .topBar_1 .widget {
  border-left: solid 1px #C3A061;
  display: inline-block;
  margin: 0px 10px 0px 0px;
  padding: 0px 0px 0px 10px;
  height: 16px;
}

#topBar .topBar_1 .widget:first-child {
  border: none;
  padding-left: 0px;
}

#topBar .topBar_1 .widget p {
  line-height: 16px;
  margin: 0px;
  padding: 0px;
}

header {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  width: 100vw;
  height: 115px;
  z-index: 100;
}

header.sticky {
  background-color: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0px;
  animation: sticky-header 0.5s;
  animation-iteration-count: 1;
}

@keyframes sticky-header {
  0% {
    background-color: rgba(255, 255, 255, 0);
    top: -115px;
  }
  100% {
    background-color: rgba(255, 255, 255, 1);
    top: 0;
  }
}

header::before {
  background-image: linear-gradient(to right, #9A713D, #EDCF85);
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  width: 100vw;
  height: 5px;
}

header .container {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

header .header__logo {
  display: flex;
  align-items: center;
  flex-basis: 205px;
  height: 115px;
}

header .site-logo {
  background-image: url('images/BLITZ-blue-nav-bar.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 205px;
  height: 115px;
}

header.sticky .site-logo {
  background-image: url('images/BLITZ-white-nav-bar.svg');
  width: 102px;
  height: 115px;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-basis: 100%;
  height: 100%;
}

header nav .menu-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

header nav .menu {
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

header nav .menu .menu-item {
  display: block;
  margin: 0px;
  padding: 0px;
  text-align: center;
  width: 100px;
}

header nav .menu .menu-item a {
  border-bottom: solid 3px transparent;
  color: #C3A061;
  display: inline-block;
  font-size: 16px;
  margin: 8px 0px 5px 0px;
  padding: 5px 0px;
  text-decoration: none;
  text-transform: uppercase;
}

header nav .menu .menu-item:hover > a {
  border-color: #C3A061;
  font-weight: bold;
}

header nav .menu .menu-item:hover .sub-menu {
  display: block;
}

header nav .sub-menu {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
  display: none;
  margin: 0px;
  padding: 0px;
  position: absolute;
  overflow: hidden;
  width: 280px;
}

header nav .sub-menu .menu-item {
  margin: 0px;
  padding: 0px;
  text-align: left;
  width: 100%;
}

header nav .sub-menu .menu-item a {
  border-bottom: none !important;
  display: block;
  font-weight: normal !important;
  margin: 0px;
  padding: 10px;
}

header nav .sub-menu .menu-item a:hover {
  background-color: #1B2C54;
  color: #fff;
}

/* Mobile Menu */

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  width: 17px;
  height: 16px;
}

.menu-toggle::before {
  color: #C3A061;
  content: '\f0c9';
  display: block;
  font-family: 'Font Awesome 5 Free';
  font-size: 16px;
  font-weight: 900;
}

.mobile-menu {
  background-color: #1B2C54;
  color: #C3A061;
  display: none;
  overflow: auto;
  padding: 0px;
  position: sticky;
  top: 51px;
  height: calc(100vh - 51px);
  z-index: 9999;
}

.mobile-menu nav {
  padding: 36px 22px;
}

.mobile-menu label {
  display: block;
}

.mobile-menu .menu {
  display: block;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.mobile-menu a {
  color: #C3A061;
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  margin: 12px 0px;
  text-decoration: none;
}

.mobile-menu .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding: 8px 22px 36px 22px;
  position: relative;
  text-align: center;
}

.mobile-menu .contact-info::before {
  background-image: linear-gradient(to right, #9A713D, #EDCF85);
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 8px;
}

.mobile-menu .contact-info section {
  margin-top: 43px;
}

.mobile-menu .contact-info a.phone {
  margin: 0px;
}

.mobile-menu .contact-info .icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  display: block;
  margin: 5px auto 5px auto;
  width: 50px;
  height: 50px;
}

.mobile-menu .contact-info section.contact .icon {
  background-image: url('images/icons/Icon_Phone-gradient.svg');
}

.mobile-menu .contact-info section.location .icon {
  background-image: url('images/icons/Icon_Location-gradient.svg');
}

.mobile-menu .contact-info section.social .icon-linkedin {
  background-image: url('images/icons/Icon_LinkedIn-gradient.svg');
}

/* Page Banners */

#banner {
  background-image: linear-gradient(to right, #1B2C54, #06338A);
  display: flex;
  align-items: flex-end;
  padding: 175px 0px 60px 0px;
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 452px;
  z-index: 1;
}

#banner.home {
  background-image: none !important;
  align-items: center;
  padding: 0px;
  height: 51.7vw;
  max-height: 774px;
}

#banner .banner__bg {
  background-image: linear-gradient(to right, #1B2C54, #06338A);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#banner.home .banner__bg {
  clip-path: polygon(0% 0%, 100% 0%, 100% 65%, 0% 100%);
}

#banner .banner__img {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  height: calc(100% - 100px);
  z-index: 3;
}

#banner .banner__img img {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
}

#banner .banner__content {
  color: #fff;
  display: flex;
  margin: 0px auto;
  padding: 0px 15px 0px 15px;
  width: 100%;
  max-width: 1280px;
  z-index: 4;
}

#banner.home .banner__content {
  align-items: center;
  padding: 0px 15px;
}

#banner:not(.home) .banner__text {
  margin: 0px;
  padding: 0px 35px;
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 160px;
}

#banner.single .banner__text {
  padding-right: 0px;
  max-width: none;
}

#banner:not(.home) .banner__text::before {
  background-image: linear-gradient(to bottom, #EDCF85, #9A713D);
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 3px;
  height: 142px;
}

#banner.home .banner__text {
  text-align: center;
  width: 100%;
  max-width: 832px;
}

#banner.home .banner__text p {
  padding-left: 8%;
  padding-right: 8%;
}

#banner .sub-heading {
  color: #C3A061;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0px;
}

#banner h1, 
#banner .heading {
  font-size: 59px;
  font-weight: bold;
  line-height: 68px;
  margin: 0px;
}

#banner p {
  line-height: 26px;
  margin: 15px 0px 0px 0px;
}

/* Main */

main {
  min-height: 100vh;
}

main > .container {
  margin-bottom: 0px;
  padding-bottom: 0px;
  min-height: 100vh;
}

main a {
  color: #C3A061;
  font-weight: bold;
  text-decoration: none;
}

main p {
  line-height: 30px;
}

/* Group Blocks */

.wp-block-group {
  overflow: hidden;
  padding: 0px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

.wp-block-group .wp-block-group__inner-container {
  margin: 0px auto;
  padding: 0px 15px;
  width: 100%;
  max-width: 1280px;
}

/* Cover Blocks */

.wp-block-cover {
  padding: 60px 0px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

.wp-block-cover .wp-block-cover__inner-container {
  margin: 0px auto;
  padding: 0px 15px;
  width: 100%;
  max-width: 1280px;
}

.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before {
  opacity: 0.15 !important;
} 

.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before {
  opacity: 0.25 !important;
}

.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before {
  opacity: 0.35 !important;
}

.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before {
  opacity: 0.45 !important;
} 

.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before {
  opacity: 0.55 !important;
}

.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before {
  opacity: 0.65 !important;
}

.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before {
  opacity: 0.75 !important;
}

.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before {
  opacity: 0.85 !important;
}

.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background, 
.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before, 
.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background, 
.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before {
  opacity: 0.95 !important;
}

/* Call to Action Blocks */

.wp-block-group.cta {
  padding: 64px 0px 50px 0px;
}

.cta .wp-block-columns {
  margin: 0px !important;
}

.cta .wp-block-column:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 2em;
  padding-left: 2em;
  position: relative;
  min-height: 270px;
}

.cta .wp-block-column:nth-child(1)::before {
  background-image: linear-gradient(to bottom, #EDCF85, #9A713D);
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 3px;
  height: 187px;
}

.cta .wp-block-column:nth-child(1) :first-child {
  margin-top: 10px;
}

.cta .wp-block-column:nth-child(1) p:first-of-type {
  margin-top: 0px;
}

.cta .wp-block-column:nth-child(2) {
  position: relative;
  z-index: 1;
}

.cta .wp-block-column:nth-child(2)::before {
  background-image: url('images/BLITZ-gold-outline.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  top: -15%;
  left: 0px;
  width: 110%;
  height: 130%;
  z-index: -1;
}

.cta .wp-block-latest-posts {
  margin: 0px !important;
  padding: 0px;
}

.cta .wp-block-latest-posts li > a {
  color: #1B2C54;
  font-size: 36px;
  font-weight: bold;
  margin: 0px;
}

/* Alignment Classes */

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Font Sizes */

.has-small-font-size {
  font-size: 13px !important;
}

.has-normal-font-size {
  font-size: 18px !important;
}

.has-medium-font-size {
  font-size: 22px !important;
}

.has-medium-font-size strong {
  font-weight: 900 !important;
}

h2.has-medium-font-size {
  font-weight: normal !important;
}

.has-large-font-size {
  font-size: 36px;
  line-height: 1.25em;
  margin: 0px;
}

.has-huge-font-size {
  font-size: 42px;
  line-height: 1.25em;
  margin: 0px;
}

/* Colors */

.has-dark-blue-color {
  color: #1B2C54;
}

.has-medium-blue-color {
  color: #06338A;
}

.has-light-blue-color {
  color: #06558a;
}

.has-dark-gold-color {
  color: #9A713D;
}

.has-medium-gold-color {
  color: #C3A061;
}

.has-light-gold-color {
  color: #EDCF85;
}

.has-black-color {
  color: #000;
}

.has-dark-grey-color {
  color: #444;
}

.has-grey-color {
  color: #ddd;
}

.has-light-grey-color {
  color: #eee;
}

.has-white-color {
  color: #fff;
}

/* Background Colors */

.has-dark-blue-background-color {
  background-color: #1B2C54;
}

.has-medium-blue-background-color {
  background-color: #06338A;
}

.has-light-blue-background-color {
  background-color: #4994c7;
}

.has-dark-gold-background-color {
  background-color: #9A713D;
}

.has-medium-gold-background-color {
  background-color: #C3A061;
}

.has-light-gold-background-color {
  background-color: #EDCF85;
}

.has-black-background-color {
  background-color: #000;
}

.has-dark-grey-background-color {
  background-color: #444;
}

.has-grey-background-color {
  background-color: #ddd;
}

.has-light-grey-background-color {
  background-color: #eee;
}

.has-white-background-color {
  background-color: #fff;
}

/* Buttons */

/* Default Button */

.wp-block-buttons {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.wp-block-buttons .wp-block-button .wp-block-button__link {
  background-color: #1b2c54;
  border: solid 2px #9A713D;
  border-radius: 27px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 49px;
  padding-top: 0px;
  padding-bottom: 0px;
  min-width: 208px;
  height: 53px;
}

.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  background-color: #fff;
  color: #1b2c54;
}

/* Gold Button */

.wp-block-buttons .wp-block-button .wp-block-button__link.has-medium-gold-background-color {
  background-color: #C3A061;
  border: solid 2px #C3A061;
  border-radius: 12px;
  box-shadow: 3px 3px 10px rgba(154, 113, 61, 0.5);
  color: #fff;
  line-height: 49px;
  padding-top: 0px;
  padding-bottom: 0px;
  min-width: 208px;
  height: 53px;
}

.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  background-color: #fff;
  color: #1b2c54;
}

/* Outline Button */

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  color: #1B2C54;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  min-width: 251px;
  height: 47px;
  z-index: 0;
}

.wp-block-button.is-style-outline .wp-block-button__link::before {
  background-color: transparent;
  border: solid 1px #C3A061;
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #fff;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover::before {
  background-image: linear-gradient(to bottom, #9A713D, #EDCF85);
}

.wp-block-button.is-style-outline .wp-block-button__link::after {
  background-color: transparent;
  border: solid 1px #C3A061;
  content: '';
  filter: blur(2px);
  position: absolute;
  top: 1px;
  left: 1px;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.wp-block-button.is-style-outline .wp-block-button__link:disabled {
  background-image: none !important;
  color: #666 !important;
  cursor: not-allowed;
  opacity: 0.2;
}

.wp-block-button.is-style-outline .wp-block-button__link:disabled::before {
  background-image: none !important;
}

/* Forms */

.frm_form_field label {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
}

.frm_form_field input[type=email],
.frm_form_field input[type=tel],
.frm_form_field input[type=text], 
.frm_form_field textarea {
  border: solid 2px #9A713D !important;
  border-radius: 0px !important;
  color: #1B2C54 !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px !important;
}

.frm_form_field input[type=email],
.frm_form_field input[type=tel],
.frm_form_field input[type=text] {
  height: 54px !important;
}

.frm_form_field textarea {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  height: 160px !important;
}

.frm_form_field input[type=email]::placeholder,
.frm_form_field input[type=tel]::placeholder,
.frm_form_field input[type=text]::placeholder, 
.frm_form_field textarea::placeholder {
  color: #1B2C54 !important;
  text-transform: uppercase !important;
}

.frm_button_submit {
  background-color: #1b2c54 !important;
  border: solid 2px #9A713D !important;
  border-radius: 27px !important;
  color: #fff !important;
  float: right !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: bold !important;
  line-height: 49px !important;
  margin-top: -85px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  text-transform: uppercase !important;
  min-width: 208px !important;
  height: 53px !important;
}

/* Cards */

.cards {
  margin: 60px 0px;
}

.cards .slick-list {
  margin: 0px auto !important;
  padding: 3%;
  width: 100% !important;
}

.cards .gutentor-carousel-item {
  border: solid 1px #C3A061;
  box-sizing: border-box !important;
  margin: 0px !important;
  padding: 0px !important;
}

.cards .gutentor-col-wrap > .gutentor-container-cover {
  color: #1B2C54;
  padding: 50px 15% !important;
  width: 100%;
  min-height: 360px;
}

.cards .gutentor-col-wrap:hover > .gutentor-container-cover {
  background-color: transparent !important;
  background-image: linear-gradient(135deg, #1B2C54, #06338A);
  color: #fff;
  transform: scale(110%);
  animation: card-zoom 0.5s;
  animation-iteration-count: 1;
  z-index: 10 !important;
}

.cards .gutentor-col-wrap figure {
  margin-bottom: 32.5px;
  width: 88px;
  height: 88px;
}

.cards .gutentor-col-wrap:hover img {
  filter: grayscale(1) invert(1) saturate(1) brightness(2) contrast(2);
}

.cards .gutentor-col-wrap h1, 
.cards .gutentor-col-wrap h2, 
.cards .gutentor-col-wrap h3, 
.cards .gutentor-col-wrap h4, 
.cards .gutentor-col-wrap h5, 
.cards .gutentor-col-wrap h6 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin: 0px;
}

.cards .gutentor-col-wrap:hover h1, 
.cards .gutentor-col-wrap:hover h2, 
.cards .gutentor-col-wrap:hover h3, 
.cards .gutentor-col-wrap:hover h4, 
.cards .gutentor-col-wrap:hover h5, 
.cards .gutentor-col-wrap:hover h6 {
  color: #C3A061;
}

.cards .gutentor-col-wrap p {
  font-size: 18px;
  line-height: 26px;
  margin: 15px auto 0px auto;
  max-width: 245px;
}

@keyframes card-zoom {
  0% {
    transform: scale(100%);
  }
  100% {
    transform: scale(110%);
  }
}

.info-seamless-integration .kt-info-svg-icon, 
.info-transparent-pricing .kt-info-svg-icon,
.info-dedicated-support .kt-info-svg-icon {
  fill: #1B2C54 !important;
}

.info-seamless-integration:hover .kt-info-svg-icon, 
.info-transparent-pricing:hover .kt-info-svg-icon,
.info-dedicated-support:hover .kt-info-svg-icon {
  fill: #fff !important;
}

.info-ensure-trust .kt-info-svg-icon, 
.info-reliable-service .kt-info-svg-icon,
.info-outstanding-service .kt-info-svg-icon {
  fill: #C3A061 !important;
}

.info-ensure-trust:hover .kt-info-svg-icon, 
.info-reliable-service:hover .kt-info-svg-icon,
.info-outstanding-service:hover .kt-info-svg-icon {
  fill: #fff !important;
}

/* Tabbed Content */

.wp-block-kadence-tabs {
  margin: 40px 0px;
}

.kt-tabs-title-list {
  display: flex;
}

.kt-title-item {
  border-bottom: solid 3px #EDEDED;
  margin: 0px !important;
  flex-basis: 50%;
}

.kt-title-item.kt-tab-title-active {
  border-color: #C3A061;
}

.kt-tab-title {
  border: none !important;
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100% !important;
}

.kt-title-text {
  text-align: center;
}

.kt-title-text {
  font-size: 18px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
}

.wp-block-kadence-tab {
  border: none !important;
  padding: 40px 0px !important;
}

/* Home Page */

.wp-block-group.why-choose-us {
  padding: 64px 0px;
}

.wp-block-group.why-choose-us .wp-block-columns .wp-block-column:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.start-processing-payments-today .wp-block-image {
  margin: 0px !important;
}

.start-processing-payments-today .wp-block-columns {
  align-items: center;
}

.start-processing-payments-today .wp-block-columns .wp-block-column:nth-child(2) {
  margin-top: 40px;
  padding-left: 40px;
  position: relative;
}

.start-processing-payments-today .wp-block-columns .wp-block-column:nth-child(2)::before {
  background-image: linear-gradient(to bottom, #EDCF85, #9A713D);
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 3px;
  height: 142px;
}

.start-processing-payments-today .wp-block-media-text {
  grid-template-columns: 44px 1fr !important;
  grid-gap: 20px !important;
  margin: 0px auto !important;
  width: 100%;
}

.start-processing-payments-today .wp-block-media-text .wp-block-media-text__media {
  align-self: center;
  justify-content: center;
}

.start-processing-payments-today .wp-block-media-text .wp-block-media-text__content {
  padding: 0px 15% 0px 0px;
}

/* Testimonials */

.wp-block-cover.testimonials {
  position: relative;
  min-height: 555px;
}

.wp-block-cover.testimonials .kt-blocks-carousel {
  margin-bottom: 30px;
}

.tns-ovh {
  padding-top: 30px;
}

.wp-block-cover.testimonials .wp-block-cover__inner-container::before, 
.wp-block-cover.testimonials .wp-block-cover__inner-container::after {
  background-image: linear-gradient(to right, #9A713D, #EDCF85);
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  width: 100%;
  height: 8px;
}

.wp-block-cover.testimonials .wp-block-cover__inner-container::before {
  top: 0px;
}

.wp-block-cover.testimonials .wp-block-cover__inner-container::after {
  bottom: 0px;
}

.wp-block-cover.testimonials .wp-block-kadence-testimonials {
  margin: 60px auto 0px auto !important;
  position: relative;
  max-width: 843px;
  z-index: 1;
}

.wp-block-cover.testimonials .kt-testimonial-item-wrap {
  background-color: #EBEBEB !important;
  border-radius: 3px !important;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.54) !important;
  padding: 41px 8.6% 21px 8.6% !important;
  position: relative;
  text-align: left !important;
  width: 98% !important;
  max-width: 843px !important;
}

.wp-block-cover.testimonials .kt-testimonial-item-wrap::before {
  background-image: url('images/icons/Icon_Bolt-gradient.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: '';
  position: absolute;
  top: -31.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 63px;
  z-index: 10;
}

/* About Page */

.wp-block-group.about-simplicity {
  padding-top: 0px;
}

.about-simplicity .wp-block-columns {
  background-image: url('images/BLITZ-gold-outline.svg');
  background-repeat: no-repeat;
  background-position: right -60px;
  background-size:  246px 275px;
}

.about-simplicity .wp-block-columns .wp-block-column:nth-child(1) .wp-block-image {
  margin: 0px;
}

.about-simplicity .wp-block-columns .wp-block-column:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-icons .wp-block-columns {
  margin-left: auto;
  margin-right: auto;
  max-width: 1006px;
}

.about-icons .wp-block-media-text {
  grid-template-columns: 41px 1fr !important;
  grid-gap: 20px !important;
  margin: 0px auto !important;
  max-width: 294px !important;
}

.about-icons .wp-block-media-text .wp-block-media-text__media {
  align-self: start;
}

.about-icons .wp-block-media-text .wp-block-media-text__content {
  padding: 0px;
}

.our-values p:not(.has-large-font-size).has-text-align-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 730px;
}

.our-values .cards .gutentor-carousel-item {
  margin: 0px 15px !important;
  width: calc(32% - 30px) !important;
}

.our-values .cards .gutentor-col-wrap > .gutentor-container-cover {
  box-sizing: border-box;
  color: #fff;
}

.our-values .cards .gutentor-col-wrap:hover > .gutentor-container-cover {
  background-image: linear-gradient(to bottom, #EDCF85, #9A713D);
  color: #1B2C54;
}

.our-values .cards .gutentor-col-wrap:hover h1, 
.our-values .cards .gutentor-col-wrap:hover h2, 
.our-values .cards .gutentor-col-wrap:hover h3, 
.our-values .cards .gutentor-col-wrap:hover h4, 
.our-values .cards .gutentor-col-wrap:hover h5, 
.our-values .cards .gutentor-col-wrap:hover h6 {
  color: #1B2C54;
}

.wp-block-group.satisfaction-guaranteed .wp-block-group__inner-container {
  border: solid 1px #9A713D;
  margin: 60px auto;
  padding: 40px;
  position: relative;
  width: 98%;
}

.wp-block-group.satisfaction-guaranteed .wp-block-group__inner-container::before {
  background-image: url('images/icons/Icon_Bolt-gradient.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: '';
  position: absolute;
  top: -31.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 63px;
  z-index: 10;
}

.wp-block-group.satisfaction-guaranteed .wp-block-group__inner-container :first-child { 
  margin-top: 0px;
  padding-top: 0px;
}

.wp-block-group.seamless-integration {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.wp-block-group.seamless-integration .wp-block-columns {
  margin: 0px;
  padding: 0px;
}

.wp-block-group.seamless-integration .wp-block-columns .wp-block-column:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wp-block-group.transparent-pricing {
  margin: 0px;
  padding: 0px;
}

.wp-block-group.dedicated-support {
  margin: 0px;
  padding: 0px;
}

.wp-block-group.dedicated-support .wp-block-columns .wp-block-column:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* News Posts */

.wp-block-group.news {
  padding: 60px 0px 0px 0px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 370px);
  grid-gap: 50px;
  justify-content: center;
  padding: 35px 0px;
}

.posts-grid .post {
  display: grid;
  grid-template-rows: 267px 1fr auto;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.post__date {
  background-color: #C3A061;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  line-height: 13px;
  margin-bottom: 30px;
  width: 78px;
  height: 78px;
  z-index: 2;
}

.posts-grid .post__date {
  position: absolute;
  top: -25px;
  left: -20px;
}

.post__day {
  color: #fff;
  font-size: 36px;
  line-height: 36px;
}

.posts-grid .post__image {
  background-color: #f4f4f4;
  background-image: url('images/news-placeholder.svg');
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  display: block;
  overflow: hidden;
}

.posts-grid .post__image img {
  display: block;
  object-fit: cover;
  object-position: left top;
  width: 100%;
  height: 267px;
}

.posts-grid .post a {
  color: #1B2C54;
  text-decoration: none;
}

.posts-grid .post a h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 37px;
  margin: 15px 0px;
}

.posts-grid-nav {
  margin: 64px 0px 120px 0px;
}

/* Single Post */

.desktop-featured-image {
  display: block;
  margin-bottom: 56px;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

.desktop-featured-image img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-width: none;
  height: 400px;
}

.mobile-featured-image {
  display: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

.mobile-featured-image img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.single-post {
  margin: 0px;
  min-height: 100vh;
}

.single-content {
  flex-basis: 70%;
  padding-top: 2em;
  padding-bottom: 2em;
}

.single-content :first-child {
  margin-top: 0px;
}

.post-navigation {
  display: flex;
  gap: 30px;
  margin: 90px 0px 115px 0px;
  width: 100%;
}

.post-navigation .previous-post, 
.post-navigation .next-post {
  flex-basis: 50%;
}

.post-navigation .post-link {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-gap: 10px;
  height: 100%;
  min-height: 96px;
}

.post-navigation .post-link.previous {
  grid-template-columns: 96px 1fr;
}

.post-navigation .post-link.next {
  grid-template-columns: 1fr 96px;
}

.post-navigation .post-link .nav-text {
  grid-column: 1 / -1;  
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.post-navigation .post-link.previous .nav-text::before {
  background-image: url('images/icons/Icon_Arrow Previous-gold.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  display: block;
  width: 24px;
  height: 24px;
}

.post-navigation .post-link.next .nav-text {
  display: flex;
  justify-content: flex-end;
}

.post-navigation .post-link.next .nav-text::after {
  background-image: url('images/icons/Icon_Arrow Next-gold.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  display: block;
  width: 24px;
  height: 24px;
}

.post-navigation .post-link .thumbnail {
  background-color: #f4f4f4;
  background-image: url('images/news-placeholder.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  height: 96px;
}

.post-navigation .post-link .title {
  color: #1B2C54;
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 30px;
}

.post-navigation .post-link.next .title {
  justify-content: flex-end;
  text-align: right;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 90px 0px;
}

.pagination ul {
  background-color: #f4f4f4;
  border: solid 1px #ddd;
  border-radius: 5px;
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

.pagination ul li .page-numbers {
  border-left: solid 1px #ddd;
  color: #1B2C54;
  display: block;
  padding: 10px;
}

.pagination ul li:first-child .page-numbers {
  border-left: none;
}

.pagination ul li .page-numbers.current {
  background-color: #1B2C54;
  color: #fff;
  font-weight: bold;
}

/* Sidebar */

.sidebar {
  border-left: solid 2px #ECE8E8;
  flex-basis: 30%;
  padding: 2em;
}

.sidebar h2 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.sidebar form.search {
  margin-bottom: 31px;
}

.sidebar form.search input[type=text] {
  border: solid 1px #C3A061;
  border-radius: 0px;
  color: #1B2C54;
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0px;
  padding: 0px 15px;
  width: 100%;
  height: 57px;
}

.post-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.post-list li {
  display: grid;
  grid-template-columns: 106px 1fr;
  grid-template-rows: 1fr auto;
  grid-gap: 10px;
  margin: 34px 0px;
  width: 100%;
  min-height: 115px;
}

.post-list .thumbnail {
  grid-row: 1 / -1;
}

.post-list .thumbnail .img {
  background-color: #f4f4f4;
  background-image: url('images/news-placeholder.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  height: 115px;
}

.post-list a.post-title h3 {
  color: #1B2C54;
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  margin: 0px;
}

.post-list a.read-more {
  font-size: 13px;
}

.post-list a.read-more::after {
  width: 24px;
  height: 18px;
}

/* Contact Page */

.wp-block-group.contact {
  padding: 0px;
}

.wp-block-group.contact .wp-block-group__inner-container {
  padding: 0px;
  max-width: 1280px;
}

.wp-block-group.contact .wp-block-column {
  padding: 60px;
}

.wp-block-group.contact .wp-block-column:nth-child(1) {
  background-image: linear-gradient(135deg, #1B2C54, #06338A);
  padding-left: 15px;
  padding-right: 15px;
}

.wp-block-group.contact .wp-block-column:nth-child(1) p {
  margin: 0px auto 9px auto;
}

.wp-block-group.contact .wp-block-column:nth-child(1) hr {
  margin: 0px auto 60px auto;
  max-width: 273px;
}

.wp-block-group.contact .wp-block-column:nth-child(1) .wp-block-image {
  margin: 0px auto 14px auto;
  width: 50px;
  height: 50px;
}

.wp-block-group.contact .wp-block-column:nth-child(1) .wp-block-image img {
  width: 50px;
  height: 50px;
}

/* Legal Policy Pages */

.legal-content {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Footer */

footer {
  background-color: #1B2C54;
  color: #C3A061;
}

footer .footer-top .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4vw;
  padding: 40px 15px;
}

footer a {
  color: #C3A061;
  text-decoration: none;
}

footer .footer-1 h4 {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  margin: 0px 0px 5px 0px;
}

footer .footer-1 h4::before {
  background-image: url('images/BLITZ-logo-footer.svg');
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  margin-right: 15px;
  width: 51px;
  height: 38px;
}

footer .footer-1 p {
  color: #fff;
  font-weight: 600;
}

footer .footer-2,
footer .footer-3 {
  font-size: 22px;
  font-weight: bold;
}

footer .footer-2 h4, 
footer .footer-3 h4 {
  color: #C3A061;
  font-size: 18px;
  font-weight: normal;
  margin: 0px 0px 5px 0px;
}

footer .footer-2 p,
footer .footer-3 p {
  margin: 0px 0px 30px 0px;
}

footer .footer-top .menu {
  list-style: none;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

footer .footer-top .menu .menu-item {
  margin: 0px 0px 5px 0px;
}

footer .footer-bottom {
  position: relative;
}

footer .footer-bottom::before {
  background-image: linear-gradient(to right, #9A713D, #EDCF85);
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 100vw;
  height: 8px;
}

footer .footer-bottom .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 40px;
  padding: 5px 15px;
}

footer .footer-bottom .widget:nth-child(2) {
  text-align: center;
}

/* Mobile Responsiveness */

@media all and (max-width: 1199px) {
  
  footer .footer-top .container {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

}

@media all and (max-width: 1024px) {

  html {
    scroll-padding-top: 51px;
  }

  #topBar {
    display: none;
  }

  header.sticky {
    padding-top: 4px;
    height: 51px;
  }

  header.sticky::before {
    height: 4px;
  }

  header .header__logo {
    flex-basis: 102px;
    margin: 0px;
    height: 21px;
  }

  header.sticky .site-logo {
    display: block;
    width: 102px;
    height: 21px;
  }

  header.sticky nav {
    display: none;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  .menu-toggle {
    display: flex;
  }

  body.menu-open .menu-toggle::before {
    content: '\f00d';
  }

  body.menu-open .mobile-menu {
    display: block;
  }

  body.home header .header__logo {
    display: none;
  }

  body.home header .menu-toggle {
    left: 20px;
  }

  /* Page Banners */

  #banner {
    margin-top: 51px;
    padding-top: 80px;
    min-height: 0px !important;
  }

  #banner.home {
    display: block;
    align-items: flex-start;
    margin-bottom: 0px;
    overflow: hidden;
    position: relative;
    height: auto !important;
    max-height: none !important;
    z-index: 1;
  }

  #banner.home .banner__content {
    height: 100%;
  }

  #banner .banner__img,
  #banner.home .banner__img {
    top: 0px;
    bottom: unset !important;
    left: 0px;
    transform: unset;
    height: 440px !important;
  }

  #banner .banner__img img,
  #banner.home .banner__img img {
    top: 0px;
    right: -140px;
    bottom: unset !important;
    object-fit: contain;
    height: 440px;
  }

  #banner.home .banner__bg {
    top: unset;
    bottom: 0px !important;
    clip-path: polygon(100% 100%, 100% 0%, 0% 30%, 0% 100%);
    height: 70%;
    z-index: -1;
  }

  #banner:not(.home)::after {
    background-image: linear-gradient(to right, #9A713D, #EDCF85);
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 8px;
  }

  #banner.home .banner__text {
    display: flex;
    flex-direction: column;
    padding-right: 15%;
    text-align: left;
    height: 100%;
    min-height: 640px;
  }

  #banner.home .banner__text p {
    padding: 0px;
  }

  #banner.home .sub-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0px;
    text-align: left;
    width: 200px;
    flex-basis: 320px;
  }

  #banner.home .sub-heading::before {
    background-image: url('images/BLITZ-white-nav-bar.svg');
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    display: block;
    margin-top: -60px;
    margin-bottom: 17px;
    width: 178px;
    height: 49px;
  }

  #banner.home .banner__main-text {
    display: flex;
    flex-direction: column;
    flex-basis: 320px;
    justify-content: flex-end;
    padding: 25.5px 0px;
  }

  #banner h1, 
  #banner .heading, 
  #banner.home h1, 
  #banner.home .heading {
    font-size: 34px;
    line-height: 45px;
  }

  #banner:not(.home) .banner__text {
    margin: 0px;
    padding: 0px 15px;
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: 160px;
  }

  /* Columns */
  
  .wp-block-columns {
    flex-direction: column !important;
  }

  .wp-block-columns .wp-block-column {
    margin: 0px !important;
    padding: 0px 15px !important;
    width: 100% !important;
  }

  /* Cards */

  .cards {
    margin: 0px !important;
    padding: 0px !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }

  .cards .slick-slider {
    margin: 0px !important;
    padding: 0px !important;
  }

  .cards .slick-list {
    padding: 0px !important;
  }

  .cards .gutentor-carousel-item {
    border: none;
    margin: 0px;
    width: 100%;
  }

  .cards .gutentor-col-wrap > .gutentor-container-cover {
    border: solid 4px #C3A061;
    width: 100% !important;
  }
  
  .slick-dots {
    bottom: 0px !important;
  }

  .slick-dots li {
    background-color: #122144 !important;
    border-radius: 100% !important;
  }

  .slick-dots li.slick-active {
    background-color: #C3A061 !important;
  }
  
  .gutentor-post-module .slick-dots li button, 
  .gutentor-module .slick-dots li button, 
  .gutentor-section .slick-dots li button {
    border-radius: 100% !important;
  }

  .our-values, 
  .our-values .wp-block-cover {
    padding-bottom: 0px !important;
  }

  .our-values .cards {
    margin: 45px 0px 0px 0px !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw !important;
  }

  .our-values .cards .gutentor-carousel-item {
    border: none;
    margin: 0px !important;
    width: 100vw !important;
  }

  .our-values .cards .gutentor-col-wrap > .gutentor-container-cover {
    margin: 0px !important;
    padding: 50px 15% !important;
    width: 100% !important;
    min-height: 360px;
  }

  /* Posts */

  .wp-block-columns.single-post {
    flex-direction: column;
    padding-top: 40px;
  }

  .wp-block-columns.single-post .wp-block-column:nth-child(2) {
    border: none;
    margin: 0px;
    padding: 0px;
  }

  /* Home Page */
  
  .wp-block-group.digital-payments {
    background-image: linear-gradient(to bottom, #06338A, #1B2C54);
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
    color: #fff;
    padding-top: 61px;
    padding-bottom: 110px;
  }
  
  .wp-block-group.digital-payments .has-text-align-center {
    text-align: left;
  }

  .wp-block-group.digital-payments .wp-block-buttons {
    margin-top: 48px;
  }

  .wp-block-group.digital-payments .wp-block-button__link {
    color: #EDCF85 !important;
  }

  .wp-block-group.why-choose-us .wp-block-columns {
    flex-direction: column !important;
  }

  .wp-block-group.why-choose-us .wp-block-columns .wp-block-column:nth-child(1) img {
    margin: 0px auto;
  }

  .wp-block-group.why-choose-us .wp-block-columns .wp-block-column:nth-child(2) {
    margin: 0px;
    padding: 0px;
  }

  .wp-block-group.start-processing-payments-today .wp-block-columns {
    flex-direction: column !important;
  }

  .start-processing-payments-today .wp-block-columns .wp-block-column:nth-child(2) {
    margin: 0px !important;
    padding-left: 10px;
    width: 100% !important;
  }

  /* About Page */

  .wp-block-group.about-simplicity .wp-block-columns {
    background-image: none;
    flex-direction: column;
  }

  .wp-block-group.about-simplicity .wp-block-columns .wp-block-column {
    margin: 0px !important;
    padding: 0px !important;
    width: 100% !important;
  }

  .wp-block-group.about-simplicity .wp-block-columns .wp-block-column:nth-child(1) img {
    margin: 0px auto !important;
  }

  .wp-block-group.about-icons {
    display: none;
  }

  .wp-block-group.satisfaction-guaranteed .wp-block-group__inner-container {
    border: none;
    padding: 0px;
  }

  .wp-block-group.seamless-integration {
    padding-top: 8px;
  }

  .wp-block-group.seamless-integration::before {
    background-image: linear-gradient(to right, #9A713D, #EDCF85);
    content: '';
    display: block;
    position: relative;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 8px;
  }

  /* News */

  .mobile-featured-image {
    display: block;
  }

  .desktop-featured-image {
    display: none;
  }

  /* CTA Blocks */

  .cta .wp-block-columns {
    background-image: url('images/BLITZ-gold-outline.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-direction: column;
  }

  .cta .wp-block-column:nth-child(1) {
    margin-left: 0px;
    padding-left: 10px;
  }

  .cta .wp-block-column:nth-child(2)::before {
    background-image: none;
  }

  /* Contact Page */

  .wp-block-group.contact .wp-block-columns {
    flex-direction: column-reverse !important;
  }

  .wp-block-group.contact .wp-block-column:nth-child(1) {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .frm_button_submit {
    margin-top: 35px !important;
    position: relative;
    right: 0px;
  }

}

@media all and (max-width: 768px) {

  .cards {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }

  .post-navigation {
    flex-direction: column;
  }

  footer .footer-bottom .container {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }

  footer .footer-bottom .widget:nth-child(2) {
    order: 3;
    text-align: left;
  }

}

@media all and (max-width: 480px) {

  .posts-grid {
    grid-template-columns: repeat(auto-fill, 280px);
  }

}