/* @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap"); */

/* Custom Classes */
.bg-blue {
  background-color: #0e6cdd;
}

.bg-green {
  background-color: #1b842c;
}

.bg-orange {
  background-color: #ff8000;
}

.bg-black-hover:hover {
  background-color: #282b30;
}

.bg-black {
  background-color: #282b30;
}

.text-blue {
  color: #0e6cdd;
}

.text-green {
  color: #1b842c;
}

.text-orange {
  color: #ff8000;
}

.btn-animate-pulse a {
  -webkit-animation: pulse 1.5s ease-in-out infinite;
  animation: pulse 1.5s ease-in-out infinite;
}

.btn-hover-float a {
  position: relative;
  top: 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.btn-hover-float a:hover {
  top: -4px;
}

.text-white {
  color: #fff;
}

.text-green {
  color: #079f4b;
}

.text-black {
  color: #282b30;
}

.text-gray {
  color: #686a6e;
}

.text-gray-light {
  color: #c8c9cb;
}

.text-yellow {
  color: #fbbe3c;
}

.text-gradient-blue-white .fl-heading-text {
  background: -o-linear-gradient(top, #006cdd 50%, #fff 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, #006cdd),
    to(#fff)
  );
  background: linear-gradient(to bottom, #006cdd 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shadow-1 {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.t-0 {
  top: 0;
}

.pp-dual-button a {
  border-radius: 8px;
}

.h1,
h1 {
  font-size: 3rem;
  line-height: 3.75rem;
}

.h2,
h2 {
  font-size: 2.375rem;
  line-height: 3.25rem;
}

.par-1 {
  font-size: 1.125rem;
}

.small-1 {
  font-size: 0.875rem;
}

.small-2 {
  font-size: 15px;
}

.small-3 {
  font-size: 13px;
}

.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}

.ff-arial {
  font-family: "Arial", sans-serif;
}

.ff-roboto {
  font-family: "Roboto", sans-serif;
}

.custom-list {
  margin-left: 0 !important;
}

.custom-list li {
  list-style-type: none !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.lh-5 {
  line-height: 2.2;
}

.lh-4 {
  line-height: 2;
}

.lh-3 {
  line-height: 1.7;
}

.lh-2 {
  line-height: 1.5;
}

.lh-1 {
  line-height: 1.2;
}

.opacity-0 {
  opacity: 0;
}

/* .section-title,
.section-title * {
	font-size: 35px;
} */

.underline {
  position: relative;
  display: block;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}

.underline:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #08a04b;
  left: 0;
  bottom: 0;
}

.img-link-hover {
  display: block;
}

.img-link-hover * {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.img-link-hover-scale:hover * {
  -webkit-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.img-link-hover-darken:hover * {
  -webkit-filter: grayscale(1) brightness(0.75);
  filter: grayscale(1) brightness(0.75);
}

.bottom-inner-shadow,
.bottom-outer-shadow {
  position: relative;
  z-index: 0;
}

.bottom-inner-shadow:after,
.bottom-outer-shadow:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1.25rem;
  z-index: 1;
  left: 0;
}

.bottom-outer-shadow:after {
  bottom: -1.25rem;
}

.bottom-inner-shadow:after {
  bottom: 0;
  background-image: -o-linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.03),
    rgba(0, 0, 0, 0.1)
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(rgba(0, 0, 0, 0.03)),
    to(rgba(0, 0, 0, 0.1))
  );
  background-image: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.03),
    rgba(0, 0, 0, 0.1)
  );
}

.bottom-outer-shadow:after,
.top-inner-shadow:before {
  background-image: -o-linear-gradient(
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.03),
    transparent
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.1)),
    color-stop(rgba(0, 0, 0, 0.03)),
    to(transparent)
  );
  background-image: linear-gradient(
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.03),
    transparent
  );
}

.badge-light-blue {
  background-color: #6994fc;
  color: #fff;
}

.border-step-content {
  position: relative;
}

.border-step-content:before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 6px;
  left: calc(30px - 8px);
  border: 1px solid #d4edda;
}

.border-step-content:after {
  top: 22px;
  bottom: 26px;
  background-color: #d4edda;
  left: 30px;
  width: 1px;
  height: calc(100% - 40px);
}

.border-step-content:before,
.border-step-content:after {
  content: "";
  position: absolute;
}

.image-data-lity {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  -webkit-box-shadow: 1px 1px 20px rgba(159, 159, 159, 0.1);
  box-shadow: 1px 1px 20px rgba(159, 159, 159, 0.1);
  overflow: hidden;
}

.image-data-lity:hover {
  opacity: 1 !important;
}

.image-data-lity:before {
  content: "View";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: opacity 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s !important;
  -o-transition: opacity 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s !important;
  transition: opacity 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}

.image-data-lity:hover:before {
  opacity: 1;
}

/* Base */
:root {
  font-size: 16px;
  --mint: #08c49c;
}

html {
  margin-top: initial !important;
}

body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  font-size: 16px;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgba(0, 0, 0, 0.3);
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(0, 0, 0, 0.3);
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(0, 0, 0, 0.3);
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.3);
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.3);
}

a:focus,
a:hover {
  color: #08a04b;
}

.gform_wrapper .gsection,
.fl-node-5bb230879e7cf {
  background-color: #079f4b;
}

input,
textarea,
body .gform_wrapper select {
  -webkit-box-shadow: inset 0 1px 2px rgba(130, 137, 150, 0.23),
    0 1px 0 rgba(255, 255, 255, 0.95) !important;
  box-shadow: inset 0 1px 2px rgba(130, 137, 150, 0.23),
    0 1px 0 rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px !important;
}

input,
textarea,
body .gform_wrapper select {
  padding: 12px 18px !important;
  line-height: normal !important;
}

.mce-container,
.mce-container *,
.mce-widget,
.mce-widget * {
  padding: initial !important;
}

body .gform_wrapper .gform_fileupload_multifile .gform_drop_area {
  border-color: #28a84d;
}

body .gform_wrapper .validation_message {
  color: #790000;
}

.gform_wrapper div.validation_error {
  color: #790000 !important;
  border-color: #790000;
}

.gform_wrapper ul.gfield_checkbox li label,
.gform_wrapper ul.gfield_radio li label {
  color: #000;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

.gform_wrapper .gfield_description p {
  color: #000;
}

.gform_wrapper .gfield_checkbox li label:after,
.gform_wrapper .gfield_radio li label:after {
  border-color: #000 !important;
}

body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type="submit"] {
  background-color: #28a84d !important;
  border-color: #28a84d !important;
  font-weight: 900;
  font-size: 25px;
  max-width: initial;
}

body .gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: #2c3137 !important;
  border-color: #2c3137 !important;
  color: #fff !important;
}

.pp-dual-button a {
  position: relative;
  overflow: hidden;
}
.pp-dual-button a:after {
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  border-radius: 3.125rem;
  -ms-filter: "alpha(opacity=30)";
  opacity: 0.3;
  z-index: -1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: #000;
  transition: all 1s ease;
  cursor: pointer;
}

.pp-dual-button:hover a:after {
  -ms-filter: "alpha(opacity=100)";
  left: 0;
  border-radius: 0;
}

.pp-dual-button:hover .hover-bg-white {
  background-color: #fff !important;
  color: #212529 !important;
}

.pp-dual-button:hover .hover-bg-green {
  background-color: #08a04b !important;
  color: #fff !important;
}

input#input_22_7_1 {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
  margin-top: 6px;
  opacity: 1;
}

.gfield_consent_label {
  padding-left: 20px;
}

div#gform_wrapper_22 {
  margin-top: 0 !important;
}

.form-hl-text {
  margin-bottom: 4px;
  background: -o-linear-gradient(
      346deg,
      rgba(243, 204, 47, 0) 0.9%,
      rgba(243, 204, 47, 1.25) 2.4%,
      rgba(243, 204, 47, 0.5) 5.8%,
      rgba(243, 204, 47, 0.1) 93%,
      rgba(243, 204, 47, 0.7) 96%,
      rgba(243, 204, 472, 0) 98%
    ),
    -o-linear-gradient(267deg, rgba(243, 204, 47, 0) 0%, rgba(243, 204, 47, 0.3)
          7.9%, rgba(243, 204, 47, 0) 15%);
  background: -o-linear-gradient(
      346deg,
      rgba(243, 204, 47, 0) 0.9%,
      rgba(243, 204, 47, 1.25) 2.4%,
      rgba(243, 204, 47, 0.5) 5.8%,
      rgba(243, 204, 47, 0.1) 93%,
      rgba(243, 204, 47, 0.7) 96%,
      rgba(243, 204, 472, 0) 98%
    ),
    -o-linear-gradient(267deg, rgba(243, 204, 47, 0) 0%, rgba(243, 204, 47, 0.3)
          7.9%, rgba(243, 204, 47, 0) 15%);
  background: -o-linear-gradient(
      346deg,
      rgba(243, 204, 47, 0) 0.9%,
      rgba(243, 204, 47, 1.25) 2.4%,
      rgba(243, 204, 47, 0.5) 5.8%,
      rgba(243, 204, 47, 0.1) 93%,
      rgba(243, 204, 47, 0.7) 96%,
      rgba(243, 204, 472, 0) 98%
    ),
    -o-linear-gradient(267deg, rgba(243, 204, 47, 0) 0%, rgba(243, 204, 47, 0.3)
          7.9%, rgba(243, 204, 47, 0) 15%);
  background: -o-linear-gradient(
      346deg,
      rgba(243, 204, 47, 0) 0.9%,
      rgba(243, 204, 47, 1.25) 2.4%,
      rgba(243, 204, 47, 0.5) 5.8%,
      rgba(243, 204, 47, 0.1) 93%,
      rgba(243, 204, 47, 0.7) 96%,
      rgba(243, 204, 472, 0) 98%
    ),
    -o-linear-gradient(267deg, rgba(243, 204, 47, 0) 0%, rgba(243, 204, 47, 0.3)
          7.9%, rgba(243, 204, 47, 0) 15%);
  background: -o-linear-gradient(
      346deg,
      rgba(243, 204, 47, 0) 0.9%,
      rgba(243, 204, 47, 1.25) 2.4%,
      rgba(243, 204, 47, 0.5) 5.8%,
      rgba(243, 204, 47, 0.1) 93%,
      rgba(243, 204, 47, 0.7) 96%,
      rgba(243, 204, 472, 0) 98%
    ),
    -o-linear-gradient(267deg, rgba(243, 204, 47, 0) 0%, rgba(243, 204, 47, 0.3)
          7.9%, rgba(243, 204, 47, 0) 15%);
  background: -o-linear-gradient(
      346deg,
      rgba(243, 204, 47, 0) 0.9%,
      rgba(243, 204, 47, 1.25) 2.4%,
      rgba(243, 204, 47, 0.5) 5.8%,
      rgba(243, 204, 47, 0.1) 93%,
      rgba(243, 204, 47, 0.7) 96%,
      rgba(243, 204, 472, 0) 98%
    ),
    -o-linear-gradient(267deg, rgba(243, 204, 47, 0) 0%, rgba(243, 204, 47, 0.3)
          7.9%, rgba(243, 204, 47, 0) 15%);
  background: linear-gradient(
      104deg,
      rgba(243, 204, 47, 0) 0.9%,
      rgba(243, 204, 47, 1.25) 2.4%,
      rgba(243, 204, 47, 0.5) 5.8%,
      rgba(243, 204, 47, 0.1) 93%,
      rgba(243, 204, 47, 0.7) 96%,
      rgba(243, 204, 472, 0) 98%
    ),
    linear-gradient(
      183deg,
      rgba(243, 204, 47, 0) 0%,
      rgba(243, 204, 47, 0.3) 7.9%,
      rgba(243, 204, 47, 0) 15%
    );
  text-shadow: -6px 6px 9px rgba(243, 204, 47, 0.7),
    24px -18.1px 6px rgba(255, 255, 255, 1),
    -18px -24px 30px rgba(255, 255, 255, 1);
  color: #222;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 4px;
  font-weight: 700;
}

