:root {
  --gainsboro: #e2e2e2;
  --light-grey: #cacaca;
  --often-purple: #8a84d6;
  --text-grey: #333;
  --white-smoke: whitesmoke;
  --medium-orchid: #b75dda;
  --dark-purple: #6d68b4;
  --royal-blue: #1f6fff;
  --lime-green: #5ec045;
  --often-blue: #24336b;
}

body {
  color: #333;
  background-color: #424549;
  height: 100%;
  font-family: Source Sans Pro, sans-serif;
  font-size: 15px;
  line-height: 23px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 29px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  color: #1f6fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 15px;
}

a {
  color: #1f6fff;
  text-decoration: underline;
}

a:hover {
  color: #000;
}

li {
  margin-bottom: -3px;
  padding-left: 8px;
}

img {
  border-radius: 3px;
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 30px;
  padding: 0 20px;
  font-size: 20px;
  line-height: 29px;
}

figcaption {
  color: #9e9e9e;
  text-align: center;
  background-color: #0000000a;
  border-radius: 3px;
  margin-top: 5px;
  padding-top: 5px;
  padding-bottom: 2px;
  font-size: 12px;
  line-height: 18px;
}

.navbar {
  background-color: #0000;
  border-bottom: 1px solid #ffffff1a;
  padding-top: 40px;
  padding-bottom: 45px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.with-color-button {
  background-color: #0000001a;
  padding-bottom: 30px;
}

.navbar.white {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 33px #0003;
}

.logo-block {
  z-index: 10;
  margin-right: 30px;
}

.logo-block.no-menu {
  z-index: 0;
}

.nav-menu {
  z-index: 1;
  float: right;
  color: #152f6e;
  border-radius: 4px;
  align-items: center;
  margin-top: 15px;
  display: block;
  position: relative;
  top: 10px;
  overflow: visible;
}

.nav-link {
  color: #152f6e;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 5px;
  margin-right: 3px;
  padding: 11px 15px;
  font-size: 13px;
  line-height: 12px;
  transition: background-color .2s, border .2s;
  display: none;
}

.nav-link:hover {
  border: 1px solid var(--light-grey);
  background-color: var(--light-grey);
  color: #fff;
}

.nav-link.w--current {
  color: var(--often-purple);
}

.nav-link.dropdown-toggle {
  padding-right: 30px;
}

.nav-link.dropdown-toggle.w--open {
  background-color: #0000001a;
}

.nav-link.dropdown-toggle.light {
  padding-right: 30px;
}

.nav-link.dropdown-toggle.thin-light {
  padding-right: 29px;
}

.nav-link.light {
  color: #fff;
  margin-right: 2px;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-link.light:hover, .nav-link.light.w--current {
  border-color: #fff3;
}

.nav-link.color {
  background-color: #cfcfcf1a;
  margin-bottom: 4px;
  margin-right: 0;
  display: block;
}

.nav-link.with-color {
  color: #fff;
  background-color: #1fdb6a;
}

.nav-link.with-color:hover {
  background-color: #2f3338;
}

.nav-link.thin-light {
  color: #fff;
  margin-right: 2px;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-link.thin-light.w--current {
  color: #fff;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px #0000001a;
}

.dropdown-list.sidebar.w--open {
  border: 1px solid #0000001a;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 0 3px #0000;
}

.dropdown-link {
  font-size: 13px;
  transition: background-color .2s, color .2s;
}

.dropdown-link:hover {
  color: #fff;
  background-color: #1f6fff;
}

.dropdown-link.w--current {
  color: #1f6fff;
}

.dropdown-link.w--current:hover {
  color: #fff;
}

.container {
  object-fit: fill;
  position: relative;
  overflow: visible;
}

.container.testimonial-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

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

.container.bottom-footer {
  background-color: #0000;
  border-radius: 4px;
  padding: 21px 21px 18px;
}

.container.footer-container {
  border: 1px #0000001a;
  border-radius: 0;
  margin-bottom: 0;
  padding: 25px 0 0;
  font-size: 13px;
  font-weight: 400;
}

.container.above-image-section {
  text-align: center;
  margin-bottom: -220px;
}

.button {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #8a84d6;
  border-radius: 3px;
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color .2s, background-position .2s, color .2s, border .2s, box-shadow .2s;
}

.button:hover {
  color: #fff;
  background-color: #0b4fc9;
  box-shadow: 0 8px 16px 4px #0000004d;
}

.button.green {
  background-color: #8a84d6;
}

.button.green:hover {
  background-color: #6fdd53;
}

.button.green.full.outline:hover {
  background-color: #5ec045;
  border-color: #5ec045;
}

.button.purple {
  background-color: #b75dda;
}

.button.purple.full.outline:hover {
  background-color: #b75dda;
  border-color: #b75dda;
}

.button.full {
  text-align: center;
  display: block;
}

.button.full.outline {
  color: #000;
  background-color: #0000;
  border: 1px solid #000;
}

.button.full.outline:hover {
  color: #fff;
  background-color: #1f6fff;
  border-color: #1f6fff;
}

.button.icon-button {
  background-image: url('../images/Icon-download.png');
  background-position: 21px;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-top: 10px;
  padding-left: 51px;
}

.button.outline {
  background-color: #0000;
  border: 1px solid #fff;
}

.button.dark-outline {
  color: #000;
  background-color: #0000;
  border: 2px solid #e4e4e4;
}

.button.dark-outline:hover {
  color: #fff;
  background-color: #1f6fff;
  border-color: #1f6fff;
}

.button._2 {
  background-color: #0009;
  margin-left: 10px;
}

.button._2:hover {
  color: #1f6fff;
  background-color: #fff;
}

.button.cta-button {
  float: right;
  background-color: var(--white-smoke);
  color: var(--text-grey);
  text-align: center;
  width: 20%;
  margin-top: 5px;
  line-height: 31px;
}

.button.cta-button:hover {
  background-color: var(--white-smoke);
}

.button.cta-button.white {
  float: right;
  clear: none;
  color: #000;
  text-align: center;
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.button.button-purple {
  background-color: var(--often-purple);
  display: inline-block;
}

.button.button-purple:hover {
  background-color: var(--often-purple);
}

.section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.tint {
  background-color: var(--white-smoke);
  padding: 70px;
}

.section.contact {
  background-color: var(--gainsboro);
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section.pricing-section {
  padding-bottom: 160px;
}

.section.contact-us-section {
  border-bottom: 1px solid #e7e7e7;
  padding-top: 55px;
  padding-bottom: 45px;
}

.section.feature-section {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.section.feature-section.odd {
  background-color: #fafafa;
  border-top: 1px solid #ececec;
}

.section.cta-section {
  color: #fff;
  background-color: #2a323f;
}

.section.blog-page-section {
  background-color: #f5f5f5;
}

.section.contact-no-map {
  background-color: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: visible;
}

.section.blue-cta-section {
  background-color: var(--often-purple);
  color: #fff;
}

.section-title-wrapper {
  text-align: center;
  width: 60%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-title-wrapper.full {
  text-align: left;
  flex-direction: row;
  width: 100%;
  margin-bottom: 0;
}

.section-title-wrapper.full.info {
  margin-bottom: 30px;
}

.section-title-wrapper.full-centered {
  width: 100%;
}

.section-title-wrapper.full-centered.contact {
  margin-bottom: 10px;
}

.section-title-wrapper.small-title, .section-title-wrapper.info {
  margin-bottom: 30px;
}

.section-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 300;
  line-height: 48px;
}

.section-title.elements-title {
  margin-bottom: 0;
}

.section-title.dont-miss {
  color: #b6b6b6;
  font-size: 24px;
  line-height: 29px;
}

.section-title.centred {
  text-align: center;
}

.section-description {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 21px;
  font-weight: 300;
  line-height: 27px;
  position: static;
  overflow: visible;
}

.section-description.elements {
  margin-top: 10px;
}

.video-lightbox-button {
  text-align: center;
  background-color: #5ec045;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-left: 2px;
  transition: transform .2s;
  display: block;
  position: absolute;
  top: 53%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.video-lightbox-button:hover {
  transform: translate(0, -50%)scale(1.2);
  box-shadow: 0 0 13px #00000080;
}

.video-lightbox-icon {
  height: 25px;
}

.portfolio-overlay-block {
  background-color: #2c2d31cc;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-block-title {
  font-size: 18px;
  font-weight: 700;
}

.portfolio-block-subtitle {
  margin-top: 10px;
  font-size: 14px;
}

.testimonial-slider {
  background-color: #0000;
  height: 200px;
}

.testimonial-slide {
  flex-flow: row;
  place-content: space-around;
  align-items: center;
  position: relative;
}

.testimonial-slider-arrow {
  color: #000;
  background-color: #0000;
  border: 1px solid #0000001a;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin-left: 20px;
  margin-right: 30px;
  font-size: 15px;
  transition: border .2s, background-color .2s;
}

.testimonial-slider-arrow:hover {
  background-color: #0000001a;
  border-color: #0000;
}

.testimonial-block {
  padding-left: 200px;
  padding-right: 40px;
  position: relative;
  left: 0;
  right: 0;
  overflow: visible;
}

.testimonial-image {
  border-radius: 4px;
  width: 150px;
  height: 150px;
  margin-top: -12px;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-quote {
  color: var(--text-grey);
  font-size: 19px;
  font-weight: 300;
  line-height: 30px;
}

.testimonial-info-block {
  margin-top: 20px;
}

.testimonial-name {
  color: #152f6e;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-name.subtitle {
  color: var(--text-grey);
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.elements-wrapper.centered {
  text-align: center;
  margin-top: 10px;
}

.element-column.left {
  padding-right: 50px;
}

.footer {
  color: #a0a0a0;
  background-color: #152f6e;
  padding-top: 55px;
  padding-bottom: 25px;
}

.footer-row.block {
  color: #fff;
  border: 0 #0000;
  padding-bottom: 50px;
  font-weight: 400;
}

.footer-column {
  padding-right: 30px;
}

.image-section {
  background-image: url('../images/Photo-5.jpg');
  background-position: 50%;
  background-size: cover;
}

.image-section.quote {
  background-image: url('../images/halifax-harbour.webp');
}

.image-section.about-us-2 {
  background-image: url('../images/Photo-1.jpg');
}

.image-section-overlay {
  color: #fff;
  background-color: #6b96ff4d;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-section-overlay.white-gradient {
  color: #000;
  background-color: #0000;
  background-image: linear-gradient(#fff 39%, #fff0);
  padding-top: 210px;
  padding-bottom: 240px;
}

.image-section-overlay-block {
  color: #fff;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-section-overlay-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 50px;
}

.image-section-overlay-title.subtitle {
  width: 70%;
  margin: 15px auto 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  display: block;
}

.menu-button {
  color: #fff;
  border: 1px solid #ffffff1a;
  border-radius: 4px;
  transition: background-color .2s;
}

.menu-button:hover {
  background-color: #212429;
  border-color: #212429;
}

.menu-button.w--open {
  background-color: #1fdb6a;
  border-color: #1fdb6a;
}

.menu-button.blue.w--open {
  background-color: #25395e;
  border-color: #25395e;
}

.footer-title {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.footer-link {
  color: snow;
  margin-top: 7px;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #fff;
}

.footer-link.social {
  background-image: url('../images/Icon-facebook_2.png');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-left: 20px;
}

.footer-link.social.youtube {
  background-image: url('../images/Icon-play-white.png');
}

.footer-link.social.google {
  background-image: url('../images/Icon-google.png');
}

.footer-link.social.twitter {
  background-image: url('../images/Icon-twitter.png');
}

.simple-footer {
  background-color: #2a2d30;
  padding-top: 45px;
}

.simple-bottom-footer {
  color: #979da5;
  background-color: #424549;
  margin-top: 45px;
  padding-top: 35px;
  padding-bottom: 32px;
}

.footer-inline-link {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  margin-right: 15px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

.footer-inline-link:hover {
  color: #fff6;
}

.footer-social-icon {
  text-align: center;
  background-color: #4a4f53;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  margin-top: -2px;
  margin-right: 5px;
  padding-top: 5px;
  transition: background-color .2s;
}

.footer-social-icon:hover {
  background-color: #1f6fff;
}

.footer-small-social-icon {
  height: 15px;
}

.hero-block-overlay {
  color: #fff;
  background-color: #00000040;
  padding-top: 270px;
  padding-bottom: 250px;
}

.hero-block-overlay.business-2 {
  background-color: #152f6ed4;
  padding-top: 260px;
  padding-bottom: 50px;
}

.hero-block-overlay.integrations {
  background-color: #152f6ed4;
  padding-top: 260px;
  padding-bottom: 40px;
}

.small-section-title {
  opacity: .6;
  color: var(--text-grey);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 600;
}

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

.client-logo {
  opacity: .7;
  height: 50px;
  transition: opacity .2s;
}

.client-logo:hover {
  opacity: .7;
}

.image-hero {
  background-color: #0f1011;
  background-image: url('../images/Photo-2.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.image-hero.busines-2 {
  background-image: url('../images/shopify-apps.webp');
  background-position: 50%;
  background-size: cover;
}

.image-hero.apps {
  background-image: url('../images/Screen-Shot-2023-02-01-at-10.53.48-AM.png');
  background-position: 50%;
}

.field {
  background-color: #fff3;
  border: 0 solid #000;
  border-radius: 4px;
  height: 50px;
  transition: background-color .2s;
}

.field:hover, .field:focus {
  background-color: #fff;
}

.field.area {
  height: 200px;
  padding-top: 12px;
}

.field.line {
  border-bottom-width: 2px;
  border-bottom-color: #e2e2e2;
  border-radius: 0;
  height: 46px;
  margin-bottom: 5px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
  transition: background-color .2s, border .2s;
}

.field.line:hover {
  border-bottom-color: #b6b6b6;
}

.field.line:focus {
  border-bottom-color: #1f6fff;
}

.field.line.area {
  height: 95px;
}

.success-message {
  background-color: var(--often-purple);
  color: #fff;
  border-radius: 5px;
  padding-top: 30px;
}

.error-bg {
  background-color: var(--gainsboro);
  color: #e42121;
  text-align: center;
  border-radius: 3px;
  margin-top: 20px;
  padding-top: 12px;
  padding-bottom: 1px;
  font-size: 12px;
}

.footer-logo {
  color: #fff;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 700;
  line-height: 17px;
}

.footer-logo.subtitle {
  opacity: .5;
  text-transform: none;
  font-size: 11px;
  font-weight: 400;
}

.footer-social-col-right {
  text-align: right;
}

.bottom-footer-paragraph {
  float: left;
  color: snow;
  margin-bottom: 0;
  font-size: 12px;
}

.bottom-footer-paragraph.right {
  float: right;
}

.bottom-footer-paragraph.dark {
  color: #94979e;
}

.bottom-footer-link {
  color: #91959c;
}

.bottom-footer-link:hover {
  color: #ffffffb3;
}

.bottom-footer-link.dark {
  color: #1f6fff;
  text-decoration: none;
}

.overall-video-lightbox {
  border-radius: 4px;
  width: 100%;
  height: 230px;
  display: block;
  overflow: hidden;
  box-shadow: 0 10px 40px #0000004d;
}

.video-lightbox-image-block {
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/Photo-6_2.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pricing-block {
  text-align: center;
  background-color: #f0f4f7;
  border-radius: 4px;
  padding: 60px 40px;
  position: relative;
}

.pricing-block.image {
  color: #fff;
  background-image: linear-gradient(#00000080, #00000080), url('../images/Photo-9.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.pricing-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.pricing-price {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 44px;
  font-weight: 700;
  line-height: 40px;
}

.pricing-paragraph {
  font-size: 13px;
  line-height: 22px;
}

.pricing-block-tag {
  text-transform: uppercase;
  background-color: #5ec045;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 90px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 9px;
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.browser-mockup-right {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  width: 770px;
  position: absolute;
  top: -35px;
  right: -395px;
  box-shadow: 3px 3px 33px #0000001a;
}

.browser-mockup-right.small {
  width: 560px;
  top: -15px;
  right: -165px;
}

.overall-hero-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 300;
  line-height: 50px;
}

.overall-hero-description {
  opacity: 1;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
  display: block;
}

.text-column {
  padding-right: 20px;
}

.text-column-title {
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.top-line-block {
  border-top: 1px solid #0000001a;
  margin-top: 35px;
  padding-top: 40px;
}

.small-paragraph {
  color: #838383;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.field-label {
  color: #989ba2;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.dark-field {
  color: #666;
  background-color: #edeef1;
  border: 0 solid #000;
  border-radius: 2px;
  height: 40px;
  margin-bottom: 7px;
  padding-left: 20px;
  font-size: 13px;
  transition: box-shadow .2s, border .2s, background-color .2s;
}

.dark-field:hover {
  background-color: #dbdce2;
}

.dark-field:focus {
  background-color: #fff;
  box-shadow: 3px 3px 16px #0003;
}

.dark-field.area {
  height: 148px;
  padding-top: 12px;
}

.white-footer {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 16px;
}

.dark-footer-title {
  color: #1f6fff;
  text-transform: uppercase;
  margin-bottom: 21px;
  font-size: 18px;
  font-weight: 300;
}

.light-footer-link {
  color: #94979e;
  margin-bottom: 7px;
  font-size: 13px;
  text-decoration: none;
  display: block;
}

.color-social-button {
  text-align: center;
  background-color: #4e5f97;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
  margin-right: 2px;
  padding-top: 3px;
}

.color-social-button:hover {
  opacity: .8;
}

.color-social-button.twitter {
  background-color: #37a5e4;
}

.color-social-button.google {
  background-color: #e22047;
}

.footer-contact-info-block {
  color: #94979e;
  margin-top: 20px;
  font-size: 14px;
}

.bottom-footer-block {
  border-top: 1px solid #0000001a;
  margin-top: 30px;
  padding-top: 30px;
}

.bottom-footer-block.white-footer-block {
  color: #e1e1e4;
  margin-top: 40px;
}

.large-pricing-block {
  border-right: 2px solid #e4e4e4;
  padding-right: 51px;
}

.large-pricing-block._2 {
  border-right-width: 0;
  padding-left: 50px;
  padding-right: 0;
}

.large-pricing-icon {
  height: 50px;
  margin-bottom: 20px;
}

.large-pricing-title {
  text-transform: uppercase;
  margin-bottom: 4px;
}

.large-pricing-title.price {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 700;
  line-height: 50px;
}

.pricing-features-list {
  float: left;
  width: 50%;
  margin-top: 20px;
  margin-bottom: 0;
}

.pricing-feature-list-item {
  margin-bottom: 6px;
  padding-left: 26px;
  position: relative;
}

.pricing-list-icon {
  width: 15px;
  position: absolute;
  top: 3px;
  left: 0;
}

.pricing-list-title {
  line-height: 21px;
}

.browser-mockup-left {
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  width: 790px;
  position: absolute;
  top: -25px;
  left: -370px;
  box-shadow: 4px 4px 33px #0000001a;
}

.browser-mockup-left.small {
  width: 560px;
  top: -15px;
  left: -150px;
}

.dark-bottom-footer {
  color: #6d7077;
  background-color: #181a1d;
  padding-top: 0;
  padding-bottom: 55px;
}

.small-footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 700;
}

.footer-row-bottom {
  margin-bottom: 50px;
}

.dropdown-icon {
  opacity: .4;
  margin-right: 10px;
}

.right-nav-menu {
  text-align: left;
  background-color: #fff;
  width: 300px;
  margin-left: 60px;
  padding: 31px;
  box-shadow: 0 0 60px #0000004d;
}

.nav-menu-content-block {
  text-align: center;
  border: 2px solid #ebeef3;
  border-radius: 4px;
  margin-top: 40px;
  padding: 20px;
}

.app-store-button {
  border-radius: 4px;
  height: 46px;
}

.app-store-link-button {
  margin-bottom: 4px;
}

.app-store-link-button:hover {
  opacity: .8;
}

.nav-paragraph {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 18px;
}

.nav-title {
  color: #1f6fff;
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.half-image-section {
  float: left;
  background-image: url('../images/exportify-business.webp');
  background-position: 50%;
  background-size: cover;
  width: 50%;
  height: 500px;
}

.half-image-section.right {
  float: right;
  background-image: url('../images/black-friday-online-store.jpg');
}

.half-content-section {
  float: right;
  background-color: #fff;
  width: 50%;
  height: 500px;
  padding: 90px;
}

.half-content-section.left {
  float: left;
  display: block;
}

.content-section-block {
  float: left;
  max-width: 450px;
  display: block;
  position: relative;
}

.content-section-block.left {
  float: right;
  display: block;
}

.full-hero-content-block {
  text-align: center;
  width: 80%;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blocks-row {
  margin-bottom: 20px;
}

.color-block {
  color: #8f8f8f;
  text-align: left;
  background-color: #fff;
  border-radius: 4px;
  padding: 32px;
  text-decoration: none;
  transition: transform .2s;
  display: block;
  position: relative;
  box-shadow: 0 0 16px #0000001a;
}

.color-block-title {
  z-index: 10;
  color: #000;
  margin-bottom: 17px;
  font-size: 19px;
  font-weight: 600;
  position: relative;
}

.color-block-paragraph {
  z-index: 10;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 19px;
  position: relative;
}

.color-block-icon {
  z-index: 1;
  opacity: 1;
  height: 40px;
  position: absolute;
  top: 18px;
  right: 30px;
}

.bottom-paragraph {
  margin-top: 30px;
  margin-bottom: 0;
}

.white-pricing-column {
  border-right: 1px solid #0000000f;
  padding-left: 20px;
  padding-right: 20px;
}

.white-pricing-column:hover {
  color: #1f6fff;
}

.white-pricing-column.last {
  border-right-color: #d8d8d800;
}

.transparant-pricing-block {
  text-align: center;
  border-radius: 4px;
  padding: 34px 24px;
  transition: background-color .35s, box-shadow .35s, color .2s;
}

.transparant-pricing-block:hover {
  background-color: #fff6;
  box-shadow: 0 12px 33px #0003;
}

.transparant-pricing-block.highlight {
  background-color: #fff;
  box-shadow: 0 10px 30px #0000001a;
}

.white-pricing-title {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-icon-block {
  text-align: center;
  border: 2px solid #dfdfdf;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  padding-top: 29px;
  display: inline-block;
}

.pricing-icon {
  opacity: .28;
  width: 40px;
  height: 40px;
}

.white-price-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 700;
  line-height: 40px;
}

.white-pricing-paragraph {
  color: #252525;
}

.subpage-header {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#1f6fffe6, #1f6fffe6), url('../images/Photo-5.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 190px;
  padding-bottom: 90px;
}

.subpage-header.ui {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Photo-2.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 210px;
}

.subpage-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Source Sans Pro, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 40px;
}

.subpage-title.blog-post-title {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 46px;
  line-height: 49px;
  display: block;
}

.page-subtitle {
  width: 65%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Source Sans Pro, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 27px;
  display: block;
}

.contact-info-column {
  text-align: center;
  padding-left: 0;
}

.contact-info-title {
  color: var(--text-grey);
  display: inline-block;
}

.contact-info-title:hover {
  color: var(--often-purple);
}

.contact-info-list-item {
  text-align: left;
  margin-top: 9px;
  margin-bottom: 5px;
}

.contact-info-button {
  text-align: center;
  display: block;
}

.contact-info-icon {
  opacity: .7;
  height: 16px;
  margin-top: -2px;
  margin-right: 7px;
}

.contact-popup {
  z-index: 2000;
  background-color: #1f232ae6;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.popup-block {
  background-color: #fff;
  border-radius: 4px;
  align-items: center;
  width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  position: relative;
  box-shadow: 0 0 30px #0006;
}

.popup-contact-form {
  margin-bottom: 0;
}

.popup-title {
  margin-bottom: 30px;
  font-size: 21px;
}

.popup-close-button {
  opacity: .2;
  position: absolute;
  top: 25px;
  right: 25px;
}

.popup-close-button:hover {
  opacity: .4;
}

.close-icon {
  height: 17px;
}

.contact-form-block {
  border: 2px solid #00000014;
  border-radius: 4px;
  height: 625px;
  margin-bottom: 0;
  padding: 40px;
  overflow: visible;
}

.feature-blocks-row {
  margin-top: 10px;
  margin-bottom: 10px;
}

.feature-line-block {
  text-align: left;
  border: 1px solid #00000014;
  border-radius: 4px;
  padding: 25px 35px 25px 75px;
  display: block;
  position: relative;
}

.small-feature-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25px;
  left: 25px;
}

.small-feature-title {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.team-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.team-image {
  float: left;
  background-image: url('../images/Testimonial-12.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 5px;
  width: 170px;
  height: 140px;
  margin-right: 40px;
}

.team-title {
  font-size: 20px;
  font-weight: 600;
}

.team-title.title {
  color: #1f6fff;
  text-transform: uppercase;
  margin-top: 1px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 400;
}

.team-description {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 22px;
}

.text-column-left {
  padding-right: 40px;
}

.image-block {
  background-image: url('../images/Screen-Shot-2023-02-01-at-10.50.04-AM.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 5px;
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.image-block-column-left {
  padding-right: 30px;
}

.image-block-description {
  color: #fff;
  background-image: linear-gradient(#0000, #000000b3);
  padding: 25px;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.small-column-title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}

.overall-text-column {
  padding-right: 15px;
}

.gallery-lightbox {
  margin-bottom: 20px;
  display: block;
}

.gallery-lightbox.small-gallery {
  width: 96%;
  margin-bottom: 10px;
}

.gallery-image-block {
  background-image: url('../images/Photo-10.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.gallery-image-block._2 {
  background-image: url('../images/Photo-3.jpg');
}

.gallery-image-block._3 {
  background-image: url('../images/Z-1.jpg');
}

.gallery-image-block.small {
  background-image: url('../images/Photo-12.jpg');
  height: 100px;
}

.gallery-image-block.small._2 {
  background-image: url('../images/Photo-8.jpg');
}

.gallery-image-block.small._3 {
  background-image: url('../images/Photo-7.jpg');
}

.gallery-image-block.small._4 {
  background-image: url('../images/Photo-9.jpg');
}

.gallery-image-block.small._5 {
  background-image: url('../images/Photo-2_1.jpg');
}

.gallery-image-block.small._6 {
  background-image: url('../images/Photo-3_1.jpg');
}

.gallery-overlay-icon {
  text-align: center;
  background-color: #0006;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  transition: background-color .2s;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.gallery-overlay-icon:hover {
  background-color: #000000b3;
}

.view-icon {
  height: 35px;
}

.gallery-overlay-block {
  background-color: #0000;
  width: 100%;
  height: 100%;
  transition: background-color .2s;
  display: none;
}

.gallery-overlay-block:hover {
  background-color: #fff3;
}

.stats-row {
  margin-top: 50px;
}

.stats-block {
  padding-top: 14px;
  padding-left: 128px;
  position: relative;
}

.stats-number {
  color: #1f6fff;
  font-size: 54px;
  font-weight: 700;
  line-height: 71px;
  position: absolute;
  top: 0;
  left: 0;
}

.checklist-item {
  margin-bottom: -3px;
  padding-left: 37px;
  position: relative;
}

.check-icon {
  height: 15px;
  position: absolute;
  top: 2px;
  left: 0;
}

.small-dropdown-icon {
  opacity: .5;
  margin-right: 11px;
  font-size: 12px;
}

.elements-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.social-button {
  text-align: center;
  background-color: #2f3538;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-left: 2px;
  margin-right: 2px;
  padding-top: 12px;
  transition: background-color .2s;
}

.social-button:hover {
  background-color: #6b7479;
}

.social-button.twitter {
  background-color: #46a4d3;
}

.social-button.twitter:hover {
  opacity: .8;
}

.social-button.facebook {
  background-color: #5963ac;
}

.social-button.facebook:hover {
  opacity: .8;
}

.social-button.google {
  background-color: #ec4545;
}

.social-button.google:hover {
  opacity: .8;
}

.social-button.rss {
  background-color: #ebba1f;
}

.social-button.rss:hover {
  opacity: .8;
}

.social-button.line {
  background-color: #0000;
  border: 1px solid #0003;
  padding-top: 11px;
  transition: background-color .2s, border .2s;
}

.social-button.line:hover {
  background-color: #0000001a;
  border-color: #0000;
}

.social-icon {
  height: 20px;
}

.element-container {
  border-radius: 5px;
  max-width: 1090px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #0000001a;
}

.element-container.navigation {
  background-color: #1f6fff;
  height: 120px;
}

.element-container.navigation._2 {
  background-color: #39404d;
}

.element-container.navigation._3 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Photo-6.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 130px;
}

.logo {
  height: 40px;
  margin-top: 3px;
}

.logo.responsive-menu {
  margin-top: 12px;
}

.logo.fixed {
  height: 65px;
}

.dark-footer-link {
  color: #6d7077;
  margin-bottom: 7px;
  text-decoration: none;
  display: block;
}

.dark-footer-link:hover {
  color: #fff;
}

.footer-paragraph {
  margin-bottom: 0;
}

.blog-posts-list {
  flex-flow: wrap;
  place-content: space-between space-around;
  align-items: stretch;
  display: flex;
}

.blog-post-overlay {
  background-color: #0003;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  transition: background-color .2s;
  position: relative;
  overflow: hidden;
}

.blog-post-overlay:hover {
  background-color: #1f6fff4d;
}

.blog-post-overlay.light {
  background-color: #0000001a;
}

.blog-post-overlay.light:hover {
  background-color: #1f6fffb3;
}

.empty-state {
  text-align: center;
  background-color: #00000014;
  border-radius: 3px;
}

.blog-post-title-link {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 22px;
  text-decoration: none;
  display: block;
}

.blog-post-date {
  color: #bdbdbd;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: 13px;
}

.simple-blog-image-block {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 3px;
  width: 100%;
  height: 170px;
  margin-bottom: 20px;
  display: block;
}

.simple-blog-post-item {
  order: -1;
  margin-bottom: 20px;
}

.simple-blog-post-item.related {
  order: -1;
}

.blog-post-page-content {
  background-color: #fff;
  border-radius: 4px;
  width: 80%;
  margin: -140px auto 60px;
  padding: 70px;
  display: block;
  box-shadow: 0 0 33px #0000000a;
}

.blog-post-header {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
}

.blog-post-header-overlay {
  color: #fff;
  text-align: center;
  background-color: #0000004d;
  width: 100%;
  height: 100%;
  padding-top: 230px;
  padding-bottom: 190px;
}

.blog-post-content {
  padding-right: 20px;
}

.single-post-author-block {
  text-align: left;
  width: 70%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
}

.post-author-line {
  background-color: #0000001a;
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.post-author-photo {
  float: left;
  width: 70px;
  height: 70px;
  margin-top: 0;
  margin-right: 30px;
}

.post-author-name {
  font-size: 19px;
  font-weight: 600;
}

.post-author-name.description {
  color: #afafaf;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 300;
  line-height: 22px;
  display: block;
}

.feature-text-block {
  float: left;
  width: 440px;
}

.feature-text-block.right {
  float: right;
}

.main-feature-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 35px;
  line-height: 37px;
}

.feature-intro-title {
  color: #bebebe;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
}

.dark-cta-title {
  float: left;
  width: 70%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
}

.blog-single-post-date {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 17px;
}

.fields-column-left {
  padding-left: 0;
}

.fields-column-right {
  padding-left: 0;
  padding-right: 0;
}

.sign-up-popup {
  z-index: 2000;
  background-color: #1f232ae6;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0;
}

.popup-sign-up-form {
  width: 100%;
  margin-bottom: 0;
}

.sign-up-bottom-text {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 20px;
}

.small-column-icon {
  float: left;
  height: 17px;
  margin-top: 3px;
  margin-right: 8px;
}

.portfolio-lightbox-overlay {
  z-index: 5000;
  background-color: #0d192eb3;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0;
}

.container-2 {
  position: static;
}

.bold-text {
  font-weight: 600;
}

.exportify-logo {
  float: none;
  clear: none;
  display: inline-block;
}

.hero-block-page {
  color: #fff;
  background-color: #00000040;
  padding-top: 270px;
  padding-bottom: 250px;
}

.hero-block-page.apps {
  background-color: #152f6ed4;
  padding-top: 260px;
  padding-bottom: 40px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.container-3 {
  position: relative;
}

.dark-cta-title-2 {
  float: left;
  width: 70%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 50px;
}

.paragraph {
  color: #fff;
}

.testimonial-image-copy {
  border-radius: 4px;
  width: 155px;
  height: 155px;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.heading {
  color: var(--text-grey);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.paragraph-2 {
  color: var(--text-grey);
}

html.w-mod-js [data-ix="hide-block-title"] {
  opacity: 0;
  transform: translate(0, -10px);
}

html.w-mod-js [data-ix="hide-block-description"] {
  opacity: 0;
  transform: translate(0, 10px);
}

html.w-mod-js [data-ix="hide-block-button"] {
  opacity: 0;
}

html.w-mod-js [data-ix="hide-block-overlay"] {
  opacity: 0;
  display: none;
}

html.w-mod-js [data-ix="fade-in-on-load"] {
  opacity: 0;
  transform: translate(0, 30px);
}

html.w-mod-js [data-ix="fade-in-on-load-2"], html.w-mod-js [data-ix="fade-in-on-load-3"], html.w-mod-js [data-ix="fade-in-on-load-4"] {
  opacity: 0;
}

html.w-mod-js [data-ix="fade-in-on-scroll"], html.w-mod-js [data-ix="fade-in-on-scroll-2"], html.w-mod-js [data-ix="fade-in-on-scroll-3"], html.w-mod-js [data-ix="slide-title"], html.w-mod-js [data-ix="slide-title-2"], html.w-mod-js [data-ix="slide-title-3"], html.w-mod-js [data-ix="slide-title-4"] {
  opacity: 0;
  transform: translate(0, 20px);
}

html.w-mod-js [data-ix="mockup-fade-in"], html.w-mod-js [data-ix="mockup-fade-in-2"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="mockup-move"] {
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-zoom"], html.w-mod-js [data-ix="fade-in-zoom-2"], html.w-mod-js [data-ix="fade-in-zoom-3"] {
  opacity: 0;
  transform: scale(.9);
}

html.w-mod-js [data-ix="hide-popup"] {
  opacity: 0;
  display: none;
  transform: scale(1.1);
}

html.w-mod-js [data-ix="hide-gallery-overlay"] {
  opacity: 0;
  display: none;
}

html.w-mod-js [data-ix="fade-in-on-load-5"] {
  opacity: 0;
  transform: translate(0, 30px);
}

html.w-mod-js [data-ix="hide-lightbox"] {
  opacity: 0;
  display: none;
}

@media screen and (max-width: 991px) {
  li {
    font-size: 13px;
  }

  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .navbar.with-color-button {
    padding-bottom: 20px;
  }

  .navbar.white {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-menu {
    background-color: var(--gainsboro);
    border-radius: 0;
    margin-top: 0;
  }

  .nav-link {
    color: var(--text-grey);
    border-radius: 0;
    width: 100%;
    max-width: 1200px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 35px;
  }

  .nav-link:hover {
    color: #fff;
    background-color: #000;
  }

  .nav-link.dropdown-toggle {
    color: #fff;
  }

  .nav-link.light {
    border-color: #0000;
    border-radius: 0;
    width: 100%;
    max-width: 1500px;
    margin-right: 0;
    padding-left: 35px;
    padding-right: 35px;
  }

  .nav-link.light:hover {
    background-color: #000;
  }

  .nav-link.light.w--current {
    border-color: #0000;
  }

  .nav-link.color {
    color: #000;
    border-radius: 60px;
    padding-left: 25px;
  }

  .nav-link.color:hover {
    color: #fff;
  }

  .dropdown {
    width: 100%;
    max-width: 1500px;
  }

  .dropdown-list.w--open {
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 0 #0000;
  }

  .dropdown-link {
    padding-left: 35px;
  }

  .container.footer-container {
    font-size: 12px;
    line-height: 20px;
  }

  .button.pricing-button {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 11px;
    line-height: 17px;
  }

  .button.dark-outline {
    margin-top: 10px;
  }

  .button.cta-button {
    width: 30%;
    margin-top: 15px;
  }

  .section {
    padding: 45px;
  }

  .section.contact {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section.pricing-section {
    padding-bottom: 180px;
  }

  .section.feature-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.contact-no-map {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .section-title-wrapper {
    width: 85%;
    margin-bottom: 40px;
  }

  .section-title-wrapper.full {
    margin-bottom: 20px;
    padding-right: 40px;
  }

  .section-title-wrapper.full.info {
    margin-bottom: 20px;
  }

  .section-title {
    margin-bottom: 4px;
    font-size: 31px;
    line-height: 30px;
  }

  .section-description {
    margin-top: 20px;
    font-size: 19px;
  }

  .portfolio-block-title {
    font-size: 16px;
    line-height: 19px;
  }

  .portfolio-block-subtitle {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 18px;
  }

  .testimonial-slider-arrow {
    width: 30px;
    height: 30px;
    margin-left: -20px;
    margin-right: -20px;
    font-size: 13px;
  }

  .testimonial-block {
    padding-right: 0;
  }

  .testimonial-quote {
    font-size: 15px;
  }

  .footer {
    padding: 30px 45px;
  }

  .image-section-overlay {
    padding: 90px 45px;
  }

  .image-section-overlay.white-gradient {
    padding-bottom: 120px;
  }

  .image-section-overlay-block {
    width: 90%;
  }

  .menu-button {
    margin-right: 20px;
  }

  .footer-inline-link {
    margin-right: 9px;
    font-size: 12px;
  }

  .hero-block-overlay {
    padding: 170px 45px 140px;
  }

  .hero-block-overlay.business-2 {
    padding: 160px 45px 10px;
  }

  .hero-block-overlay.integrations {
    padding-top: 150px;
    padding-left: 45px;
    padding-right: 45px;
  }

  .client-logo {
    height: 40px;
  }

  .pricing-block {
    padding: 50px 30px 30px;
  }

  .pricing-price {
    font-size: 34px;
    line-height: 30px;
  }

  .browser-mockup-right {
    width: 540px;
    top: 9px;
    right: -288px;
  }

  .browser-mockup-right.small {
    right: -316px;
  }

  .overall-hero-title {
    font-size: 41px;
    line-height: 53px;
  }

  .overall-hero-description {
    width: 80%;
  }

  .text-column {
    padding-bottom: 10px;
    padding-right: 10px;
  }

  .text-column-title {
    font-size: 13px;
  }

  .white-footer {
    padding-left: 45px;
    padding-right: 45px;
  }

  .large-pricing-block {
    padding-right: 30px;
  }

  .large-pricing-block._2 {
    padding-left: 30px;
  }

  .pricing-list-title {
    font-size: 11px;
    line-height: 18px;
  }

  .browser-mockup-left {
    width: 580px;
    top: 4px;
    left: -360px;
  }

  .browser-mockup-left.small {
    top: 1px;
    left: -336px;
  }

  .dark-bottom-footer {
    padding-bottom: 45px;
    padding-left: 45px;
    padding-right: 45px;
    font-size: 12px;
    line-height: 20px;
  }

  .dropdown-icon {
    margin-right: 30px;
  }

  .right-nav-menu {
    z-index: 2000;
  }

  .half-image-section {
    height: 470px;
  }

  .half-content-section {
    height: 470px;
    padding: 45px 35px 45px 45px;
  }

  .full-hero-content-block {
    width: 100%;
    margin-bottom: 50px;
  }

  .color-block {
    padding: 25px;
  }

  .color-block-title {
    margin-bottom: 11px;
    font-size: 15px;
  }

  .color-block-icon {
    height: 30px;
    top: 20px;
    right: 20px;
  }

  .white-pricing-column {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-icon-block {
    width: 80px;
    height: 80px;
    padding-top: 25px;
  }

  .pricing-icon {
    width: 30px;
    height: 30px;
  }

  .white-price-title {
    font-size: 35px;
  }

  .white-pricing-paragraph {
    font-size: 13px;
    line-height: 20px;
  }

  .subpage-header {
    padding: 140px 45px 60px;
  }

  .subpage-header.ui {
    padding: 150px 45px 50px;
  }

  .subpage-title.blog-post-title {
    width: 90%;
    font-size: 40px;
  }

  .page-subtitle {
    width: 80%;
  }

  .team-image {
    width: 120px;
    margin-right: 20px;
  }

  .image-block-column-left {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .overall-text-column {
    padding-left: 0;
    padding-right: 0;
  }

  .stats-block {
    padding-left: 118px;
  }

  .stats-title {
    font-size: 11px;
  }

  .checklist-item {
    margin-bottom: -5px;
    font-size: 13px;
  }

  .small-dropdown-icon {
    margin-right: 21px;
  }

  .elements-title-wrapper {
    margin-bottom: 30px;
  }

  .transparant-menu-button {
    color: #fff;
    text-align: center;
    background-color: #0000001a;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    padding-top: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .transparant-menu-button:hover {
    background-color: #0000004d;
  }

  .transparant-menu-button.w--open {
    background-color: #000;
  }

  .pricing-column-left {
    padding-left: 0;
  }

  .pricing-column-right {
    padding-right: 0;
  }

  .fixed-nav-menu-button {
    background-color: var(--often-purple);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    padding-top: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .fixed-nav-menu-button:hover, .fixed-nav-menu-button.w--open {
    background-color: var(--dark-purple);
  }

  .blog-posts-list {
    align-content: space-between;
  }

  .blog-post-summary {
    font-size: 14px;
    line-height: 22px;
  }

  .simple-blog-image-block {
    height: 150px;
  }

  .blog-post-page-content {
    width: 90%;
    padding: 50px;
  }

  .blog-post-header-overlay {
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .feature-text-block {
    width: 400px;
  }

  .dark-cta-title {
    width: 60%;
  }

  .hero-block-page {
    padding: 170px 45px 140px;
  }

  .hero-block-page.apps {
    padding-top: 150px;
    padding-left: 45px;
    padding-right: 45px;
  }

  .dark-cta-title-2 {
    width: 60%;
  }

  .paragraph {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
  }

  .navbar.white {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link {
    padding-left: 25px;
  }

  .nav-link.light {
    padding-left: 25px;
    padding-right: 25px;
  }

  .dropdown-link {
    padding-left: 25px;
  }

  .container.testimonial-container {
    position: relative;
    top: 0%;
    transform: none;
  }

  .container.bottom-footer {
    border-radius: 0;
  }

  .container.footer-container {
    border-width: 0;
    border-radius: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
    left: 20px;
  }

  .container.above-image-section {
    margin-bottom: -130px;
  }

  .button.full, .button.pricing-button {
    margin-top: 10px;
  }

  .button.cta-button {
    float: none;
    width: 50%;
  }

  .section {
    padding: 25px;
  }

  .section.pricing-section {
    padding-bottom: 130px;
  }

  .section.feature-section {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .section.cta-section {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .section-title-wrapper {
    width: 95%;
    margin-bottom: 40px;
  }

  .section-title-wrapper.full {
    margin-bottom: 30px;
  }

  .section-title-wrapper.full.info {
    text-align: center;
  }

  .section-title-wrapper.small-title {
    margin-bottom: 19px;
  }

  .section-title {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 30px;
  }

  .portfolio-block-subtitle {
    font-size: 12px;
  }

  .testimonial-slider {
    height: auto;
  }

  .testimonial-block {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
  }

  .testimonial-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    display: block;
    position: static;
  }

  .testimonial-quote {
    font-size: 14px;
    line-height: 22px;
  }

  .element-column {
    padding-left: 0;
    padding-right: 0;
  }

  .element-column.left {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer {
    padding: 0;
  }

  .footer-row {
    padding-left: 25px;
    padding-right: 25px;
  }

  .footer-row.block {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-row.white-footer-row {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-column {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-column.last {
    padding-bottom: 0;
  }

  .image-section-overlay {
    padding: 60px 25px;
  }

  .image-section-overlay.white-gradient {
    background-image: linear-gradient(#fff 12%, #fff9);
    padding-top: 140px;
    padding-bottom: 110px;
  }

  .image-section-overlay-block {
    width: 90%;
  }

  .image-section-overlay-title {
    font-size: 30px;
    line-height: 36px;
  }

  .image-section-overlay-title.subtitle {
    width: 100%;
    margin-top: 20px;
  }

  .menu-button {
    text-align: center;
    width: 50px;
    height: 50px;
    padding-top: 13px;
    padding-left: 0;
    padding-right: 0;
  }

  .simple-bottom-footer {
    text-align: left;
    margin-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-block-overlay {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero-block-overlay.business-2 {
    padding-top: 160px;
    padding-bottom: 20px;
  }

  .hero-block-overlay.integrations {
    padding-top: 120px;
  }

  .logo-column {
    padding-bottom: 3px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-social-col-right {
    text-align: left;
    padding-top: 10px;
    padding-left: 0;
  }

  .bottom-footer-paragraph {
    float: none;
    margin-bottom: 7px;
  }

  .bottom-footer-paragraph.right, .bottom-footer-paragraph.dark {
    float: none;
  }

  .footer-logo-column-left {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-menu-column, .pricing-column {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-block {
    padding: 30px;
  }

  .pricing-block.image {
    padding-top: 50px;
  }

  .pricing-price {
    margin-bottom: 20px;
  }

  .browser-mockup-right {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    top: 0;
    right: 0;
  }

  .browser-mockup-right.small {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
    position: static;
  }

  .overall-hero-title {
    font-size: 30px;
    line-height: 33px;
  }

  .overall-hero-description {
    width: 90%;
  }

  .text-column {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .top-line-block {
    margin-top: 25px;
    padding-top: 30px;
  }

  .white-footer {
    padding: 25px;
  }

  .dark-footer-title {
    margin-bottom: 10px;
  }

  .light-footer-link {
    margin-bottom: 4px;
  }

  .bottom-footer-block.white-footer-block {
    margin-top: 0;
  }

  .large-pricing-block {
    border-right-style: none;
    border-right-width: 0;
    padding-right: 0;
  }

  .large-pricing-block._2 {
    padding-left: 0;
  }

  .large-pricing-icon {
    float: left;
    margin-top: 7px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .large-pricing-title.price {
    font-size: 34px;
    line-height: 40px;
  }

  .pricing-features-list {
    margin-top: 10px;
  }

  .pricing-list-title {
    font-size: 13px;
    line-height: 20px;
  }

  .browser-mockup-left {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    top: 0;
    left: 0;
  }

  .browser-mockup-left.small {
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 0;
    position: static;
  }

  .dark-bottom-footer {
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .footer-row-bottom {
    margin-bottom: 20px;
  }

  .right-nav-menu {
    width: 80%;
    padding: 20px;
  }

  .app-store-link-button {
    margin-left: 2px;
    margin-right: 2px;
  }

  .half-image-section {
    width: 100%;
    height: 250px;
  }

  .half-content-section {
    width: 100%;
    height: auto;
    padding: 25px;
  }

  .half-content-section.left {
    border-top: 1px solid #ececec;
  }

  .content-section-block.left {
    float: none;
  }

  .blocks-row {
    margin-bottom: 0;
  }

  .block-column {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .bottom-paragraph {
    margin-top: 20px;
    font-size: 13px;
  }

  .white-pricing-column {
    border-right-width: 0;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .transparant-pricing-block {
    border: 1px solid #0000001a;
  }

  .subpage-header {
    padding: 110px 25px 40px;
  }

  .subpage-header.ui {
    padding-top: 110px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .subpage-title {
    font-size: 30px;
  }

  .subpage-title.blog-post-title {
    font-size: 32px;
    line-height: 39px;
  }

  .page-subtitle {
    width: 100%;
    margin-top: 10px;
  }

  .contact-info-column {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .contact-info-title {
    text-align: left;
  }

  .contact-info-list-item {
    text-align: center;
  }

  .contact-popup {
    overflow: auto;
  }

  .popup-block {
    width: 90%;
    margin-bottom: 25px;
    top: 25px;
    transform: none;
  }

  .contact-form-block {
    height: auto;
    padding: 25px;
  }

  .feature-blocks-row {
    margin-top: 0;
    margin-bottom: 0;
  }

  .feature-blocks-column {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .team-image {
    height: 150px;
  }

  .text-column-left {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-block {
    height: 180px;
  }

  .gallery-image-block {
    height: 220px;
  }

  .gallery-image-block._2, .gallery-image-block._3 {
    height: 160px;
  }

  .gallery-image-block.small._2, .gallery-image-block.small._3 {
    height: 100px;
  }

  .stats-column {
    padding-left: 0;
  }

  .stats-block {
    padding-top: 0;
    padding-left: 0;
  }

  .stats-number {
    float: left;
    width: 80px;
    margin-right: 20px;
    font-size: 40px;
    line-height: 50px;
    position: static;
  }

  .stats-title {
    margin-top: 16px;
    font-size: 13px;
  }

  .element-container.navigation {
    height: 80px;
  }

  .logo {
    height: 30px;
    margin-top: 10px;
  }

  .transparant-menu-button {
    width: 40px;
    height: 40px;
    padding-top: 8px;
  }

  .pricing-column-right {
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .white-footer-column {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .fixed-nav-menu-button {
    background-color: var(--often-purple);
  }

  .fixed-nav-menu-button:hover {
    background-color: var(--dark-purple);
  }

  .about-us-col-left {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .video-column-right-2, .gallery-column-right {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-posts-list {
    display: block;
  }

  .simple-blog-post-item {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-post-page-content {
    width: 100%;
    margin-bottom: 40px;
    padding: 25px;
  }

  .blog-post-header-overlay {
    padding-top: 140px;
  }

  .single-post-author-block {
    width: 100%;
  }

  .post-author-name.description {
    font-size: 15px;
  }

  .feature-text-block {
    width: 100%;
  }

  .dark-cta-title {
    float: none;
    width: 100%;
  }

  .team-member-item {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-single-post-date {
    width: 90%;
  }

  .fields-column-left {
    padding-right: 0;
  }

  .hero-block-page {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero-block-page.apps {
    padding-top: 120px;
  }

  .dark-cta-title-2 {
    float: none;
    width: 100%;
  }

  .testimonial-image-copy {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    display: block;
    position: static;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 31px;
    line-height: 37px;
  }

  h2 {
    font-size: 24px;
    line-height: 29px;
  }

  blockquote {
    border-left-width: 3px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 0;
    font-size: 17px;
    line-height: 23px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
  }

  .navbar.white {
    padding-bottom: 10px;
  }

  .container {
    clear: none;
    position: relative;
  }

  .button {
    margin-top: 10px;
    padding-left: 19px;
    padding-right: 19px;
    font-size: 11px;
    line-height: 21px;
  }

  .button._2 {
    margin-left: 4px;
  }

  .button.cta-button {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .button.cta-button.white {
    float: none;
    text-align: center;
  }

  .section {
    padding: 25px;
  }

  .section.tint {
    padding: 30px 25px;
  }

  .section.contact {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .section.pricing-section {
    padding-bottom: 120px;
  }

  .section.contact-us-section {
    padding-top: 35px;
    padding-bottom: 25px;
  }

  .section.blog-page-section {
    padding: 0;
  }

  .section.contact-no-map {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .section.blue-cta-section {
    text-align: center;
  }

  .section-title-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .section-title-wrapper.full {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .section-title-wrapper.full.info {
    text-align: center;
    margin-bottom: 20px;
    padding-right: 0;
  }

  .section-title {
    font-size: 25px;
    line-height: 28px;
  }

  .section-description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 23px;
  }

  .video-lightbox-button {
    width: 50px;
    height: 50px;
    padding-top: 13px;
  }

  .video-lightbox-icon {
    height: 20px;
  }

  .testimonial-slider-arrow {
    margin-left: -10px;
    margin-right: -10px;
  }

  .testimonial-block {
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonial-quote {
    font-size: 13px;
    line-height: 20px;
  }

  .footer-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-section-overlay {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .image-section-overlay-block {
    width: 100%;
  }

  .image-section-overlay-title {
    font-size: 25px;
    font-weight: 300;
    line-height: 28px;
  }

  .image-section-overlay-title.subtitle {
    width: 100%;
    margin-top: 16px;
    font-size: 14px;
    line-height: 23px;
  }

  .menu-button {
    text-align: center;
    width: 40px;
    height: 40px;
    margin-top: 2px;
    padding-top: 8px;
    padding-left: 0;
    padding-right: 0;
  }

  .simple-footer {
    padding-top: 35px;
  }

  .simple-bottom-footer {
    padding: 20px 20px 13px;
  }

  .footer-inline-link {
    margin-top: -1px;
    margin-right: 7px;
  }

  .hero-block-overlay {
    padding: 90px 25px 40px;
  }

  .hero-block-overlay.business-2 {
    padding: 110px 25px 20px;
  }

  .hero-block-overlay.integrations {
    padding: 100px 25px 20px;
  }

  .small-section-title {
    margin-bottom: 30px;
    font-size: 11px;
    line-height: 21px;
  }

  .logo-column {
    padding-left: 5px;
    padding-right: 5px;
  }

  .client-logo {
    height: 28px;
  }

  .bottom-footer-paragraph.right.dark {
    margin-top: 10px;
  }

  .footer-logo-column-left {
    padding-bottom: 10px;
  }

  .overall-video-lightbox {
    height: 140px;
  }

  .overall-hero-title {
    font-size: 27px;
    line-height: 31px;
  }

  .overall-hero-description {
    font-size: 14px;
    line-height: 22px;
  }

  .top-line-block {
    margin-top: 20px;
    padding-top: 20px;
  }

  .dark-field.area {
    height: 98px;
  }

  .large-pricing-icon {
    margin-right: 10px;
  }

  .large-pricing-title {
    font-size: 12px;
  }

  .large-pricing-title.price {
    line-height: 30px;
  }

  .pricing-features-list {
    width: 100%;
    margin-top: 1px;
  }

  .pricing-list-icon {
    width: 13px;
    top: 2px;
  }

  .pricing-list-title {
    line-height: 17px;
  }

  .nav-menu-content-block {
    margin-top: 20px;
    padding: 10px;
  }

  .app-store-button {
    height: 35px;
  }

  .full-hero-content-block {
    margin-bottom: 30px;
  }

  .color-block {
    padding: 20px;
  }

  .bottom-paragraph {
    margin-top: 10px;
  }

  .white-pricing-title {
    margin-bottom: 5px;
  }

  .pricing-icon-block {
    width: 60px;
    height: 60px;
    padding-top: 14px;
  }

  .white-price-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 30px;
  }

  .subpage-header {
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .subpage-header.ui {
    padding: 94px 25px 30px;
  }

  .subpage-title {
    font-size: 20px;
    line-height: 20px;
  }

  .subpage-title.blog-post-title {
    width: 90%;
    font-size: 23px;
    line-height: 29px;
  }

  .page-subtitle {
    margin-top: 10px;
    font-size: 15px;
    line-height: 23px;
  }

  .contact-info-list {
    margin-bottom: 0;
  }

  .contact-info-list-item {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .popup-block {
    width: 83%;
    padding: 20px;
  }

  .feature-line-block {
    padding: 15px 25px 15px 55px;
  }

  .small-feature-icon {
    top: 15px;
    left: 15px;
  }

  .team-wrapper {
    margin-bottom: 10px;
  }

  .team-image {
    width: 60px;
    height: 50px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .team-title.title {
    margin-bottom: 10px;
  }

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

  .image-block {
    height: 140px;
  }

  .gallery-image-block {
    height: 150px;
  }

  .gallery-image-block._2, .gallery-image-block._3 {
    height: 120px;
  }

  .gallery-image-block.small, .gallery-image-block.small._2, .gallery-image-block.small._3 {
    height: 60px;
  }

  .stats-row {
    margin-top: 30px;
  }

  .stats-title {
    margin-top: 6px;
  }

  .elements-title-wrapper {
    margin-bottom: 20px;
  }

  .element-container.navigation {
    height: 60px;
    margin-top: 10px;
  }

  .element-container.navigation._3 {
    height: 70px;
  }

  .logo {
    margin-top: 5px;
  }

  .logo.fixed {
    height: 40px;
    margin-top: 6px;
  }

  .transparant-menu-button {
    margin-right: 0;
  }

  .pricing-column-right {
    padding-bottom: 15px;
  }

  .white-footer-column {
    padding-bottom: 10px;
  }

  .fixed-nav-menu-button {
    background-color: var(--often-purple);
    width: 40px;
    height: 40px;
    margin-right: 0;
    padding-top: 9px;
  }

  .fixed-nav-menu-button:hover {
    background-color: var(--dark-purple);
  }

  .blog-posts-list.related {
    padding-left: 25px;
    padding-right: 25px;
  }

  .blog-post-title-link {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .blog-post-summary {
    margin-bottom: 9px;
    line-height: 21px;
  }

  .blog-post-date {
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 20px;
  }

  .simple-blog-image-block {
    height: 140px;
  }

  .blog-post-page-content {
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
  }

  .blog-post-header-overlay {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .single-post-author-block {
    margin-top: 20px;
    padding-top: 0;
  }

  .post-author-line {
    margin-bottom: 20px;
  }

  .post-author-photo {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }

  .post-author-name {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 20px;
  }

  .post-author-name.description {
    margin-top: 4px;
    font-size: 12px;
    line-height: 18px;
  }

  .main-feature-title {
    margin-bottom: 20px;
    font-size: 29px;
    line-height: 32px;
  }

  .dark-cta-title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 26px;
  }

  .blog-single-post-date {
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    line-height: 13px;
    display: block;
  }

  .exportify-logo {
    width: auto;
    height: 40px;
  }

  .hero-block-page {
    padding: 90px 25px 40px;
  }

  .hero-block-page.apps {
    padding: 100px 25px 20px;
  }

  .dark-cta-title-2 {
    font-size: 21px;
    line-height: 25px;
  }

  .testimonial-image-copy {
    width: 70px;
    height: 70px;
  }
}


