:root {
  --oa-blue: #00a8e0;
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

a {
  text-decoration: underline;
}

.home-section {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.hero-section-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.subheading {
  width: 550px;
  margin-bottom: 30px;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #00a8e0;
  border-radius: 20px;
  padding: 12px 25px;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.hero-image {
  width: 100%;
  margin-top: 50px;
}

.navbar {
  background-color: #fff0;
  position: relative;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: #000;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: all .3s;
}

.nav-link:hover {
  color: #00a8e0;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

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

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.main-header {
  color: #000;
  max-width: 700px;
  margin-bottom: 30px;
  font-family: Rubik, sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 52px;
}

.background-desktop {
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: inline-block;
  position: fixed;
}

.text-span {
  color: #00a8e0;
}

.blue-vector {
  width: 50px;
  position: absolute;
  inset: -5% -3% auto auto;
}

.cta-link-block {
  background-color: #00a8e0;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 15px 20px 15px 25px;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.cta-link-block:hover {
  box-shadow: none;
  transform: scale(1.05);
}

.text-block {
  color: #fff;
  letter-spacing: 1.5px;
}

.right-arrow-icon {
  width: 15px;
  height: 15px;
  margin-left: 7px;
}

.right-arrow-icon.read-more {
  margin-left: 5px;
}

.div-block {
  width: 150px;
}

.grow-today-link-block {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  text-decoration: none;
  display: inline-flex;
  box-shadow: 0 2px 5px #0003;
}

.grow-today-text {
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 16px;
}

.growth-graph-icon {
  width: 20px;
  margin-left: 7px;
}

.trusted-by-div {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.review-stars {
  width: 130px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-2 {
  color: #000;
  margin-top: 0;
  font-family: Rubik, sans-serif;
  font-size: 18px;
}

.carousel-container-desktop {
  opacity: 1;
  max-width: 850px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
  -webkit-mask: radial-gradient(circle, #000, #000, #0000);
  mask: radial-gradient(circle, #000, #000, #0000);
}

.logo-container {
  background-color: #0000;
  justify-content: space-around;
  min-width: 100%;
  margin-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: static;
  right: 301px;
}

.logo-image {
  width: auto;
  height: 50px;
  transition: all .3s;
}

.logo-image:hover {
  opacity: .6;
}

.carousel-container-mobile {
  display: none;
  overflow: hidden;
}

.logo-container-mobile {
  justify-content: space-around;
  min-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: static;
  right: 163px;
}

.logo-mobile-image {
  height: 50px;
}

.trusted-by-text-div {
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.right-down-arrow {
  width: 12px;
  height: 12px;
  margin-left: 7px;
}

.success-story-section {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.highlighted-case-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.success-story-container {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.heading-2 {
  color: #000;
  font-family: Rubik, sans-serif;
  font-weight: 500;
}

.text-span-2 {
  color: #00a8e0;
}

.testimonial-div {
  background-color: #fff;
  border: .1px solid #0003;
  border-radius: 20px;
  width: 450px;
  height: auto;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px 10px 15px;
  transition: all .3s;
  display: flex;
  box-shadow: 5px 5px 0 2px #00a8e066;
}

.testimonial-div:hover {
  transform: scale(1.03);
  box-shadow: 5px 5px 0 2px #00a8e0;
}

.testimonial-div.review {
  width: auto;
  margin-top: 0;
  margin-bottom: 25px;
}

.frederick-review-div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.fred-image {
  border: 0 solid #000;
  border-radius: 100%;
  margin-right: 0;
}

.review-icon {
  width: 120px;
  margin-bottom: 5px;
}

.frederick-title-text {
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.frederick-testimonial {
  color: #000;
  width: 100%;
  margin: 10px auto 0 0;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.name-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.details-div {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-div-reviews {
  background-image: url('../images/EzyRecruiting-logo.png');
  background-position: 0 0;
  background-size: auto;
  width: 120px;
  height: 120px;
  margin-right: 20px;
}

.image-3 {
  width: 20px;
  margin-left: 7px;
}

.text-span-3, .text-span-4 {
  color: #00a8e0;
}

.case-studies {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.case-studies-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-image-2 {
  width: 100%;
  margin-top: 50px;
}

.case-study-heading {
  color: #000;
  margin-bottom: 30px;
  font-family: Rubik, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

.text-span-5 {
  color: #00a8e0;
}

.case-study-main-div {
  flex-flow: row;
  justify-content: space-around;
  margin-top: 80px;
  display: flex;
}

.case-study-div {
  background-color: #fff0;
  border: 0 solid #000;
  border-radius: 0;
  width: 45%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 25px 20px;
}

.seo-case-study-title {
  color: #000;
  text-align: left;
  margin-bottom: 15px;
  font-family: Rubik, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
}

.text-span-6 {
  color: #00a8e0;
  font-weight: 600;
}

.text-block-4 {
  color: #000;
  margin-bottom: 15px;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.paragraph {
  color: #000;
  margin-bottom: 20px;
  font-family: Rubik, sans-serif;
  line-height: 22px;
}

.text-span-7 {
  text-decoration: underline;
}

.link {
  color: #00a8e0;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  text-decoration: underline;
}

.image-4 {
  width: 120px;
  margin-bottom: 10px;
}

.organic-acquisition-logo-image {
  width: 200px;
}

.image-6 {
  width: 100%;
}

.case-results-div {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 45%;
  display: flex;
}

.image-7 {
  clear: none;
  text-align: left;
  width: 90%;
  margin-bottom: 10px;
  margin-left: auto;
  display: block;
  transform: rotate(-1deg);
}

.image-8 {
  width: 90%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: rotate(1deg);
}

.image-9 {
  width: 90%;
  margin-left: 0;
  margin-right: auto;
  display: block;
  transform: rotate(-1deg);
}

.case-study-result-content-div {
  background-color: #fff;
  border: .1px solid #0003;
  border-radius: 20px;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  transform: translate(0);
  box-shadow: 0 2px 5px #0003;
}

.case-study-result-content-div.search-traffic {
  border-width: 1px;
  margin-bottom: 20px;
  transition: all .3s;
  transform: rotate(1deg);
  box-shadow: 5px 5px #00a8e066;
}

.case-study-result-content-div.search-traffic:hover {
  transform: scale(1.02)rotate(2deg);
  box-shadow: 5px 5px #00a8e0;
}

.case-study-result-content-div.visitors {
  border-width: 1px;
  margin-bottom: 20px;
  transition: all .3s;
  transform: rotate(-1deg);
  box-shadow: 5px 5px #00a8e066;
}

.case-study-result-content-div.visitors:hover {
  transform: scale(1.02)rotate(-2deg);
  box-shadow: 5px 5px #00a8e0;
}

.case-study-result-content-div.revenue {
  border-width: 1px;
  transition: all .3s;
  transform: rotate(1deg);
  box-shadow: 5px 5px #00a8e066;
}

.case-study-result-content-div.revenue:hover {
  transform: scale(1.02)rotate(2deg);
  box-shadow: 5px 5px #00a8e0;
}

.result-inner-div {
  display: flex;
}

.case-study-result-icon {
  align-self: center;
  width: 70px;
  height: 70px;
}

.text-result-div {
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  margin-right: 0;
  display: flex;
}

.case-study-result-text {
  color: #000;
  background-color: #00a8e01a;
  border: .1px solid #00000080;
  border-radius: 10px;
  padding: 3px 7px;
  font-family: Rubik, sans-serif;
  font-size: 14px;
}

.case-study-performance-text {
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.read-more {
  background-color: #00a8e000;
  border-radius: 0;
  padding: 0;
  font-family: Rubik, sans-serif;
  text-decoration: none;
}

.read-more-link-block {
  color: #fff;
  background-color: #00a8e0;
  border-radius: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 15px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.read-more-link-block:hover {
  transform: scale(1.03);
}

.read-more-button {
  display: flex;
}

.image-10 {
  width: 14px;
  height: 14px;
  margin-left: 7px;
}

.counter {
  color: #00a8e0;
}

.client-name {
  background-color: #fff;
  border: .1px solid #000;
  border-radius: 18px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-bottom: 20px;
  padding: 4px 10px;
  display: inline-flex;
  box-shadow: 0 2px 5px #0003;
}

.client-text {
  color: #000;
  justify-content: center;
  align-items: center;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  display: flex;
}

.image-11 {
  width: 15px;
  height: 15px;
  margin-right: 7px;
  display: block;
}

.text-span-8, .text-span-9, .text-span-10 {
  color: #00a8e0;
}

.process {
  z-index: -1;
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.value-proposition-div {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-2 {
  margin-bottom: 24px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.hero-image-3 {
  width: 100%;
  margin-top: 50px;
}

.text-span-11 {
  color: #00a8e0;
}

.seo-blueprint-picture {
  margin-top: 60px;
}

.benefit-text-div {
  margin-top: 20px;
  display: flex;
}

.benefit-text {
  color: #000;
  margin-left: 0;
  margin-right: 0;
  font-family: Rubik, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.benefit-text.second-bullet {
  width: 80%;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.benefit-text.unicode {
  margin-left: 7px;
  margin-right: 7px;
  font-weight: 600;
}

.process-section {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.process-container {
  width: 100%;
  max-width: 940px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.process-section-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-3 {
  margin-bottom: 24px;
}

.button-primary-4 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-4:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-4:active {
  background-color: #43464d;
}

.hero-image-4 {
  width: 100%;
  margin-top: 50px;
}

.text-span-12 {
  color: #00a8e0;
}

.gallery-scroll {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-sticky {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 80px;
}

.gallery-link {
  color: #1a1b1f;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
}

.gallery-link:hover {
  color: #1a1b1fcc;
}

.gallery-link.w--current {
  font-weight: 600;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper {
  position: relative;
}

.gallery-image {
  width: 100%;
}

.gallery-image-text {
  color: #f5f7fa;
  margin-bottom: 0;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.text-span-13 {
  color: #00a8e0;
}

.benefit-text-with-icon {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.text-block-5 {
  font-family: Rubik, sans-serif;
}

.process-steps-div {
  background-color: #fff;
  border: 1px solid #0003;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 650px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  display: flex;
  box-shadow: 5px 5px #00a8e066;
}

.process-step-text-div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 20px 20px 10px;
  display: flex;
}

.text-process-block {
  color: #00a8e0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.paragraph-2 {
  color: #000;
  font-family: Rubik, sans-serif;
}

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

.process-step-number-div {
  margin-bottom: 20px;
  display: flex;
}

.number-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.testimonials {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.testimonials-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-4 {
  margin-bottom: 24px;
}

.button-primary-5 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-5:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-5:active {
  background-color: #43464d;
}

.hero-image-5 {
  width: 100%;
  margin-top: 50px;
}

.text-span-14 {
  color: #00a8e0;
}

.why-us {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.why-us-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.why-us-section-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bullet-point-list {
  text-align: left;
  align-self: flex-start;
  width: 500px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.bullet-point {
  text-align: left;
  margin-bottom: 10px;
  display: flex;
}

.image-13 {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.text-block-6 {
  color: #000;
  text-align: left;
  align-self: center;
  font-family: Rubik, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.why-us-text-block {
  color: #000;
  text-align: center;
  font-family: Rubik, sans-serif;
  font-size: 32px;
}

.text-span-15 {
  color: #00a8e0;
  font-style: italic;
  font-weight: 600;
}

.comparison-div {
  justify-content: center;
  align-items: center;
  display: flex;
}

.organic-acquisition-logo {
  width: 280px;
  margin-left: 0;
}

.side-by-side-div {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.other-agencies-div {
  opacity: .6;
  background-color: #fff;
  border: .1px solid #0003;
  border-radius: 15px;
  width: 400px;
  margin-right: 20px;
  padding: 20px 10px 20px 20px;
}

.organic-acquisition {
  background-color: #fff;
  border: 1px solid #00a8e0;
  border-radius: 15px;
  width: 400px;
  padding: 20px 10px 20px 20px;
  transition: all .2s;
  box-shadow: 5px 5px #00a8e066;
}

.organic-acquisition:hover {
  transform: scale(1.03);
  box-shadow: 5px 5px #00a8e0;
}

.other-agencies-text, .organic-acquisition-text {
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.divider {
  color: #00a8e0;
  background-color: #00a8e0;
  width: 90%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.list-of-services {
  margin-bottom: 10px;
  display: flex;
}

.list-of-services.call {
  justify-content: center;
  align-items: center;
}

.comparison-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.list-of-characteristic {
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.book-a-call {
  background-color: #fff0;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.free-call-container {
  width: 100%;
  max-width: 940px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.free-call-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.free-call-heading {
  color: #000;
  text-align: center;
  font-family: Rubik, sans-serif;
  font-weight: 600;
}

.text-span-16 {
  color: #00a8e0;
}

.call-description-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.call-process-description {
  color: #000;
  text-align: center;
  align-self: center;
  width: 100%;
  margin-bottom: 40px;
  margin-right: 0;
  font-family: Rubik, sans-serif;
  font-size: 16px;
}

.code-embed {
  width: 60%;
}

.faq-section {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  position: relative;
}

.faq-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.faq-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.faq-headline-div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 46%;
  margin-bottom: 50px;
  display: flex;
}

.margin-bottom-24px-5 {
  margin-bottom: 24px;
}

.button-primary-6 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-6:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-6:active {
  background-color: #43464d;
}

.button-primary-6.footer-form-button {
  padding: 8px 18px;
  position: absolute;
  right: 8px;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.text-span-17 {
  color: #00a8e0;
}

.container-3 {
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: block;
  position: relative;
}

.container-3.faq-container {
  background-color: #ffffff80;
  border-radius: 20px;
  max-width: 900px;
  padding-top: 60px;
  padding-bottom: 80px;
  box-shadow: 0 0 50px #2d3e500f;
}

.faq-plus {
  background-color: #2aa8ff;
  border-radius: 3px;
  width: 100%;
  height: 5px;
}

.faq-answer {
  border-bottom: 1px solid #2d3e501f;
  padding-left: 45px;
  overflow: hidden;
}

.faq-answer.last-faq-answer {
  border-bottom-width: 0;
}

.faq-answer-text {
  margin-bottom: 30px;
  font-size: 16px;
}

.faq-plus-wrap {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.link-2 {
  color: #2aa8ff;
  font-weight: 600;
}

.faq-plus-l {
  background-color: #2aa8ff;
  border-radius: 3px;
  width: 5px;
  height: 100%;
  position: absolute;
}

.faq-question {
  cursor: pointer;
  align-items: center;
  height: 90px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

.pricing-h1 {
  text-align: center;
}

.pricing-h1.faq-h2 {
  margin-bottom: 50px;
}

.questions-wrapper {
  border: 1px solid #dee3ff;
  border-radius: 10px;
  overflow: hidden;
}

.organic-acquisition-faq {
  cursor: pointer;
  border-bottom: 1px solid #dee3ff;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 30px;
  display: flex;
  overflow: hidden;
}

.lottie {
  background-color: #00a8e0;
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  margin-right: 15px;
}

.answer-wrap {
  display: block;
}

.question {
  margin-bottom: 0;
}

.accordion-answer-wrap {
  padding-bottom: 0;
  overflow: hidden;
}

.accordion-answer {
  margin-top: 15px;
  margin-bottom: 0;
}

.faq-column {
  flex-flow: column;
  align-items: flex-start;
  width: 800px;
  display: flex;
}

.faq-h3 {
  color: #3d5169;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}

.faq-h3.noselect {
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.faq-circle {
  border: 1px solid #00a8e0;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 30px;
  display: flex;
}

.faq-paragraph {
  color: #000;
  margin-bottom: 0;
  margin-left: 25px;
  margin-right: 25px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.faq {
  color: #00a8e0;
  cursor: pointer;
  background-color: #fff;
  border: 1.3px solid #00a8e0;
  border-radius: 10px;
  align-items: center;
  width: 100%;
  min-width: 400px;
  min-height: 80px;
  padding: 20px 30px;
  transition: all .2s;
  display: flex;
  box-shadow: 5px 5px #00a8e066;
}

.faq:hover {
  transform: scale(1.03);
  box-shadow: 5px 5px #00a8e0;
}

.faq-question-wrap {
  margin-bottom: 20px;
}

.column {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}

.faq-content {
  overflow: hidden;
}

.bold-text, .bold-text-2, .bold-text-3, .bold-text-4, .bold-text-5 {
  font-weight: 600;
}

.footer-subscribe {
  border-bottom: 0 solid #e4ebf300;
  padding: 50px 30px 40px;
  position: relative;
}

.footer-container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

.footer-form-container-two {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: #1a1b1fcc;
}

.footer-wrapper-three {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: #000;
  margin-left: 20px;
  margin-right: 20px;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}

.footer-link-three:hover {
  color: #00a8e0;
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  background-color: #000;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 16px;
}

.footer-legal-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-legal-link {
  color: #000;
  margin-left: 24px;
  font-family: Rubik, sans-serif;
  font-weight: 400;
  transition: all .2s;
}

.footer-legal-link:hover {
  color: #00a8e0;
}

.organic-acquisition-logo-footer {
  width: 250px;
  margin-bottom: 30px;
}

.twitter {
  width: 30px;
  height: 30px;
}

.utility-page-wrap {
  background-image: url('../images/OA-BG_1.avif');
  background-position: 50%;
  background-size: cover;
  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;
}

.body {
  background-color: #fff;
}

.image-14 {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.heading-3, .text-block-7 {
  color: #000;
  font-family: Rubik, sans-serif;
}

.return-home-div {
  align-self: center;
  margin-top: 20px;
}

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

.submit-button {
  background-color: #00a8e0;
  border-radius: 20px;
}

.body-2 {
  background-color: #fdfdfd;
}

.text-span-18, .text-span-19 {
  color: #00a8e0;
}

.logo-carousel-fade {
  opacity: 1;
  background-color: #0000;
  background-image: linear-gradient(90deg, #fdfdfd, #0000);
  flex: 0 auto;
  order: 0;
  align-self: auto;
  width: 200px;
  height: 110px;
  margin-left: 0;
  display: block;
  position: absolute;
}

.logo-carousel-fade.logo-carousel-fade-right {
  height: 110px;
  position: absolute;
}

.logo-carousel-fade-right {
  opacity: .52;
  background-color: #0000;
  background-image: linear-gradient(90deg, #0000, #fafafa 68%, #fdfdfd);
  width: 200px;
  height: 110px;
  position: absolute;
  inset: auto 193px auto auto;
  overflow: visible;
}

.logo-carousel-gradient {
  z-index: 100;
  opacity: .17;
  background-color: #fdfdfd;
  width: 200px;
  height: 110px;
  position: absolute;
}

.made-by-wellwebdesign {
  color: #000;
  margin-bottom: 20px;
  font-family: Rubik, sans-serif;
  font-style: italic;
}

.link-3 {
  color: #000;
  text-decoration: none;
  transition: all .2s;
}

.link-3:hover {
  color: #00a8e0;
}

.desktop-background {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.testimonial-container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.collum-1, .collum-2 {
  width: 50%;
}

.blogs-section {
  background-color: #f5f7fa00;
  border-bottom: 0 solid #e4ebf300;
  padding: 80px 30px;
  display: none;
  position: relative;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading.margin-bottom-32px {
  margin-bottom: 32px;
}

.hero-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px-6 {
  margin-bottom: 24px;
}

.button-primary-7 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-7:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-7:active {
  background-color: #43464d;
}

.shadow-two-2 {
  box-shadow: 0 4px 24px #96a3b514;
}

.blog-right-side {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-columns: 1fr;
  width: 100%;
}

.section-text-services {
  color: #000;
  text-align: center;
  align-self: center;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.text-block-10 {
  color: #000;
  border: 0 solid #0000;
  border-radius: 0;
  align-self: center;
  margin-bottom: 0;
  padding: 2px 5px;
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.section-div {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 10px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.section-div.process {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-icon {
  align-self: center;
  width: 20px;
  margin-left: 5px;
  display: block;
}

.blog-link {
  transition: all .3s;
  display: flex;
}

.blog-link:hover {
  transform: scale(1.03);
}

.reading-time {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 1px 2px;
  display: flex;
}

.blogs-grid {
  width: 100%;
  margin-top: 20px;
}

.section-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-image {
  object-fit: cover;
  border-radius: 10px;
  width: 200px;
  height: 150px;
  margin-right: 15px;
  position: static;
}

.text-span-20 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#00a8e0, #00a8e0);
  -webkit-background-clip: text;
  background-clip: text;
}

.image-75 {
  align-self: center;
  width: 23px;
  height: 23px;
  margin: 2px;
}

.blog-title {
  color: #000;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
  overflow: visible;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading-2.margin-bottom-32px {
  color: #000;
  width: 500px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
}

.blog-link-block {
  text-decoration: none;
}

.blog-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-post-body {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  display: flex;
}

.blog-post-h1 {
  color: #000;
  margin-bottom: 20px;
  font-family: Rubik, sans-serif;
  font-weight: 500;
}

.image-76 {
  align-self: center;
  width: 23px;
  height: 23px;
  margin: 2px;
}

.text-block-11 {
  color: #000;
  border: 0 solid #0000;
  border-radius: 0;
  align-self: center;
  margin-bottom: 0;
  padding: 2px 5px;
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.blog-post-body-rich-text {
  color: #000;
  text-align: justify;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  line-height: 1.3em;
}

.blog-post-body-rich-text h2, .blog-post-body-rich-text h3 {
  font-weight: 500;
}

.blog-post-body-rich-text a {
  color: #00a8e0;
}

.blog-post-link {
  color: var(--oa-blue);
  font-weight: 400;
}

.text-block-12 {
  color: #000;
  border: 0 solid #0000;
  border-radius: 0;
  align-self: center;
  margin-bottom: 0;
  padding: 2px 5px;
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.blog-container {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.image-77 {
  align-self: center;
  width: 23px;
  height: 23px;
  margin: 2px;
}

.blog-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.heading-4, .blog-post-h2 {
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .home-section {
    background-image: url('../images/Phone-BG.avif');
    background-position: 50%;
    background-size: cover;
    padding-bottom: 30px;
  }

  .hero-section-container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: #fffffff2;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 0;
    display: flex;
  }

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

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    padding: 12px;
    font-family: Rubik, sans-serif;
    font-size: 35px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #00a8e0;
    border-radius: 100%;
  }

  .main-header {
    max-width: 650px;
  }

  .blue-vector {
    top: 0%;
    right: 0%;
  }

  .grow-today-link-block.success-story {
    width: 160px;
  }

  .carousel-container-desktop {
    max-width: 100%;
    display: none;
  }

  .carousel-container-mobile {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .success-story-section {
    padding-bottom: 40px;
  }

  .highlighted-case-container {
    max-width: 728px;
  }

  .testimonial-div {
    width: 450px;
  }

  .review-icon {
    width: 110px;
  }

  .frederick-title-text, .frederick-testimonial {
    font-size: 16px;
  }

  .name-text {
    font-size: 22px;
  }

  .case-studies {
    padding-top: 60px;
  }

  .case-studies-container {
    max-width: 728px;
  }

  .case-study-main-div {
    margin-top: 60px;
  }

  .case-study-div {
    width: 50%;
    padding-right: 10px;
  }

  .case-results-div {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 45%;
    display: flex;
  }

  .image-7, .image-8 {
    margin-bottom: 20px;
  }

  .case-study-result-content-div.search-traffic, .case-study-result-content-div.visitors, .case-study-result-content-div.revenue {
    transform: none;
  }

  .case-study-result-icon {
    width: 80px;
    height: 80px;
  }

  .case-study-result-text {
    font-size: 15px;
  }

  .case-study-performance-text {
    font-size: 22px;
  }

  .process {
    background-image: url('../images/Phone-BG.avif');
    background-position: 50%;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .container {
    max-width: 728px;
  }

  .seo-blueprint-picture {
    margin-top: 50px;
  }

  .benefit-text-div {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .process-container, .container-2 {
    max-width: 728px;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-sticky {
    position: relative;
    top: 0;
  }

  .process-steps-div {
    width: 95%;
  }

  .testimonials {
    background-image: url('../images/Phone-BG.avif');
    background-position: 50%;
    background-size: cover;
  }

  .testimonials-container, .why-us-container {
    max-width: 728px;
  }

  .why-us-section-wrapper {
    margin-bottom: 40px;
  }

  .other-agencies-div, .organic-acquisition {
    width: 90%;
  }

  .free-call-container {
    max-width: 728px;
  }

  .call-description-div {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .call-process-description {
    text-align: center;
    align-self: center;
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .code-embed {
    width: 100%;
  }

  .faq-section {
    background-image: url('../images/Phone-BG.avif');
    background-position: 50%;
    background-size: cover;
  }

  .faq-container {
    max-width: 728px;
  }

  .faq-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .faq-headline-div {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .faq-column {
    flex-wrap: wrap;
    width: 100%;
  }

  .faq-question-wrap {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .column {
    width: 100%;
  }

  .footer-container {
    max-width: 728px;
  }

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    font-size: 18px;
  }

  .footer-social-block-three {
    margin-top: 40px;
  }

  .utility-page-wrap {
    background-image: url('../images/Phone-BG.avif');
    background-position: 50%;
    background-size: cover;
  }

  .container-4 {
    max-width: 728px;
  }

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .text-block-10 {
    font-size: 13px;
  }

  .section-container {
    max-width: 728px;
  }

  .blog-image {
    width: 180px;
    height: 140px;
  }

  .image-75 {
    width: 20px;
    height: 20px;
  }

  .blog-post-body {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .image-76 {
    width: 20px;
    height: 20px;
  }

  .text-block-11, .text-block-12 {
    font-size: 13px;
  }

  .blog-container {
    max-width: 728px;
  }

  .image-77 {
    width: 20px;
    height: 20px;
  }

  .blog-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }
}

@media screen and (max-width: 767px) {
  .home-section {
    background-size: cover;
    padding: 60px 15px 20px;
  }

  .subheading {
    width: auto;
    max-width: 90%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .main-header {
    max-width: 90%;
    font-size: 32px;
    line-height: 42px;
  }

  .blue-vector {
    width: 30px;
  }

  .cta-link-block {
    transition-duration: .3s;
  }

  .carousel-container-mobile {
    width: 100%;
  }

  .success-story-section {
    padding: 60px 15px;
  }

  .testimonial-div {
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .testimonial-div.review {
    width: 90%;
  }

  .fred-image {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .review-icon {
    width: 110px;
  }

  .frederick-title-text {
    font-size: 14px;
  }

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

  .name-text {
    font-size: 20px;
  }

  .case-studies {
    padding: 30px 15px;
  }

  .case-study-main-div {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
    display: flex;
  }

  .case-study-div {
    width: 100%;
    margin-top: 20px;
    padding: 20px 25px;
  }

  .seo-case-study-title {
    text-align: center;
    margin-bottom: 20px;
    line-height: 32px;
  }

  .paragraph {
    text-align: center;
  }

  .case-results-div {
    justify-content: space-around;
    align-items: center;
    width: 100%;
  }

  .case-study-result-content-div.search-traffic, .case-study-result-content-div.visitors {
    width: 80%;
    margin-bottom: 15px;
  }

  .case-study-result-content-div.revenue {
    width: 80%;
  }

  .read-more-button {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .client-name {
    margin-left: auto;
    margin-right: auto;
  }

  .process {
    padding: 40px 15px 60px;
  }

  .seo-blueprint-picture {
    margin-top: 40px;
  }

  .benefit-text {
    font-size: 18px;
    line-height: 26px;
  }

  .process-section, .gallery-scroll {
    padding: 60px 15px;
  }

  .process-step-text-div {
    padding-top: 15px;
    padding-bottom: 5px;
  }

  .text-process-block {
    font-size: 18px;
  }

  .paragraph-2 {
    font-size: 13px;
  }

  .image-12 {
    width: 110px;
    height: 110px;
  }

  .testimonials, .why-us {
    padding: 60px 15px;
  }

  .bullet-point-list {
    width: 90%;
  }

  .text-block-6 {
    font-size: 18px;
    line-height: 22px;
  }

  .why-us-text-block {
    font-size: 25px;
  }

  .organic-acquisition-logo {
    width: 220px;
  }

  .side-by-side-div {
    flex-flow: column;
  }

  .other-agencies-div {
    width: 95%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .organic-acquisition {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .book-a-call, .faq-section {
    padding: 60px 15px;
  }

  .pricing-h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-wrapper-three {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 16px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }

  .testimonial-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .collum-1, .collum-2 {
    width: 100%;
  }

  .blogs-section {
    padding: 60px 15px;
  }

  .text-block-10 {
    font-size: 16px;
  }

  .blog-link {
    justify-content: center;
    align-items: center;
  }

  .blog-image {
    width: 200px;
    height: 150px;
  }

  .grid-blog {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .centered-heading-2.margin-bottom-32px {
    width: 85%;
    font-size: 36px;
  }

  .blog-post-body {
    margin-bottom: 0;
  }

  .blog-post-h1 {
    font-size: 35px;
  }

  .text-block-11, .text-block-12 {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .home-section {
    background-position: 50%;
    padding-top: 50px;
  }

  .hero-section-container {
    max-width: none;
  }

  .subheading {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
  }

  .nav-menu {
    flex-direction: column;
    padding-top: 30px;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .menu-button {
    font-size: 30px;
  }

  .main-header {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 38px;
  }

  .blue-vector {
    top: 3%;
  }

  .grow-today-link-block.success-story {
    width: 160px;
  }

  .carousel-container-mobile {
    -webkit-mask: radial-gradient(circle, #000, #000, #0000);
    mask: radial-gradient(circle, #000, #000, #0000);
  }

  .logo-mobile-image {
    height: 45px;
  }

  .success-story-section {
    padding-top: 30px;
  }

  .highlighted-case-container {
    max-width: none;
  }

  .heading-2 {
    color: #000;
    font-size: 28px;
  }

  .testimonial-div {
    flex-flow: column;
    width: auto;
    margin-top: 30px;
    padding-right: 10px;
  }

  .testimonial-div.review {
    width: auto;
  }

  .fred-image {
    width: 100px;
    height: 100px;
  }

  .review-icon {
    width: 100px;
  }

  .frederick-title-text {
    font-size: 14px;
  }

  .frederick-testimonial {
    font-size: 14px;
    line-height: 20px;
  }

  .name-text {
    font-size: 18px;
    line-height: 28px;
  }

  .image-div-reviews {
    width: 100px;
    height: 100px;
    margin-right: 15px;
  }

  .case-studies-container {
    max-width: none;
  }

  .case-study-heading {
    font-size: 28px;
  }

  .case-study-main-div {
    flex-flow: column;
    margin-top: 50px;
    display: flex;
  }

  .case-study-div {
    flex-flow: column;
    width: 100%;
    padding-right: 20px;
    display: flex;
  }

  .seo-case-study-title {
    font-size: 22px;
    line-height: 30px;
  }

  .image-6 {
    margin-bottom: 20px;
  }

  .case-results-div {
    order: 1;
    width: 100%;
  }

  .case-study-result-content-div.search-traffic, .case-study-result-content-div.visitors {
    width: 95%;
    margin-bottom: 15px;
  }

  .case-study-result-content-div.revenue {
    width: 95%;
  }

  .case-study-result-icon {
    width: 70px;
    height: 70px;
  }

  .case-study-result-text {
    font-size: 12px;
  }

  .case-study-performance-text {
    font-size: 20px;
  }

  .read-more-link-block:hover {
    transform: scale(1.05);
  }

  .read-more-button {
    margin-top: 20px;
  }

  .client-name {
    float: none;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .process {
    padding-bottom: 40px;
  }

  .container {
    max-width: none;
  }

  .seo-blueprint-picture {
    margin-top: 40px;
  }

  .benefit-text-div {
    justify-content: center;
    align-items: center;
  }

  .benefit-text {
    font-size: 14px;
    font-weight: 500;
  }

  .benefit-text.second-bullet {
    width: 95%;
    margin-bottom: 0;
    font-weight: 400;
  }

  .process-container, .container-2 {
    max-width: none;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .process-steps-div {
    flex-flow: column;
    width: 100%;
    padding-top: 10px;
    padding-left: 15px;
  }

  .process-step-text-div {
    padding-left: 0;
    padding-right: 10px;
  }

  .text-process-block {
    align-self: auto;
    font-size: 20px;
  }

  .paragraph-2 {
    font-size: 14px;
  }

  .image-12 {
    align-self: center;
    width: 85px;
    height: 85px;
  }

  .process-step-number-div {
    align-self: center;
    display: flex;
  }

  .testimonials-container, .why-us-container {
    max-width: none;
  }

  .bullet-point-list {
    margin-bottom: 40px;
  }

  .why-us-text-block {
    width: 260px;
    margin-bottom: 0;
    font-size: 32px;
    line-height: 45px;
  }

  .comparison-div {
    flex-flow: column;
  }

  .organic-acquisition-logo {
    width: 280px;
    margin-left: 0;
  }

  .other-agencies-text, .organic-acquisition-text {
    line-height: 30px;
  }

  .free-call-container, .faq-container {
    max-width: none;
  }

  .button-primary-6.footer-form-button {
    position: relative;
    right: 0;
  }

  .faq-q-text {
    font-family: Rubik, sans-serif;
    font-weight: 600;
  }

  .organic-acquisition-faq {
    padding-left: 15px;
    padding-right: 15px;
  }

  .accordion-answer-wrap {
    padding-left: 0;
  }

  .faq-circle {
    margin-bottom: 9px;
  }

  .faq-paragraph {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 14px;
    line-height: 20px;
  }

  .faq {
    flex-direction: column;
    align-items: flex-start;
    min-width: auto;
    padding-left: 15px;
  }

  .footer-container {
    max-width: none;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .footer-divider-two {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 16px;
  }

  .image-14 {
    width: 100px;
  }

  .heading-3 {
    font-size: 28px;
  }

  .container-4 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .text-block-10 {
    border-width: 0;
    border-color: #0000;
    font-size: 14px;
  }

  .section-div.process {
    box-shadow: 0 2px 5px #0003;
  }

  .blog-link {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .section-container {
    max-width: none;
  }

  .blog-image {
    align-self: center;
    width: 130px;
    height: 90px;
  }

  .blog-title {
    font-size: 17px;
    line-height: 23px;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .centered-heading-2.margin-bottom-32px {
    width: 95%;
    font-size: 25px;
    line-height: 34px;
  }

  .blog-post-body {
    margin-bottom: 20px;
  }

  .blog-post-h1 {
    text-align: left;
    font-size: 30px;
    line-height: 40px;
  }

  .text-block-11, .text-block-12 {
    border-width: 0;
    border-color: #0000;
    font-size: 14px;
  }

  .blog-container {
    max-width: none;
  }
}

#w-node-a44dd523-8be0-8cc1-d6b4-0b42d2b3bd7d-a7cd9929 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a44dd523-8be0-8cc1-d6b4-0b42d2b3bd81-a7cd9929 {
  place-self: center start;
}