.point-on-hover:hover {
  cursor: pointer;
}

/* Header */
.site-header {
  background-color: #fff;
  padding-left: initial;
  padding-right: initial;
}

.site-header header {
  width: 100%;
}

#menu-header-revamp .sub-menu {
  opacity: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1) 0s !important;
  -o-transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1) 0s !important;
  transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1) 0s !important;
}

#utility-bar > .wrap,
.home .site-header > .wrap {
  max-width: initial;
}

.site-header {
  color: initial;
}

.bg-hover-shapes a {
  color: #08a04b !important;
}

.bg-hover-shapes a,
.bg-hover-shapes a:hover {
  font-weight: 700 !important;
}

.bg-hover-shapes a:before,
.bg-hover-shapes a:after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  height: 3.75rem;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  -ms-filter: "alpha(opacity=0)";
  opacity: 0;
  z-index: 0;
  -webkit-transform: scale(1) translateX(0) translateY(-50%);
  -ms-transform: scale(1) translateX(0) translateY(-50%);
  transform: scale(1) translateX(0) translateY(-50%);
  top: 50%;
}

.bg-hover-shapes a:before {
  background-image: url(https://l06gh31dwok1b7wci2pibtt1-wpengine.netdna-ssl.com/wp-content/themes/designpickle/assets/dist/css/../../images/dp-sparkle-before.png);
}

.bg-hover-shapes a:after {
  background-image: url(https://l06gh31dwok1b7wci2pibtt1-wpengine.netdna-ssl.com/wp-content/themes/designpickle/assets/dist/css/../../images/dp-sparkle-after.png);
}

.bg-hover-shapes a:hover:before,
.bg-hover-shapes a:hover:after {
  -ms-filter: "alpha(opacity=35)";
  opacity: 0.35;
}

.bg-hover-shapes a:hover:before {
  -webkit-transform: scale(1.2) translateX(-0.5rem) translateY(-50%);
  -ms-transform: scale(1.2) translateX(-0.5rem) translateY(-50%);
  transform: scale(1.2) translateX(-0.5rem) translateY(-50%);
}

.bg-hover-shapes a:hover:after {
  -webkit-transform: scale(1.2) translateX(0.3125rem) translateY(-50%);
  -ms-transform: scale(1.2) translateX(0.3125rem) translateY(-50%);
  transform: scale(1.2) translateX(0.3125rem) translateY(-50%);
}

.fl-node-5f285d7a04285 a,
#menu-header-revamp > .menu-item > .fl-has-submenu-container > a {
  position: relative;
}

#menu-header-revamp > .menu-item > a:after,
#menu-header-revamp > .menu-item > .fl-has-submenu-container > a:after {
  content: "";
  position: absolute;
  height: 4px;
  background-color: #08a04b;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  left: 14px;
  right: 100%;
  bottom: 0;
  opacity: 0;
}

#menu-header-revamp .sub-menu .menu-item a {
  padding: initial;

  font-weight: 800;
}

#menu-header-revamp > .current-menu-item > div > a,
#menu-header-revamp > .current-menu-parent > div > a,
#menu-header-revamp > .current-menu-parent .sub-menu .current-menu-item a,
#menu-header-revamp .sub-menu .menu-item a:hover {
  color: #08a04b !important;
}

#menu-header-revamp > .menu-item > a:hover:after,
#menu-header-revamp > .menu-item > .fl-has-submenu-container > a:hover:after {
  right: 14px;
  opacity: 1;
}

.fl-node-5f2863de77b7a .menu .fl-has-submenu .sub-menu {
  left: 14px;
}

.fl-node-5f285d7a0428a a:hover {
  font-weight: 700;
}

.mobile-menu-bar {
  display: none;
}

.fl-node-5f2af5d650423 .menu a {
  color: #2c3137;
}

.fl-menu-mobile-toggle:focus {
  outline: none;
}

.fl-node-5f2af5d650423 .fl-menu-mobile-toggle {
  padding-top: initial;
  padding-bottom: initial;
  color: #079f4b;
}

header.fl-builder-content-5557 .fl-module-content {
  margin-top: initial;
  margin-bottom: initial;
}

#menu-header-revamp .menu-item > .sub-menu a,
#menu-mobile-revamp .menu-item .sub-menu a,
#menu-account .menu-item:first-child a,
#menu-account .menu-item:last-child a {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

#menu-header-revamp .menu-item > .sub-menu a {
  padding-bottom: 2rem !important;
}

#menu-header-revamp .menu-item > .sub-menu a i,
#menu-mobile-revamp .menu-item .sub-menu a i,
#menu-account .menu-item a i,
#menu-mobile-revamp .menu-item a i {
  position: absolute;
  top: 0;
  left: 0;
  color: #079f4b;
}

#menu-header-revamp .sub-menu {
  padding: 2rem 1.5rem 0;
}

#menu-header-revamp #menu-item-6081 .sub-menu,
#menu-mobile-revamp #menu-item-6102 .sub-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  right: auto !important;
}

#menu-header-revamp #menu-item-6081 .sub-menu > * {
  width: 32.33%;
}

#menu-header-revamp #menu-item-6081 li {
  padding-left: 1rem;
  padding-right: 1rem;
}

#menu-header-revamp .sub-menu a,
#menu-header-revamp .sub-menu a i,
#menu-account .menu-item a i {
  line-height: 1.7;
}

#menu-account .menu-item a i,
#menu-mobile-revamp .menu-item a i {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.site-header ul#menu-account .hover-button-style {
  padding-left: 16px;
  border-radius: 4px;
}

.site-header ul#menu-account .hover-button-style,
.site-header ul#menu-account .hover-button-style i {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.site-header ul#menu-account .hover-button-style:hover {
  background-color: #079f4c;
}

.site-header ul#menu-account .hover-button-style:hover a {
  font-weight: 600 !important;
}

.site-header ul#menu-account .hover-button-style:hover a,
.site-header ul#menu-account .hover-button-style:hover i {
  color: #fff !important;
}

#menu-header-revamp #menu-item-6081 .current-menu-item a,
#menu-mobile-revamp #menu-item-6102 .current-menu-item a {
  color: #000 !important;
}

#menu-header-revamp #menu-item-6081 .current-menu-item a:hover,
#menu-mobile-revamp #menu-item-6102 .current-menu-item a:hover {
  color: #079f4b !important;
}

#menu-mobile-revamp .fl-has-submenu-container a:after {
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid #079f4b;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 0.8rem;
}

.site-header.stick {
  position: relative;
}

#menu-mobile-revamp .menu-item .sub-menu a i {
  top: 12px;
  -webkit-transform: initial;
  -ms-transform: initial;
  transform: initial;
}

#menu-mobile-revamp ul li {
  width: 100%;
}

.fl-menu .sub-menu {
  min-width: 230px;
}

#menu-header-revamp .sub-menu li {
  display: block !important;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

/* Header Dropdown */

ul#menu-header-revamp .sub-menu {
  top: calc(100% + 4rem);
  left: initial;
  opacity: 0 !important;
  z-index: -1;
  overflow: hidden;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

#menu-header-revamp .menu-item:hover .sub-menu {
  top: 100%;
  opacity: 1 !important;
  z-index: 99;
}

.hl-menu > div > a,
.hl-menu > a {
  color: #079f4c !important;
}

/* Page */
body .site-inner {
  margin-top: initial;
}

/* Hero */
/* .hero .pp-dual-button-1 {
	position: relative;
	overflow: hidden;
}

.hero-demo .pp-dual-button-1:hover a {
	background-color: #fff !important;
	border-color: #fff !important;
}

.hero-demo .pp-dual-button-1:hover a,
.hero-demo .pp-dual-button-1:hover a .pp-font-icon {
	color: #2c3137 !important;
} */

.page-id-5552 .hero .wistia_responsive_padding,
.page-id-7133 .hero .wistia_responsive_padding,
.page-id-7225 .hero .wistia_responsive_padding,
.page-id-7478 .hero .wistia_responsive_padding,
.footer-cta .wistia_responsive_padding {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 0 !important;
  z-index: 1;
}

.hero-featured {
  position: relative;
}

.hero-featured-img,
.hero-featured i {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hero-featured:hover {
  cursor: pointer;
}

.hero-featured:hover i {
  padding-left: 4px;
  opacity: 1;
}
li#menu-item-8437 {
  width: 15%;
  text-align: center;
}
li#menu-item-8436 a {
  margin-left: 25px;
}
/* BLUR HERO IMAGE WHEN HOVER */
/* .hero-featured:hover .hero-featured-img {
  -webkit-filter: saturate(120%) blur(4px);
  filter: saturate(120%) blur(4px);
}

.video-banner--pop-embed-thumbnail:hover .video-banner--pop-embed-vid-thumb {
  -webkit-filter: saturate(120%) blur(4px);
  filter: saturate(120%) blur(4px);
} */


.hero-featured i {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.8;
}

/* Footer */
.fl-node-5f28769ba0476 .fl-menu .menu > li {
  display: initial;
  border: none;
}

footer .menu-item a {
  display: block;
  line-height: 1.7;
}

.fl-node-5f2875e0898a4 p {
  margin-bottom: initial;
}

.fl-node-5f2875e0898a4 p a:hover {
  color: #079f4b !important;
}

.fl-node-5f288255f2598 a {
  color: #2c3137;
}

.fl-node-5f32a4a92f577 img {
  margin-bottom: -86px;
  position: relative;
  z-index: 1;
}

.pp-dual-button-1 {
  margin-bottom: 0.5rem;
}

/* Brands */
.fl-node-5f28a159b6c11 i,
.fl-node-5f3c4a1b76153 i {
  margin-left: auto;
  margin-right: auto;
}

.fl-node-5f28a159b6c11 a:hover,
.fl-node-5f3c4a1b76153 a:hover {
  cursor: default;
}

/* Social Media */
.social-media-list-item-link {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  padding-right: 16px;
}

.social-media-list-item-link:hover {
  color: #fff;
}

.social-media-list-item-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2c3137;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.social-media-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.social-media-list-item-link:hover:before {
  background-color: #079f4b;
}

/* Lead */
.fl-node-5f296bd68c62b {
  margin-bottom: -64px;
  position: relative;
  z-index: 1;
}

/* Pricing Cards */
.list-check-light ul,
.list-check-dark ul {
  margin-left: initial;
  display: inline-block;
}

.list-check-light li,
.list-check-dark li {
  list-style-type: none !important;
  padding-left: 32px;
  text-align: left;
}

.list-check-light li:before,
.list-check-dark li:before {
  list-style-type: none !important;
  content: "";
  position: absolute;
  background-image: url(../../images/revamp/spritesheet.png);
  background-repeat: no-repeat;
  display: block;
  margin-top: 0.1rem;
  top: 0;
  left: 0;
}

.list-check-light li:before {
  width: 20px;
  height: 21px;
  background-position: -255px -5px;
}

.list-check-dark li:before {
  width: 23px;
  height: 22px;
  background-position: -222px -5px;
}

.fl-node-5f297043b3d99 .fl-rich-text {
  text-align: center;
}

.pricing-badge {
  position: relative;
}

.pricing-badge:before {
  content: "" !important;
  position: absolute;
  background-image: url(../../images/revamp/spritesheet.png);
  background-repeat: no-repeat;
  display: block !important;
  width: 196px;
  height: 107px;
  background-position: -5px -124px;
  top: -34px;
  right: 28px;
}

.fl-node-5f297043b3ffd,
.fl-node-5f297909ee854 {
  position: relative;
}

.fl-node-5f297043b3ffd:before {
  background-color: #f3f3f3;
  right: 0;
}

.fl-node-5f297909ee854:after {
  background-color: #000;
  left: 0;
}

/* Customers */
.customers,
.customers-single-column-group {
  position: relative;
}

.customers:before,
.customers-single-column-group:before {
  content: "";
  position: absolute;
  background-color: #079f4b;
  top: 42px;
  right: 0;
  bottom: 64px;
  left: 0;
  display: block;
}

.customers-single-column-group:before {
  bottom: 80px;
}

.customers-icon {
  font-size: 120px;
  top: -40px;
}

.customers-list-item-details {
  padding-top: 50px;
}

.customers .slick-slide > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.customers .slick-dots {
  position: absolute;
  bottom: -4rem;
  left: calc(50% - 8px);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.customers-single-column-list-item:nth-child(odd) {
  margin-bottom: 1.5rem;
}

.customers-single-column-list-item:nth-child(even) {
  margin-top: 1.5rem;
}

.slick-dots li {
  margin: initial;
}

.customers-list-item-card {
  padding: 2.1875rem 1.875rem;
}

.customers .slick-next:before,
.customers .slick-prev:before {
  color: #fff;
}

.customers-single-column:before {
  display: none;
}

.customers-list-item-card {
  border-radius: 4px !important;
}

/* Media Scroll */

.media-scroll-details-list-item {
  padding-top: 15rem;
}

.media-scroll-sticky {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.media-scroll-sticky.fixed-top.limit {
  position: absolute;
  top: auto;
  bottom: 0;
}

.media-scroll-sticky-list-item-link {
  position: relative;
  padding-left: 2.5rem;
  color: #c8c9cb;
}

.media-scroll-sticky-list-item-link .counter {
  position: absolute;
  top: 0;
  left: 0;
}

.media-scroll-sticky-list-item-link.active,
.media-scroll-sticky-list-item-link:hover {
  color: #2c3137;
}

.media-scroll-sticky-list-item-link.active .counter,
.media-scroll-sticky-list-item-link:hover .counter {
  color: #079f4b;
}

.media-scroll-sticky-col-inner {
  margin-right: 6rem;
}

.media-scroll-sticky ul > li {
  margin-bottom: 4px;
}

/* Media Scroll unshrink */
.media-scroll-lg-md * {
  line-height: 1.7;
}
.media-scroll-lg-md .section-title * {
  line-height: 1.2;
}

.media-scroll-lg-md .media-scroll-sticky-list-item-link,
.media-scroll-lg-md .media-scroll-details-list-item h5 {
  font-size: 20px;
}

.media-scroll-lg-md .media-scroll-sticky-header,
.media-scroll-lg-md .media-scroll-sticky-desc {
  margin-bottom: 1.5rem;
}

nav#media-scroll-nav {
  padding-top: 18px;
}

.media-scroll-sticky ul > li {
  margin-bottom: initial;
}

/* Assets */
.assets .slick-next:before,
.assets .slick-prev:before {
  color: #2c3137;
}

.img-overlay-link img {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.img-overlay-link:hover img {
  -webkit-filter: grayscale(1) brightness(0.75);
  filter: grayscale(1) brightness(0.75);
}

.assets .slick-dots {
  bottom: -42px;
}

/* Description */
.white-label-services {
  font-family: "Open Sans", sans-serif;
}
.white-label-services--tab-content-description h3 {
  font-weight: 700;
  color: #1b842c;
}

.white-label-services--tab-content-description * {
  text-align: left !important;
}

.white-label-services--tab-content-description p {
  color: #6c757d;
  font-size: 1.2rem;
  font-weight: 300;
}

/* Sidebar */
.white-label-services--nav {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.white-label-services--items.fixed-top {
  left: initial;
  right: initial;
}

.white-label-services--items.limit {
  position: absolute;
  bottom: 0;
  top: auto;
  margin-bottom: 3rem;
}

.white-label-services--items {
  background-color: #e7f2e9;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  /* max-height: 610px;
	overflow-y: scroll; */
}

.fl-module-content.fl-node-content .fl-html .white-label-services--item {
  color: #000;
  font-weight: 700;
  padding: 15px;
}

.fl-module-content.fl-node-content .fl-html .white-label-services--item.active,
.fl-module-content.fl-node-content .fl-html .white-label-services--item:hover {
  padding-left: 16px;
}

.fl-module-content.fl-node-content .fl-html .white-label-services--item.active {
  background-color: #1b842c !important;
  color: #fff;
  opacity: 1;
  border-radius: 0;
}

.white-label-services--items.fixed-top {
  margin-top: 3rem;
}

/* Cards */
/* .white-label-services--tab-content-items {
  margin-left: -15px !important;
} */

/* Price */
.white-label-services--tab-content-item-header {
  line-height: normal;
}

.white-label-services--tab-content-item-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.entry-content .white-label-services ul > li {
  list-style: none;
  list-style-type: none;
}

.white-label-services--item.active {
  background-color: transparent !important;
  opacity: 0.3;
}

/* Content */
.white-label-services--tab-content-item-content ul {
  margin-left: 0;
}

.white-label-services--tab-content-item-content
  > ul:first-child
  li:first-child {
  border-top: none;
}

.white-label-services--tab-content-item-content li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0 !important;
  border-top: 1px solid #eee;
  font-size: 15px;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  line-height: 1.2rem;
  font-style: normal;
  font-weight: 400;
  color: #000;
}

.white-label-services--tab-content-item-content > em {
  display: block;
  padding: 10px 24px;
  background-color: #eee;
  font-size: 15px !important;
}

.white-label-services--tab-content-item-content li:before {
  /* content: '✓'; */
  content: "⦁";
  position: absolute;
  color: #1b842c;
  left: 1rem;
  font-weight: 700;
  font-size: 26px;
}

.white-label-services--tab-content-item-content li.hg {
  background-color: #e7f2e9;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #1b842c;
}

.white-label-services--tab-content-item-content li.hg:before {
  /* content: '◷'; */
  display: none;
}

.white-label-services--tab-content-item-content > em:first-child,
.white-label-services--tab-content-item-content {
  display: inline-block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  margin-bottom: 15px;
}

#v-pills-google-my-business-management
  .white-label-services--tab-content-item-category {
  display: none;
}

/* Price */
.price {
  /* font-size: 1.1rem; */
  font-size: 1rem;
}

.white-label-services--tab-content-item-suggested-retail-price {
  background-color: rgba(14, 108, 221, 0.1);
}

/* Permalink */
.white-label-services--tab-content-item-btn {
  border: 1px solid #1b842c;
  color: #fff !important;
}

.white-label-services--tab-content-item-btn:hover {
  text-decoration: none;
  opacity: 1;
  background-color: transparent;
  color: #1b842c !important;
}

/* Custom Advanced Ads */
.custom-advanced-ads {
  border: 1px dashed #ddd;
  line-height: normal;
}

/* Sticky Sidebar */
#services-tab.end {
  top: auto;
  position: absolute !important;
  bottom: 48px;
}

/* 2nd version */

.white-label-services-2 .nav-pills .nav-link.active,
.white-label-services-2 .nav-pills .nav-link:hover {
  background-color: #1b842c !important;
  color: #fff;
}

.top-160 {
  top: 160px;
}

.z-index-999 {
  z-index: 999;
}

.top-56 {
  top: 56px;
}
.left-0 {
  left: 0;
}

.white-label-services-2 div#services-tab {
  max-width: 315px;
}

.white-label-services-2 .navbar-nav .nav-link {
  font-size: 14px;
  padding: 10px;
  border-radius: 3px;
}
.white-label-services-2 .navbar-nav .nav-item.active .nav-link {
  opacity: 0.3;
}
.white-label-services-2 .navbar-nav .nav-item.active .nav-link,
.white-label-services-2 .navbar-nav .nav-link:hover {
  background-color: #1b842c !important;
  color: #fff;
}
.white-label-services-2 .navbar-nav {
  height: 300px;
  overflow: scroll;
}

.white-label-services--tab-content-notice h3 {
  font-weight: 800 !important;
}

.white-label-services--tab-content-notice h3 u,
.white-label-services--tab-content-notice h3 span {
  font-weight: 800 !important;
}
.topbar-notice {
  display: block;
  width: 100%;
  background-color: #1b842c;
  padding: 10px;
  text-align: center;
  color: #fff !important;
  font-weight: 700 !important;
}
.topbar-notice:hover {
  background-color: #e7f2e9;
  color: #1b842c !important;
}

.fl-module-content.fl-node-content .fl-html .white-label-services--item {
  padding-top: 8px;
  padding-bottom: 8px;
}

.white-label-services .small-3 {
  font-size: 12px;
}

/* Onboarding Documents */
.fl-node-5f3546e7441e5 > div > div,
.fl-node-5f354f518cbc1 > div > div,
.fl-node-5f3550d402e17 > div > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fl-node-5f3546e7441e5 > div > div .fl-module-button,
.fl-node-5f354f518cbc1 > div > div .fl-module-button,
.fl-node-5f3550d402e17 > div > div .fl-module-button,
.fl-node-615c8ddbe6ab6 > div > div .fl-module-button {
  margin-top: auto;
}

/* Testimonials */
body .fl-builder-content-5980 i {
  font-family: "Font Awesome\ 5 Free";
}

/* Get Estimate */
.fl-node-5f3bd3c964a63 > div {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Accordion */
.eapps-faq-layout-accordion .eapps-faq-content-category-item-question-icon {
  right: 0 !important;
}

.eapps-faq-layout-accordion .eapps-faq-content-category-item-question {
  padding: 16px 32px 16px 0 !important;
}
.eapps-faq-layout-accordion .eapps-faq-content-category-item-question,
.eapps-faq-content-category-item-answer-text {
  font-size: 14px;
  font-family: "Montserrat";
  line-height: 1.7;
  color: #282b30 !important;
}

.eapps-faq-layout-accordion .eapps-faq-content-category {
  margin-top: initial !important;
}

.eapps-faq-content-category-item:first-child:before {
  display: none;
}

.eapps-faq-content-category a {
  color: #079f4b !important;
}

.eapps-faq-content-category a:hover {
  color: #077a3b !important;
}

/* Demo */
/* .fl-node-5f3c0e113bd73 .pp-dual-button-1 {
	margin-bottom: 1.5rem;
} */

.fl-node-5f32a4a92f577 img {
  margin-top: 52px;
}

/* Gravity Forms */
body .gform_wrapper .gsection {
  background-color: initial;
  padding: 0 !important;
  border: none !important;
}

body .gform_wrapper h2.gsection_title {
  font-size: 16px;
  font-weight: 900;
  line-height: initial;
  color: #000;
}

.gform-button-custom {
  background-color: #079f4b;
  border: 1px solid #079f4b;
  color: #fff;
  padding: 12px 18px !important;
  width: 100%;
}

.gform-button-custom:hover {
  background-color: #212529;
  border: 1px solid #212529;
  color: #fff;
}

/* Sprites */
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
}

.sprite {
  background-image: url(../../images/revamp/spritesheet.png);
  background-repeat: no-repeat;
  display: block;
}

.sprite-badge-instant-access {
  width: 207px;
  height: 109px;
  background-position: -5px -5px;
}

.sprite-badge-most-popular {
  width: 196px;
  height: 107px;
  background-position: -5px -124px;
}

.sprite-sprite-check-dark {
  width: 23px;
  height: 22px;
  background-position: -222px -5px;
}

.sprite-sprite-check-light {
  width: 20px;
  height: 21px;
  background-position: -255px -5px;
}

.sprite-sprite-clickfunnels {
  width: 98px;
  height: 95px;
  background-position: -222px -37px;
}

.sprite-sprite-divi {
  width: 95px;
  height: 89px;
  background-position: -211px -142px;
}

.sprite-sprite-fireworks {
  width: 95px;
  height: 92px;
  background-position: -5px -241px;
}

.sprite-sprite-photoshop {
  width: 91px;
  height: 90px;
  background-position: -110px -241px;
}

.sprite-sprite-shopify {
  width: 108px;
  height: 105px;
  background-position: -330px -5px;
}

.sprite-sprite-wordpress {
  width: 109px;
  height: 95px;
  background-position: -330px -120px;
}

.sprite-sprite-gohighlevel {
  width: 95px;
  height: 92px;
  background-position: -211px -240px;
}

/* Modal */
.modal-backdrop {
  display: none;
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
}

#demo-modal .gform_confirmation_wrapper * {
  color: #1b842c;
  font-weight: 700;
}

.demo-modal-video-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

.calendly-modal .calendly-badge-widget {
  position: static;
}

.calendly-modal .calendly-badge-widget .calendly-badge-content {
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(7, 159, 75, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(7, 159, 75, 0.15) !important;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -o-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}

.calendly-modal .calendly-badge-widget .calendly-badge-content,
#mc-leadform .gform_button {
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize !important;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(7, 159, 75, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(7, 159, 75, 0.15) !important;
  border: none !important;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -o-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  -webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1)
    0s;
  transition: background-color 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}

.calendly-modal .calendly-badge-widget .calendly-badge-content:hover,
#mc-leadform .gform_button:hover {
  background-color: #20252b !important;
}

#mc-leadform {
  padding: initial !important;
}

div#mc-leadform h2.widgettitle {
  font-size: 20px;
  padding: 8px 16px;
  text-align: left;
  margin: initial;
}

#mc-leadform #gform_wrapper_20 {
  padding-left: 16px;
  padding-right: 16px;
  font-family: "Montserrat", sans-serif;
}

#mc-leadform .gfield_label {
  font-size: 14px;
  color: #666;
  line-height: 1.2rem;
  margin-bottom: 8px;
}

#mc-leadform input,
#mc-leadform textarea {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-color: #eee !important;
}

#mc-leadform {
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 20px rgba(159, 159, 159, 0.1) !important;
  box-shadow: 1px 1px 20px rgba(159, 159, 159, 0.1) !important;
  top: 0px;
  margin: initial !important;
  -webkit-transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
  -o-transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
  transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}

#mc-leadform .gform_confirmation_message h2 {
  color: #079f4c !important;
  font-size: 24px;
  line-height: normal;
  padding: 16px;
  font-weight: 300;
}

.simulate-modal-click:hover {
  background-color: #343a40;
}

.hero-demo .pp-dual-button-1.pp-dual-button.pp-button-effect-none {
  display: none;
}

.fl-col-group.fl-node-5f3d652c28e5d {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fl-node-5f297909eeae5 .fl-rich-text {
  text-align: center !important;
}

#label_20_11_1 {
  font-size: 14px;
  color: #666;
  line-height: 1.2rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

/* Services Page Banner */
.services-page-banner img {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.fl-node-6053a0003e944,
.fl-node-6053a0003e948 {
  position: relative;
}

.fl-node-6053a0003e944:before,
.fl-node-6053a0003e948:before {
  content: "" !important;
  position: absolute;
  z-index: -1;
}

.tooltip2 .tooltiptext {
  top: 28px;
}
.fl-node-6053a0003e944:before {
  width: 565px;
  height: 508px;
  background-image: url(https://murphyconsulting.us/wp-content/uploads/2021/03/bubble-1-new.png);
  bottom: -30%;
  left: -10%;
}
.fl-node-6053a0003e948:before {
  width: 909px;
  height: 689px;
  background-image: url(https://murphyconsulting.us/wp-content/uploads/2021/03/bubble-2-new.png);
  right: -20%;
  bottom: -24%;
}

.services-page-banner img:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.page-id-6007 .site-header {
  background-color: transparent;
}

.fl-node-5dae2d6343020 .njba-logo-inner-wrap img {
  width: 100% !important;
}

#iframe-trial-modal {
  min-height: 850px;
}

#trialModal .modal-dialog {
  max-width: 612px;
}

#trialModal .close {
  position: absolute;
  right: 30px;
  top: 15px;
  z-index: 1;
}

.tooltip2 {
  width: 100%;
  border-bottom: none !important;
}

.tooltip2 .tooltiptext {
  background: rgb(255 255 255 / 70%);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  color: #222 !important;
  text-align: left;
  font-size: 14px !important;
  line-height: 2em;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.tooltip2:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "\f059";
  font-family: "Font Awesome 5 Free" !important;
}

.btn-pill {
  border-radius: 100rem !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  max-width: 420px;
  width: 100%;
}

.btn-mint {
  color: #fff !important;
  background-color: #bf1212;
  border: 2px solid #bf1212;
}

.btn-mint:hover {
  background-color: transparent;
  color: #bf1212 !important;
  border: 2px solid #bf1212;
  opacity: 1 !important;
}

/* .btn-mint {
  border: 2px solid var(--mint);
  color: var(--mint) !important;
}

.btn-mint:hover {
  background-color: var(--mint);
  color: #fff !important;
} */



/* Page - Graphic Design */

.page-id-7133 .fl-node-5f32a4a928055,
.page-id-7225 .fl-node-5f32a4a928055 {
  display: none;
}

.page-id-7133 .fl-node-5f2875e0898a4 > .fl-row-content-wrap,
.page-id-7225 .fl-node-5f2875e0898a4 > .fl-row-content-wrap {
  padding-top: 100px;
}

.page-id-7133 .fl-node-610c4562a614c,
.page-id-7225 .fl-node-610c4562a614c {
  position: relative;
  z-index: 1;
}

.fl-node-610c23594ea90,
.fl-node-610c342210fc8 {
  padding: 16px;
}

.fl-node-610c31e51c577,
.fl-node-610c342211254 {
  margin-top: auto;
}

.fl-node-610c31e51c577 .fl-heading-text:after,
.fl-node-610c342211254 .fl-heading-text:after {
  content: "/month";
  font-weight: 400;
  font-size: 30px;
  color: #2c3137;
}

.fl-node-610c23594e970 strong {
  font-weight: 700 !important;
}

.fl-node-610c23594e970 strong span {
  font-weight: 700 !important;
}

.fl-node-610c342210fc8 > .fl-col-content {
  position: relative;
}

.fl-node-610c342210fc8 > .fl-col-content:before {
  content: "";
  width: 186px;
  height: 103px;
  background-image: url(../../images/revamp/badge.svg);
  position: absolute;
  right: 0;
  z-index: 999999;
  top: -32px;
  background-size: contain;
}

.fl-builder-content .fl-rich-text strong {
  font-weight: 700 !important;
}

/* Approach Grid */
.approach-grid-list-item,
.service-category-list-item {
  list-style-type: none !important;
}

.approach-grid-title {
  color: #08a04b;
  font-size: 18px;
  font-weight: 700;
}

.eapps-widget * {
  font-family: "Montserrat", sans-serif;
}

.eapps-testimonials-slider-page {
  white-space: initial !important;
}

.eapps-testimonials-slider-page-item {
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.02);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.02);
}

/* Service Category Grid */
.service-category-icon {
  width: 47px;
}

.service-category-list-item {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.service-category-list-item:hover {
  background-color: #eee;
}

/* Pricing Plans */
.list-unstyled li {
  list-style-type: none !important;
}

.pp-list-child-sub {
  width: 100%;
}

.pp-list {
  list-style: none;
  padding-left: initial;
}

.pp-list-child {
  position: relative;
}
.pp-list-child-sub {
  position: absolute;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  display: none;
  z-index: 1;
}

.pp-list-child-sub:before {
  content: "";
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.75);
  border-left: 5px solid transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.pp-list-child i:hover {
  cursor: pointer;
}

.pp-list-child i:hover ~ .pp-list-child-sub {
  display: block;
}

.pp-heading {
  margin-top: initial;
  margin-bottom: initial;
  font-size: 24px;
  font-weight: 400 !important;
}

.pp-price-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.pp-price {
  margin-top: 20px;
  margin-bottom: initial;
  font-size: 30px;
}

.pp-price2 b {
    font-size: 30px;
}
.pp-price2 {
    font-weight: 400 !important;
    font-size: 16px;
}

.pp-tagline {
  margin-top: 20px;
  font-size: 14px;
}

.pp-heading,
.pp-price,
.pp-tagline {
  color: #305067;
}

.pp-excerpt p {
  margin-bottom: initial;
}

.pp-btn-primary {
  color: #fff;
  border: 1px solid #febf01;
  background-color: #febf01;
}

.pp-btn-primary:hover {
  background-color: #e9af03;
  color: #fff;
}

.pp-btn-secondary {
  color: #0dc59e !important;
  border: 1px solid #0dc59e;
  background-color: transparent;
}

.pp-btn-secondary:hover {
  background-color: #0dc59e;
  color: #fff !important;
}

.pp-btn {
  border-radius: 10rem;
  font-weight: 700;
  padding: 8px 16px;
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

hr {
  margin-top: 30px;
}

.pp-list-parent {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.pp-list-child {
  position: relative;
  margin-top: 10px;
  line-height: 1.4rem;
  color: #183b56;
  padding-left: 20px;
  padding-right: 20px;
}

.pp-icon-check {
  position: absolute;
  left: 0;
  color: #08c49c;
}

.tooltip-icon {
  position: absolute;
  right: 0;
}

.pp-icon-check,
.tooltip-icon {
  top: 5px;
}

.pp-list-card-inner {
  background-color: #fff;
  border-top: 5px solid;
  border-bottom: 5px solid;
}

.pp-reseller .pp-list-card-inner {
  border-color: #ffa978;
}

.pp-member .pp-list-card-inner {
  border-color: #08c49c;
}

.pp-retainer .pp-list-card-inner {
  border-color: #6ec3fa;
}

.pp-nav-link {
  font-size: 14px;
  padding: 2px 8px;
}

.pp-nav-pills {
  margin-left: initial !important;
}

.pp-nav-item:first-child .pp-nav-link {
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

.pp-nav-item:last-child .pp-nav-link {
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}

/* .pp-retainer .pp-nav-link.active {
  background-color: #6ec3fa;
  border-color: #6ec3fa;
  color: #fff;
}

.pp-retainer .pp-nav-link {
  background-color: transparent;
  border-color: #6ec3fa;
  color: #6ec3fa;
} */

.pp-retainer .pp-nav-link.active {
  border-color: #007bff;
  background-color: #007bff;
  color: #fff;
}

.pp-retainer .pp-nav-link {
  border-color: #19832d;
  background-color: #19832d;
  color: #fff;
}

.pp-nav-link:focus {
  outline: none;
}

.pp-card-badge {
  height: 27px;
}

.pp-card-badge.popular {
  font-size: 14px;
  color: #fff;
  background-color: #08c49c;
  border-radius: 4px;
}

.navtab-main-pp .pp-nav-link {
  font-size: 16px;
}

/* .navtab-main-pp .pp-nav-link {
  border-color: #08c49c;
  background-color: transparent;
  color: #08c49c;
}

.navtab-main-pp .pp-nav-link.active {
  background-color: #08c49c;
  color: #fff;
} */

.navtab-main-pp .pp-nav-link.active {
  border-color: #007bff;
  background-color: #007bff;
  color: #fff;
}

.navtab-main-pp .pp-nav-link {
  border-color: #19832d;
  background-color: #19832d;
  color: #fff;
}

/* FAQs */

span.eapps-faq-content-category-item-question-text:before {
  content: "▶";
  margin-right: 15px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  position: absolute;
  left: 0;
}

.eapps-faq-content-category-item {
  border: 1px solid #edf3fd;
  border-radius: 0.45rem;
  margin-bottom: 1rem !important;
  padding-left: 2rem !important;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgb(24 59 86 / 7%) !important;
  box-shadow: 0 0.125rem 0.25rem rgb(24 59 86 / 7%) !important;
}

.eapps-faq-content-category-item-question {
  padding-left: 30px !important;
}

.eapps-faq-content-category-item {
  padding-right: 30px !important;
}

.eapps-faq-layout-accordion .eapps-faq-content-category-item-question-icon {
  right: 0 !important;
}

.eapps-faq-content-category-item-question {
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 12px;
}

.eapps-faq-template-clean.eapps-faq-layout-accordion
  .eapps-faq-container
  .eapps-faq-inner
  .eapps-faq-content-category-items
  .eapps-faq-content-category-item-question {
  background-color: transparent;
  padding: 30px 0;
}

.eapps-faq-content-category-item-question {
  padding-left: 30px !important;
}

.eapps-faq-layout-accordion .eapps-faq-content-category-item-question {
  margin-bottom: 0;
  padding: 24px !important;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.iframe-wrapper iframe,
.iframe-wrapper {
  width: 100%;
  height: 100%;
}

#modal-pp-free-trial .modal-content {
  height: 90vh !important;
}

.modal-dialog.modal-sm {
  max-width: 720px;
}

#menu-item-7418 i,
#menu-item-7419 i {
  color: #ffc926 !important;
}

.service-category-list-item {
  width: calc(100% / 2);
}

/* Fulfillment Plans */
.fl-list-item-content strong {
  font-weight: 700 !important;
}

/* Fulfillment System */

.fs {
  line-height: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.fs-nav-item {
  text-align: center;
}

.fs-nav-link {
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 17px;
  font-weight: 800;
  color: #2c3137 !important;
}

.fs-nav-link.active:after {
  content: "";
  position: absolute;
  width: 80px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  height: 3px;
  bottom: -3px;
  background-color: #069f4a;
}

.fs-nav-link:hover {
  color: #00933f !important;
}

.fs-nav-link.active {
  color: #069f4a !important;
}

.fs-tab-content {
  font-size: 14px;
}

.fs-tab-pane-list-item {
  position: relative;
  padding-left: 36px;

  margin-top: 1rem;
  font-weight: 700;
}

.fs-tab-pane-list-item:before {
  content: "";
  position: absolute;
  background-image: url("https://murphyconsulting-6009.kxcdn.com/wp-content/uploads/2021/08/icon-check.svg");
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
}

.fs-btn {
  display: block;
  background-color: #069f4a;
  padding: 0.6rem 1.4rem;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.fs-btn:hover {
  background-color: #2c3137;
  color: #fff !important;
}

.btn-sales {
  color: #fff !important;
}

.btn-sales:hover {
  opacity: 1 !important;
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.btn-sales-res {
  background-color: #ffa978;
}

.btn-sales-mem {
  background-color: #0bc49c;
}

.btn-sales-ret {
  background-color: #6fc3fa;
}

/* Wistia Pop-up */
.btn-pop-up-video a {
  display: inline-block;
  padding: 12px 30px;
  border: 8px;
  background-color: #059f4b;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff !important;
}

.btn-pop-up-video a:hover {
  background-color: #2c3137;
}

/* Submit a review */
.fl-node-6144f7c661689 .fl-col-small {
  padding: 80px 30px 30px;
}

.fl-node-6144f7c661689 .fl-col-small:nth-child(2) {
  padding: 50px 30px 30px;
}

.form-custom-layout-2 .gfield_label {
  text-align: center !important;
  width: 100%;
  font-weight: 700 !important;
  color: #2b3137 !important;
}

.form-custom-layout-2 .gform_button {
  padding: 15px 30px !important;
  font-size: initial;
  text-transform: initial;
}

.form-custom-layout-2 .gform_footer {
  text-align: center;
}

.form-custom-layout-2 * {
  font-family: "Montserrat", sans-serif !important;
}

.form-custom-layout-2 .gform_button > i {
  display: none;
}

.form-custom-layout-2 .validation_error {
  display: none;
}

.form-custom-layout-2 .gfield_error {
  border: none !important;
  text-align: center;
}

.form-custom-layout-2 input,
.form-custom-layout-2 textarea,
.form-custom-layout-2 select {
  color: #2c3137;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-custom-layout-2 input {
  text-align: center;
}

.form-custom-layout-2.gform_confirmation_wrapper {
  background-color: #28934717;
  padding: 15px;
  border-radius: 8px;
  color: #289347;
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}

.form-custom-layout-2 .gfield_required {
  color: #f08080;
}

.form-custom-layout-2 .gform_confirmation_message:before {
  content: "FORM SUBMITTED";
  font-weight: 100;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.widget-bg-green {
  background: rgb(3, 198, 23);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(3, 198, 23, 1)),
    to(rgba(7, 159, 75, 1))
  );
  background: -o-linear-gradient(
    left,
    rgba(3, 198, 23, 1) 0%,
    rgba(7, 159, 75, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(3, 198, 23, 1) 0%,
    rgba(7, 159, 75, 1) 100%
  );
}

.alert-dismissible .close {
  top: 8px;
}

.register-bar.alert-dismissible .close {
  border-left: initial;
}

.alert {
  z-index: 20000000001; /* > than tawk widget */
}

.alert-bar--btn:hover {
  background-color: #fff;
  color: #00933f !important;
}

.register-bar {
  left: 1rem;
  bottom: 0px;
  max-width: 400px;
  width: 100%;
  padding-right: 1.25rem;
  background-color: #082335;
}

.register-bar.alert-dismissible .close {
  top: -0.75rem;
  right: -0.75em;
  padding: initial;
  width: 2rem;
  height: 2rem;
  background-color: #dadada;
  color: #09a04b;
  border-radius: 50%;
  opacity: 1;
  border: none;
}

.register-bar.alert-dismissible .close:hover {
  background-color: #09a04b;
}

.register-bar.alert-dismissible .close:hover,
.alert-bar.alert-dismissible .close:hover {
  color: #fff;
  opacity: 1;
}

.alert-bar.alert-dismissible {
  top: 0;
}

.alert-bar-margin {
  margin-top: 154px;
}

.register-bar--header-sub,
.register-bar--body-text,
.register-bar--btn {
  font-size: 18px;
}

.register-bar--header-sub,
.register-bar--header-title,
.register-bar--btn {
  letter-spacing: 1px;
}

.register-bar--header-title {
  font-size: 24px;
  color: #09a04b;
}

.register-bar--body-heading {
  font-size: 32px;
}

.register-bar--body-text {
  line-height: 1.8rem;
}

.register-bar--btn {
  background-color: #09a04b;
}

.register-bar--btn:hover {
  background-color: #2c3137;
  color: #fff !important;
}

/* Video forms */
.video-form {
  position: relative;
}

.video-form--btn-modal {
  position: absolute;
  inset: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  z-index: 9;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.video-form--btn-modal:hover {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.video-form--btn-modal:focus {
  -webkit-box-shadow: initial;
  box-shadow: initial;
}

.video-form--modal .gfield_label {
  color: #666 !important;
  font-weight: 700 !important;
}

/* Video Banner */
.video-banner h1,
.video-banner h2,
.video-banner h3,
.video-banner h4,
.video-banner h5,
.video-banner h6 {
  font-weight: 800;
  line-height: 1.2em;
}

.video-banner--pop-embed {
  position: relative;
}

.video-banner--form {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  background-color: transparent;
}

.video-banner--form:hover {
  cursor: pointer;
}

.video-banner--form:hover,
.video-banner--form:focus {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
}

.video-banner--form,
.video-banner--form:hover,
.video-banner--form:focus {
  border: none;
}

.video-banner--pop-embed-text-link .wistia_click_to_play a {
  border: none;
  padding: 0.75rem 1.75rem;
  background-color: #069f4a;
  display: block;
}

.video-banner--pop-embed-text-link:hover,
.video-banner--pop-embed-text-link .wistia_click_to_play a {
  border-radius: 0.25em;
}

.video-banner--pop-embed-text-link:hover .wistia_click_to_play a {
  background-color: #1c832c;
}

.video-banner--pop-embed-text-link a {
  color: #fff !important;
  font-weight: 800;
}

.modal-minimal input,
.modal-minimal textarea,
.modal-minimal select {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 16px !important;
}

.modal-minimal input,
.modal-minimal textarea,
.modal-minimal select,
.modal-minimal .gform_button {
  border-radius: 4px !important;
  padding: 0.5rem !important;
}

.modal-minimal .gfield_label {
  color: #666 !important;
  font-weight: 600 !important;
}

.modal-minimal .gform_wrapper {
  margin-bottom: initial;
}

.modal-minimal .gform_wrapper,
.modal-minimal .gfield:first-child,
.modal-minimal .gform_footer {
  margin-top: initial !important;
}

.gfield-heading > h1,
.gfield-heading > h2,
.gfield-heading > h3,
.gfield-heading > h4,
.gfield-heading > h5,
.gfield-heading > h6 {
  line-height: initial;
  font-weight: 700;
}

.modal-minimal .gfield_label {
  font-size: 14px !important;
}

.modal-minimal .gfield_label,
.modal-minimal .ginput_container {
  margin-top: initial !important;
}

.modal-minimal .gform_button i {
  display: none;
}

.modal-minimal .gform_button span {
  font-size: 16px;
  text-transform: initial;
}

.modal-minimal .gform_button:hover,
.modal-minimal .gform_button:focus,
.video-banner--pop-embed-text-link:hover {
  background-color: #1b842c;
  border-color: #1b842c;
  color: #fff !important;
  outline: none !important;
}

.modal-minimal .gform_ajax_spinner {
  position: absolute;
  top: calc(50% + 4px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-minimal .gform_footer {
  position: relative;
}

.video-banner--pop-embed-thumbnail-wrapper {
  position: relative;
}

.video-banner--pop-embed-vid-thumb,
.video-banner--pop-embed-thumbnail-wrapper i,
.video-banner--pop-embed-text-link {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.video-banner--pop-embed-thumbnail-wrapper:hover {
  cursor: pointer;
}

.video-banner--pop-embed-thumbnail-wrapper:hover i {
  padding-left: 4px;
  opacity: 1;
}

.video-banner--pop-embed-thumbnail-wrapper i {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.8;
}

.video-banner--pop-embed-thumbnail-wrapper.has-thumb
  .wistia_responsive_padding {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 0 !important;
  z-index: 1;
}

.modal-minimal .close {
  float: none;
  position: absolute;
  right: -0.2em;
  top: -0.8rem;
  opacity: 1;
  z-index: 1;
}

.modal-minimal .close:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: aliceblue;
  z-index: 0;
  background-color: #0a9f4b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.modal-minimal .close span {
  position: relative;
  color: #fff;
}

.modal-minimal .close:hover,
.modal-minimal .close:focus {
  opacity: 1 !important;
  outline: none;
}

.modal-minimal .close:hover:before {
  background-color: #1c832c;
}

/* Pricing Plans - Promo */
.pricing-plan-promo--card--heading {
  font-size: 25px;
}

.pricing-plan-promo--card--discount-text {
  font-size: 65px;
}

.pricing-plan-promo--card--subheading {
  font-size: 20px;
}

.pricing-plan-promo--card--coupon-code,
.pricing-plan-promo--card--promo-price,
.pricing-plan-promo--card--discount-badge--text {
  font-size: 30px;
}

.pricing-plan-promo--card--coupon-desc,
.pricing-plan-promo--card--regular-price--label,
.pricing-plan-promo--card--promo-subheading {
  font-size: 17px;
}

.pricing-plan-promo--card--coupon-desc {
  min-height: 50px;
}

.pricing-plan-promo--card--regular-price--text {
  font-size: 22px;
}

.pricing-plan-promo--card--promo-title {
  font-size: 27px;
}

.pricing-plan-promo--card--heading--tip {
  inset: 0;
  border-top-width: 10px;
  border-right-width: 175px;
  border-left-width: 175px;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-style: solid;
}

.pricing-plan-promo--card--discount-badge {
  width: 82px;
  height: 82px;
}

.pricing-plan-promo--card--discount-badge--bg {
  inset: 0;
  border-radius: 50%;
}

.pricing-plan-promo--card--bg {
  opacity: 0.2;
  z-index: -1;
}

.pricing-plan-promo--card--bg,
.pricing-plan-promo--card--promo-price--bg {
  inset: 0;
}

.pricing-plan-promo--card--promo-price--bg {
  border-radius: 50%;
  z-index: 0;
}

.pricing-plan-promo--card--regular-price--text--linethrough {
  height: 4px;
  right: 0px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

.pricing-plan-promo--card--rays {
  position: relative;
}

.pricing-plan-promo--card--rays:before {
  content: "";
  position: absolute;
  inset: 0px 0px 60px;
  background-image: url("../../images/revamp/pricing-rays.png");
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.pricing-plan-promo--card--rays {
  padding-top: 40px;
}

.pricing-plan-promo--card--regular-price--wrapper {
  background-color: rgba(255, 255, 255, 0.45);
}

.pricing-plan-promo--card--promo-price--price-wrapper {
  max-width: 370px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-id-7966 .fl-node-5f32a4a928055 {
  display: none;
}

.text-gold {
  color: #f0ac45;
}

.alert-bar-gold .alert-bar--btn {
  color: #f0ac45 !important;
  border-color: #f0ac45 !important;
}

.alert-bar-gold .alert-bar--btn:hover {
  border-color: #f0ac45 !important;
  background-color: #f0ac45;
  color: #fff !important;
}

#custom-countdown {
  font-size: 38px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #25bb65;
}

span#custom-countdown > span {
  border: 1px solid #25bb65;
  border-radius: 0.4rem;
  padding: 0.3rem 0.6rem;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  min-width: 68px;
  display: inline-block;
}

.ribbon {
  position: absolute;
  z-index: 2;
  top: -30px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0);
  text-align: center;
}

.pp-heading.text-center.fw-300.mb-4 {
  margin-bottom: 70px !important;
}

@media ( max-width: 992px ) {
  .plan-footer-buttons {
    bottom: 20px !important;
    width: 95% !important;
  }
  .plan-footer-buttons a {
    margin-top: 10px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fl-col.fl-node-610bf9379e635.fl-col-small {
    text-align: center;
  }

  .fl-node-610bfbb98ce80 .fl-button-wrap {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .btn-pill {
    font-size: 20px;
  }
  .fl-node-610c237f7e4c9,
  .fl-node-610c34221124e {
    position: absolute;
  }

  .fl-node-610c24e8aa369,
  .fl-node-610c2574bf401,
  .fl-node-610c342211251,
  .fl-node-610c342211252 {
    padding-left: 90px;
  }

  .fl-node-610c015fb9991 {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .fl-node-610c015fb9a84 {
    width: 64% !important;
  }

  .fl-node-610c015fb9a88 {
    width: 36% !important;
  }

  .service-category-list-item {
    width: calc(100% / 4);
  }

  .fs-btn {
    display: inline-block;
  }
  .fs-nav-item {
    max-width: 140px;
    width: 100%;
    text-align: center;
  }
  .alert-dismissible .close {
    top: 8px;
    border-left: 1px solid #ddd;
  }
  .modal-minimal .modal-sm {
    max-width: 320px;
  }
}

/* Keyframes */

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 2.5rem 0.2rem transparent;
    box-shadow: 0 0 2.5rem 0.2rem transparent;
  }

  50% {
    -webkit-box-shadow: 0 0 2.5rem 0.2rem #8cc195;
    box-shadow: 0 0 2.5rem 0.2rem #8cc195;
  }

  100% {
    -webkit-box-shadow: 0 0 2.5rem 0.2rem transparent;
    box-shadow: 0 0 2.5rem 0.2rem transparent;
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 2.5rem 0.2rem transparent;
    box-shadow: 0 0 2.5rem 0.2rem transparent;
  }

  50% {
    -webkit-box-shadow: 0 0 2.5rem 0.2rem #8cc195;
    box-shadow: 0 0 2.5rem 0.2rem #8cc195;
  }

  100% {
    -webkit-box-shadow: 0 0 2.5rem 0.2rem transparent;
    box-shadow: 0 0 2.5rem 0.2rem transparent;
  }
}

/* Media Queries */
@media (min-width: 768px) {
  .hero-ft-wrapper {
    height: 550px;
  }

  .three-col-vid {
    height: 118px !important;
  }

  .form-custom-layout-2 .gform_button {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .fl-node-5f285d7a0427e {
    width: 10%;
  }

  .fl-node-5f285d7a04285 {
    width: 44%;
  }

  .fl-node-5f285d7a0428a {
    width: 22.86%;
  }
  .fl-node-5f285d7a04285 a,
  #menu-header-revamp > .menu-item > a {
    position: relative;
    padding-right: 0;
    font-size: 16px;
  }

  .hero-ft-wrapper {
    height: 372px;
  }

  .three-col-vid {
    height: 166px !important;
  }

  .service-category-list-item {
    width: calc(100% / 7);
  }

  .service-category-list-item {
    border-top: 1px solid #dee2e1;
    border-right: 1px solid #dee2e1;
  }

  .service-category-list-item:nth-child(7),
  .service-category-list-item:nth-child(14) {
    border-right: none;
  }

  .service-category-list-item:nth-child(-n + 7) {
    border-top: none;
  }
}

@media (min-width: 1080px) {
  .fl-node-5f285d7a0427e {
    width: 22%;
  }

  .fl-node-5f285d7a04285 {
    width: 50%;
  }

  .fl-node-5f285d7a0428a {
    width: 25.86%;
  }
}

@media (min-width: 1200px) {
  .fl-node-5f285d7a0427e {
    width: 14%;
  }

  .hero-ft-wrapper {
    height: 420px;
  }

  .video-banner--wysiwyg-heading--lg {
    font-size: 56px;
  }
}

@media (min-width: 1280px) {
  .fl-node-5f285d7a0427e {
    width: 10%;
  }

  .fl-node-5f285d7a04285 {
    width: 55%;
  }

  .fl-node-5f285d7a0428a {
    width: 20%;
  }
}

@media (min-width: 1366px) {
  .fl-node-5f285d7a0427e {
    width: 15%;
  }

  .fl-node-5f285d7a04285 {
    width: 50%;
  }

  .fl-node-5f285d7a0428a {
    width: 17%;
  }

  .three-col-vid {
    height: 230px !important;
  }
}

@media (min-width: 1440px) {
  .fl-node-5f285d7a0427e {
    width: 15%;
  }

  .fl-node-5f285d7a04285 {
    width: 46%;
  }

  .fl-node-5f285d7a0428a {
    width: 16%;
  }

  .three-col-vid {
    height: 268px !important;
  }
}

@media (min-width: 1600px) {
  .fl-node-5f285d7a0427e {
    width: 15%;
  }

  .fl-node-5f285d7a04285 {
    width: 48%;
  }
}

@media (min-width: 1920px) {
  .fl-node-5f285d7a0427e {
    width: 10%;
  }
}

@media (min-width: 1024px) {
  /* Calendly - Modal */
  .fl-node-5fa01389519d4 {
    position: relative;
  }

  #mc-leadform.sticky {
    position: fixed;
    top: 32px;
  }

  #mc-leadform.sticky.bottom {
    position: absolute;
    top: auto;
    bottom: 50px;
  }

  .fl-node-5fa0138951821 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 576px) {
  .media-scroll-sticky.fixed-top {
    left: initial;
    right: initial;
  }
}

@media (min-width: 769px) {
  .fl-node-5f297043b3ffd:before,
  .fl-node-5f297909ee854:after {
    content: "" !important;
    position: absolute;
    width: 1920px;
    top: 0;
    bottom: 0;
    display: block;
    z-index: -1;
  }
  .alert-bar-margin {
    margin-top: 66px;
  }
}
/* @media (min-width: 993px) {
	.logged-in .site-header {
		top: 32px;
	}
} */
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1024px;
  }
}

@media (min-width: 1025px) {
  .customers-list-item-cite {
    width: calc(100% - 139px);
  }
}

@media (max-width: 1599px) {
  #menu-header-revamp .menu-item a,
  #menu-account .menu-item a {
    font-size: 15px;
  }
}

@media (max-width: 1440px) {
  .media-scroll-sticky.fixed-top {
    left: initial;
    right: initial;
  }

  .media-scroll-details-list-item {
    padding-top: 10rem;
  }

  .fl-node-5f2863de77b7a .menu a,
  .fl-node-5f28649fb05e9 .menu a {
    padding-left: 8px;
    padding-right: 8px;
  }
  #menu-header-revamp > .menu-item > a:after,
  #menu-header-revamp > .menu-item > .fl-has-submenu-container > a:after,
  .fl-node-5f2863de77b7a .menu .fl-has-submenu .sub-menu {
    left: 8px;
  }

  /* .fl-node-5f285d7a04285 {
        width: 60%;
    }

    .fl-node-5f285d7a0428a {
        width: 22%;
    } */
}

@media (max-width: 1439px) {
  #menu-header-revamp .menu-item a,
  #menu-account .menu-item a {
    font-size: 15px;
  }
}
@media (max-width: 1366px) {
  .heading-lg {
  }
  .heading span .heading p {
    font-size: 30px;
  }
  .logo-heading .fl-heading-text {
    font-size: 30px;
  }
  .heading .fl-heading h2 {
    line-height: 0.5;
  }
}

@media (max-width: 1279px) {
  #menu-header-revamp .menu-item a,
  #menu-account .menu-item a {
    font-size: 12px;
  }
}

@media (max-width: 1199px) {
  #menu-header-revamp .menu-item a,
  #menu-account .menu-item a {
    font-size: 10px;
  }
  .pricing-plan-promo--card--heading--tip {
    border-right-width: 142px;
    border-left-width: 142px;
  }
  .pricing-plan-promo--card--discount-text {
    font-size: 56px;
  }
}

@media (max-width: 1023px) {
  .fl-col-group.fl-node-5f3d652c28e5d {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .fl-node-6053a173748ba .fl-photo-content {
    width: 100%;
    margin-top: 40px;
  }

  .fl-node-6053a173748ba .fl-photo-content img {
    width: 100%;
  }

  .fl-node-6053a0003b192 > .fl-row-content-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .fl-node-6144f7c661689 .fl-col-small {
    padding: 40px 30px 30px !important;
    width: 100% !important;
  }
}

@media (max-width: 1080px) {
  .white-label-services-2 div#services-tab {
    max-width: 280px;
  }
}

@media (max-width: 1200px) {
  .fl-builder-content-5557 a {
    font-size: 12px;
  }
}

@media (max-width: 1112px) {
  .customers-icon {
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }

  .customers-list-item-img {
    margin-right: initial !important;
  }

  .customers-list-item-cite {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .customers-list-item-details *,
  .customers-list-item-cite * {
    text-align: center;
  }

  .customers-list-item-cite > div {
    width: 100% !important;
    margin: initial !important;
  }

  .customers-list-item-card > div {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 1024px) {
  .fl-node-5f2863de77b7a .menu a,
  .fl-node-5f28649fb05e9 .menu a {
    font-size: 9px;
  }

  .fl-builder-content-5557 a {
    font-size: 10px;
  }

  .fl-node-5f2875e0932c0 > div {
    text-align: center;
  }
  .fl-node-5f2863de77b7a .menu a,
  .fl-node-5f28649fb05e9 .menu a {
    padding-left: 5px;
    padding-right: 5px;
  }
  li#menu-item-6606 {
    padding-right: 5px;
  }

  li#menu-item-6616 > a {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (max-width: 1023px) {
  #mc-leadform {
    width: 100% !important;
  }

  .fl-node-5fa01389519d4 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .pricing-plan-promo--card--heading--tip {
    border-right-width: 329px;
    border-left-width: 329px;
  }

  .pricing-plan-promo--card--coupon-desc.no-coupon-desc {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .fl-node-5f285e4d0e769 > div {
    margin-left: 0;
  }
}

@media (max-width: 1006px) {
  .site-header {
    position: static;
  }

  .fl-builder-content-5557 a {
    font-size: 16px;
  }

  body.logged-in {
    margin-top: initial !important;
  }

  body.logged-in.home {
    margin-top: -32px !important;
  }
}

@media (max-width: 992px) {
  header.fl-builder-content-5557 {
    width: 100%;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }

  header .sub-menu {
    margin-left: 24px;
  }

  .fl-builder-content .fl-node-5f285d7a0427e {
    width: 30% !important;
  }

  .fl-builder-content .fl-node-5f2af81876b14 {
    width: 70% !important;
  }
}

@media (max-width: 991px) {
  .fl-module-content.fl-node-content .fl-html .white-label-services--item {
    padding: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 834px) {
  #menu-mobile-revamp {
    margin-top: 1rem;
    margin-left: 2rem;
  }

  .fl-col-group > .fl-col {
    width: 100%;
  }

  .fl-node-5f28a159b6c11.fl-col-group > .fl-col {
    width: 16%;
  }

  .fl-node-5f297043b3ffd:before,
  .fl-node-5f297909ee854:after {
    display: none;
  }

  .fl-node-5f29704394d0d ul {
    max-width: 400px;
    width: 100%;
  }

  .fl-col-group.fl-node-5f2875e092fe5 * {
    text-align: center !important;
  }

  .fl-node-5f2880a47b921 i {
    margin: auto;
  }

  .fl-node-5f3d652c28e5d > div {
    width: 50% !important;
  }

  .customers-single-column-group:before {
    top: 0;
  }

  .fl-node-5f3c497b80502 .fl-row-content {
    padding-top: 50px;
  }

  .fl-node-5f28a159b6c11,
  .fl-node-5f3c4a1b76153 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .fl-node-5f28a159b6c11 > div,
  .fl-node-5f3c4a1b76153 > div {
    width: 32.33% !important;
  }

  .pp-dual-button-inner,
  .pp-dual-button-inner {
    float: none !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fl-node-5f3d6683cb1b9 p,
  .fl-node-5f296958d8801 > .fl-module-content {
    margin-bottom: initial !important;
  }

  .fl-node-5f32a4a92f577 img {
    margin-top: initial;
  }

  .pp-dual-button-content .pp-dual-button {
    float: none !important;
    display: block;
    width: 100%;
  }

  .fl-node-5f2af81876b14 {
    margin-top: -6px;
  }
}
@media ( max-width: 812px ) {
  li#menu-item-8437 {
    width: 30%;
    text-align: center;
  }
}
@media screen and (max-width: 782px) {
  html.fa-events-icons-ready {
    margin-top: initial !important;
  }
}

@media (max-width: 767px) {
  .fl-builder-content .fl-node-5f285d7a0427e {
    width: 50% !important;
  }
  .fl-builder-content .fl-node-5f2af81876b14 {
    width: 30% !important;
  }
  ul#menu-footer-2-resources {
    text-align: center;
  }
  form#gform_11 {
    padding: 1rem !important;
  }

  .fl-node-6053a0003b192.fl-row > .fl-row-content-wrap {
    padding-bottom: initial;
  }

  html.sticky-menu .white-label-services--tab-content {
    margin-top: initial;
  }

  .approach-grid-title {
    height: initial !important;
  }

  .alert-bar {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .alert-bar.alert-dismissible {
    top: 0;
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .register-bar {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .pricing-plan-promo--card--heading--tip {
    border-right-width: 172px;
    border-left-width: 172px;
  }

  #custom-countdown {
    font-size: 22px;
  }

  span#custom-countdown > span {
    min-width: 40px;
  }
}

@media (max-width: 768px), (max-height: 414px) {
  /* .fl-menu .sub-menu {
		display: block !important;
	} */

  .fl-node-5f297043b3d99 > div {
    margin-bottom: 5rem;
  }

  .fl-node-5f297043b3d99 > div:last-child {
    margin-bottom: 0;
  }

  .fl-node-5f29671e3d8d7 > div {
    margin-bottom: 3rem;
  }

  .media-scroll-sticky-col-inner {
    margin-right: 2rem;
  }

  .media-scroll-lg-md .section-title * {
    font-size: 30px;
  }

  .fl-node-5f297043b3d99 > div {
    margin-bottom: 5rem;
    max-width: initial !important;
  }

  .customers-container {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  .fl-module-content.fl-node-content .fl-html .white-label-services--item {
    padding: 15px;
    font-size: 1rem;
  }
  .page-id-5942 .fl-module-heading h4.fl-heading {
    font-size: 20px;
  }
  .heading h2,
  .heading .fl-rich-text p,
  .heading .fl-rich-text span {
    font-size: 24px !important;
  }
  .media-scroll-sticky-desc div {
    font-size: 17px;
  }

  .page-id-5942 .fl-module-heading .fl-heading {
    font-size: 29px;
    line-height: normal;
  }
  .page-id-5942
    .fl-module.fl-module-heading.fl-node-5f32ecec8d220
    .fl-module-content.fl-node-content {
    margin-top: 0px;
  }
  .page-id-5942 .fl-node-5f32dedbec279 > .fl-row-content-wrap {
    padding-top: 20px;
  }
  .fl-col.fl-node-5f32dedbed9d0 .fl-heading {
    text-align: left !important;
  }
  .fl-node-6144f7c661689 .fl-col-small {
    padding: 40px 30px 30px !important;
  }

  .register-bar {
    left: 0;
    right: 0;
    max-width: initial;
  }
  .register-bar.alert-dismissible .close {
    right: 0;
  }
}

@media (max-width: 575px), (max-height: 414px) {
  .media-scroll-details-list-item {
    padding-top: 2rem;
  }
  .fl-node-5f2af5d650423 .menu a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .fl-node-5f2af81876b14 {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .fl-node-5f2af5d650423 > div #menu-header-revamp-1 {
    margin-top: 2rem !important;
  }

  .admin-bar .site-header.stick {
    top: 0;
  }

  .customers-icon {
    left: 50%;
    -webkit-transform: translateX(-70%);
    -ms-transform: translateX(-70%);
    transform: translateX(-70%);
  }

  .customers-list-item-cite > span {
    width: 100%;
    text-align: center;
  }

  footer .fl-col-small:not(.fl-col-small-full-width) {
    max-width: 100%;
  }

  .fl-node-5f2875e092fe5,
  .fl-node-5f2875e092fe5 .fl-heading {
    text-align: center !important;
  }

  .fl-node-5f2880a47b921 .sprite {
    margin-left: auto;
    margin-right: auto;
  }

  footer #menu-company a {
    text-align: center;
  }

  footer a {
    line-height: 2 !important;
  }

  .fl-node-5f3d652c28e5d > div {
    width: 100% !important;
  }

  .fl-node-5f3d652c28e5d > div * {
    text-align: center;
  }

  .fl-node-5f3d652c28e5d .fl-separator {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .fl-node-5f3d652c28e5d .fl-heading,
  .fl-node-5f3d652c28e5d .fl-photo {
    text-align: center !important;
  }

  .fl-node-5f3c4a1b76169 {
    margin-top: 50px;
  }

  .customers-container {
    max-width: initial;
  }
}

@media (max-width: 576px) {
  /* .customers .slick-track {
		display: flex;
	}

	.customers .slick-track > div {
		height: auto;
	} */

  .customers .slick-slide > div {
    /* display: flex;
		height: 100%; */
    padding-bottom: 1.2rem;
  }

  .customers-list-item-cite > div {
    width: 100%;
    text-align: center;
  }

  #menu-header-revamp-1 .menu-item .sub-menu a i {
    top: 8px;
  }

  .fl-node-5f3d9f154b42c .pp-dual-button-content .pp-dual-button-inner > div {
    float: none !important;
    width: 100%;
  }

  .pp-dual-button-content a.pp-button,
  .fl-button {
    width: 100% !important;
  }

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

@media (max-width: 575px) {
  .white-label-services--tab-content-description h3 {
    font-size: 1.5rem;
  }

  .white-label-services--tab-content-description p {
    font-size: 1rem;
  }

  .fl-node-5f297043b3d99 > div {
    margin-bottom: inherit !important;
  }

  .customers-single-column-list-item:nth-child(odd) {
    margin-bottom: initial;
  }

  .customers-single-column-list-item:nth-child(even) {
    margin-top: initial;
  }
  .page-id-5942 .fl-module-heading h4.fl-heading {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .page-id-5942 .fl-module-heading h4.fl-heading {
    font-size: 20px;
  }
}

@media (max-width: 374px) {
  .pricing-plan-promo--card--heading--tip {
    border-right-width: 145px;
    border-left-width: 145px;
  }
}

@media (min-height: 1080px) {
  .media-scroll-sticky ul > li {
    margin-bottom: 1.5rem;
  }
}

@media (max-height: 600px) {
  /* Media Scroll shrink */
  .media-scroll-lg-md.shrink * {
    line-height: 1.375;
  }
  .media-scroll-lg-md.shrink .media-scroll-sticky a {
    margin-bottom: 4px;
    font-size: 18px;
  }
  .media-scroll-lg-md.shrink .media-scroll-sticky .section-title * {
    font-size: 30px;
  }

  .media-scroll-lg-md.shrink .media-scroll-sticky-header,
  .media-scroll-lg-md.shrink .media-scroll-sticky-desc {
    margin-bottom: 16px;
  }

  .container {
    max-width: initial;
  }
}
@media ( max-width: 512px ) {
  li#menu-item-8437 {
    width: 50%;
  }
}
@media ( max-width: 414px ) {
  li#menu-item-8437 {
    width: 85%;
  }
}
@media (max-height: 414px) {
  .pp-dual-button-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fl-node-5f28a159b6c11 > div {
    width: 32.33% !important;
  }

  .media-scroll-lg-md {
    display: none !important;
  }

  .media-scroll-sm {
    display: block !important;
  }

  .media-scroll-details-list-item {
    text-align: center;
  }

  .media-scroll-details-list-item .underline:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  #_hj-f5b2a1eb-9b07_feedback ._hj-f5b2a1eb-9b07_feedback_minimized_label {
    display: none;
  }

  #menu-header-revamp-1 {
    height: 66vh;
    overflow-y: scroll;
  }

  .fl-node-5f3c4a1b76169 {
    margin-top: 0;
  }

  .fl-node-5f3d652c28e5d {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .fl-node-5f3d652c28e5d > div {
    width: 49% !important;
  }

  .fl-node-5f3c0e113bd64 > div,
  .fl-node-5f3c497b8d274 > div,
  .fl-node-5f3d4581d3178 > div,
  .fl-node-5f3d4581d30b2 > div {
    max-width: 100% !important;
  }

  .slick-prev {
    left: -10px;
  }

  .slick-next {
    right: -10px;
  }
  .page-id-5942 .fl-module-heading .fl-heading {
    font-size: 29px;
    line-height: normal;
  }
}
@media (max-width: 320px) {
  .fl-node-5f28a159b6c11 > div,
  .fl-node-5f3c4a1b76153 > div {
    width: 49% !important;
  }

  .pp-button {
    font-size: 14px !important;
  }
  .bialty-container .fl-row-content-wrap {
    padding-top: 0 !important;
  }
  .fl-module.fl-module-heading.fl-node-5dae3a5bd9ec6 {
    padding-top: 2rem;
  }
}

#podcast-buttons .pp-dual-button-2.pp-dual-button.pp-button-effect-none {
  display: none;
}

#surveyModal .modal-dialog {
  max-width: 768px;
}

.btn-primary-custom,
.btn-primary-custom:focus {
  background-color: #08a04b;
  color: #fff;
  outline: none !important;
}

.btn-primary-custom:hover {
  background-color: #2c3137 !important;
  color: #fff;
}

#surveyModal div#gform_confirmation_wrapper_13 {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

#surveyModal .gfield_label {
  font-weight: 700;
}

#surveyModal .gfield_label,
#surveyModal .input,
#surveyModal .textarea {
  color: #000;
}

#surveyModal .modal-dialog {
  max-width: 525px;
}

.bg-header-pricing {
    background-color: #efefef;
}

ul#tab-period {
    border: 1px solid #079f4c;
    max-width: max-content;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 50px;
    padding: 5px 10px;
}

.navtab-main-pp .pp-nav-link {
    color: #079f4c;
    background-color: transparent;
    border: 1px solid transparent;
}

.navtab-main-pp .pp-nav-link.active {
    border-color: #079f4c;
    background-color: #079f4c;
    color: #fff;
    border-radius: 50px;
}
.pp-list-card-inner {
    position: relative;
    padding-bottom: 80px;
}
.plan-footer-buttons {
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1490px) {
     #menu-account .menu-item a {
        font-size: 13px;
    }
}
