/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 4, 2022, 10:17:49 AM
    Author     : 
*/
@import url(reset.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Open+Sans:wght@300;400;600;700&display=swap");
:root {
  --thick-font: 'Montserrat', sans-serif;
  --main-font: 'Montserrat', sans-serif;
  --darkest-gray: #2E3239;
  --dark-gray: #3E4450;
  --light-gray: #E3E5E8;
  --main-green: #59E65E;
  --max-width: 1200px;
  --each-section-ver-gutter: 10rem;
  --title-font-size: 4rem;
}

@media (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--thick-font);
  font-weight: 800;
}

html {
  font-size: 15px;
  font-family: var(--main-font);
  font-weight: 400;
  color: var(--darkest-gray);
}

p {
  line-height: 1.5;
}

section.hero {
  background: var(--dark-gray);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
section.hero .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 0;
  background: var(--dark-gray);
}
section.hero .inner_hero {
  position: relative;
  z-index: 1;
}

.mobile_tag_line {
  display: none;
}

.tap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
  z-index: 2;
  padding: 21rem 0 calc(var(--each-section-ver-gutter) + 2rem);
}
.tap .tap_holder {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tap .tap_holder img {
  width: 17rem;
}
.tap .tap_holder .tag_line {
  display: block;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  padding-top: 4rem;
  letter-spacing: 1rem;
}
.tap .circular_line {
  width: 30rem;
  height: 30rem;
  border-radius: 20rem;
  border: 1px solid white;
  display: inline-block;
  position: absolute;
  bottom: -5%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  pointer-events: none;
}
.tap .circular_line:after {
  width: 150%;
  height: 150%;
  border-radius: 50%;
  position: absolute;
  content: '';
  border: 1px solid white;
  opacity: .5;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.tap .circular_line:before {
  width: 250%;
  height: 250%;
  border-radius: 50%;
  position: absolute;
  content: '';
  border: 1px solid white;
  opacity: .15;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.scrolling_text {
  position: absolute;
  left: 0;
  top: 12rem;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  /*pointer-events: none;*/
}
.scrolling_text .text-marquee {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow-x: hidden;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
}
.scrolling_text .text-single {
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  will-change: transform, opacity;
}
.scrolling_text .text {
  padding: 0;
  font-size: 18rem;
  padding: 0;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: -.25rem;
  font-family: var(--thick-font);
  font-weight: 900;
  color: white;
  mix-blend-mode: difference;
}

.mid_content, .how_it_works .inner_how_it_works, .virtual_business_card .inner_virtual_business_card, .lead_gen .inner_lead_gen, .share_content .inner_share_content, .customize .inner_customize, .impact .inner_impact, .our_client .inner_our_client, .contact .inner_contact, nav .inner_nav {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.how_it_works {
  padding: var(--each-section-ver-gutter) 3rem 0;
  background: var(--light-gray);
  overflow: hidden;
}
.how_it_works .inner_how_it_works {
  display: flex;
  flex-direction: column;
}
.how_it_works .feature {
  display: flex;
  padding: 1.15rem 2rem;
  background: var(--main-green);
  position: absolute;
  align-items: center;
}
.how_it_works .feature span {
  white-space: nowrap;
}
.how_it_works .feature:after {
  border: 1px solid var(--main-green);
  border-radius: inherit;
  position: absolute;
  left: .5rem;
  top: .5rem;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
}
.how_it_works .feature.__left {
  border-radius: 5rem 5rem .5rem 5rem;
  right: 50%;
}
.how_it_works .feature.__right {
  left: 50%;
  border-radius: 5rem 5rem 5rem .5rem;
}
.how_it_works .feature.__feature_a {
  top: 7rem;
  right: auto;
  left: 0;
}
.how_it_works .feature.__feature_b {
  top: 2rem;
}
.how_it_works .feature.__feature_b .mobile {
  display: none;
}
.how_it_works .feature.__feature_c {
  top: 19rem;
}
.how_it_works .feature.__feature_d {
  top: 11rem;
  left: 40%;
}
.how_it_works .feature img {
  width: 2.2rem;
  margin-right: 1rem;
}
.how_it_works .bottom {
  display: flex;
  position: relative;
}
.how_it_works .bottom:after {
  width: 50rem;
  height: 50rem;
  border: 1px solid var(--dark-gray);
  border-radius: 50%;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.how_it_works .top {
  padding: 0 calc(var(--each-section-ver-gutter) / 2);
  width: 100%;
  position: relative;
  z-index: 2;
}
.how_it_works .top span {
  font-weight: 600;
  font-size: 1.25rem;
}
.how_it_works h2 {
  font-size: var(--title-font-size);
  color: var(--main-green);
}
.how_it_works .left {
  width: 65%;
  z-index: 2;
  position: relative;
}
.how_it_works .left .phone_container {
  display: flex;
  justify-content: center;
  padding: calc(var(--each-section-ver-gutter) / 2) 0 calc(var(--each-section-ver-gutter) / 2 + 3rem);
}
.how_it_works .left .phone_container .features {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.how_it_works .left .phone_container .iphone {
  width: 15rem;
}
.how_it_works .left .hand {
  position: absolute;
  left: 55%;
  bottom: 0;
  width: 16rem;
}
.how_it_works .right {
  width: 40%;
  position: absolute;
  padding: calc(var(--each-section-ver-gutter) / 2) 0;
  right: 0;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
}
.how_it_works .right .inner_right {
  background: white;
  padding: calc(var(--each-section-ver-gutter) / 2);
}
.how_it_works .right .inner_right h3 {
  margin-bottom: 2rem;
}

.para_wrap {
  position: relative;
  overflow: hidden;
}
.para_wrap > img {
  opacity: 0;
}
.para_wrap .para_bg {
  height: 125%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.para_wrap .para_bg.__lead_gen {
  background: url("../img/lead_gen.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.para_wrap .para_bg.__share_cont {
  background: url("../img/share_cont.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.scroll_down {
  position: fixed;
  bottom: 0rem;
  width: 1px;
  height: 100px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.25);
  right: auto;
  left: 50%;
  overflow: hidden;
  z-index: 3;
  transform: scale(1) translateY(0rem);
  opacity: 1;
  visibility: visible;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.scroll_down span {
  position: relative;
  color: var(--main-green);
  font-size: .8rem;
  display: inline-block;
  bottom: 280%;
  transform: rotate(-90deg) translatey(-400%);
  letter-spacing: 1rem;
}
.scroll_down:before {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 20px;
  background: var(--main-green);
  left: 0;
  top: 0;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.35s;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}
.scroll_down.scrolled {
  transform: scale(0) translateY(4rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.15s;
}
.scroll_down.scrolled:before {
  top: -120px;
  background: rgba(255, 255, 255, 0);
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  /*    80% {
          opacity: 1;
          transform: translateY(100px);
      }*/
  100% {
    /*opacity: 0;*/
    transform: translateY(100px);
  }
}
.dev_btn {
  display: inline-block;
  font-size: .8rem;
  padding: .5rem 1rem;
  background: var(--light-gray);
  border-radius: .5rem;
  color: var(--dark-gray);
}

.thank_you {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  top: 0;
  padding: var(--each-section-ver-gutter);
  visibility: hidden;
  opacity: 0;
  left: 0;
  transform: scale(1.15);
  transition: visibility .15s, opacity .15s, transform .15s linear .5s;
}
.thank_you .inner_thank_you {
  max-width: 600px;
  background: white;
  border-radius: 1rem;
  padding: calc(var(--each-section-ver-gutter) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.thank_you .inner_thank_you strong {
  font-size: 2rem;
  font-family: var(--thick-font);
}
.thank_you .inner_thank_you p {
  font-size: 1.1rem;
  margin: 3rem 0;
  font-weight: 300;
}
.thank_you .inner_thank_you button {
  background: var(--main-green);
  color: var(--darkest-gray);
  font-size: 1.25rem;
  border: none;
  font-weight: bold;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  padding: 1.25rem 3rem;
}
.thank_you.called {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.35s;
}

.overlay, .menu_overlay {
  position: fixed;
  background: rgba(27, 29, 32, 0.25);
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 20;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all .15s linear;
}
.overlay.called, .menu_overlay.called {
  visibility: visible;
  opacity: 1;
  transition: all .35s linear;
}

.menu_overlay {
  z-index: 9;
}

.virtual_business_card {
  padding: var(--each-section-ver-gutter) 3rem;
  background: var(--dark-gray);
  overflow: hidden;
  color: white;
}
.virtual_business_card .inner_virtual_business_card {
  display: flex;
  align-items: center;
}
.virtual_business_card .inner_virtual_business_card .left {
  width: 60%;
  padding-left: calc(var(--each-section-ver-gutter) / 2);
}
.virtual_business_card .inner_virtual_business_card .left h3 {
  font-size: var(--title-font-size);
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.1;
}
.virtual_business_card .inner_virtual_business_card .left h3 span {
  display: block;
}
.virtual_business_card .inner_virtual_business_card .left p {
  padding: 0 calc(var(--each-section-ver-gutter) / 2);
  position: relative;
}
.virtual_business_card .inner_virtual_business_card .left p:after {
  height: 100%;
  left: 0;
  width: 2px;
  background: white;
  top: 0;
  position: absolute;
  content: '';
}
.virtual_business_card .inner_virtual_business_card .left strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.virtual_business_card .inner_virtual_business_card .right {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.virtual_business_card .inner_virtual_business_card .right .iphone {
  width: 20rem;
  /*border-radius: 3rem;
  box-shadow: 1rem 1rem 5rem rgba(0,0,0,0.5);*/
}
.virtual_business_card .inner_virtual_business_card .right .tap_b {
  position: absolute;
  left: -2rem;
  top: 3rem;
  border-radius: 1rem;
  width: 11.25rem;
  box-shadow: 1rem 1rem 5rem rgba(25, 180, 78, 0.85);
}

.lead_gen {
  padding: var(--each-section-ver-gutter) 3rem 0;
}
.lead_gen .inner_lead_gen {
  display: flex;
}
.lead_gen .inner_lead_gen .right {
  width: 60%;
  padding-left: calc(var(--each-section-ver-gutter) / 2);
}
.lead_gen .inner_lead_gen .right h3 {
  font-size: var(--title-font-size);
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.1;
}
.lead_gen .inner_lead_gen .right h3 span {
  display: block;
}
.lead_gen .inner_lead_gen .right p {
  padding: 0 calc(var(--each-section-ver-gutter) / 2);
  position: relative;
}
.lead_gen .inner_lead_gen .right p:after {
  height: 100%;
  left: 0;
  width: 2px;
  background: var(--darkest-gray);
  top: 0;
  position: absolute;
  content: '';
}
.lead_gen .inner_lead_gen .right strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.lead_gen .inner_lead_gen .left {
  width: 40%;
}

.share_content {
  padding: var(--each-section-ver-gutter) 3rem 0;
  background: var(--dark-gray);
  color: white;
}
.share_content .inner_share_content {
  display: flex;
}
.share_content .inner_share_content .left {
  width: 60%;
  padding-left: calc(var(--each-section-ver-gutter) / 2);
}
.share_content .inner_share_content .left h3 {
  font-size: var(--title-font-size);
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.1;
}
.share_content .inner_share_content .left h3 span {
  display: block;
}
.share_content .inner_share_content .left p {
  padding: 0 calc(var(--each-section-ver-gutter) / 2);
  position: relative;
}
.share_content .inner_share_content .left p:after {
  height: 100%;
  left: 0;
  width: 2px;
  background: white;
  top: 0;
  position: absolute;
  content: '';
}
.share_content .inner_share_content .left strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.share_content .inner_share_content .right {
  width: 40%;
}

.customize {
  padding: var(--each-section-ver-gutter) 3rem;
  background: var(--light-gray);
}
.customize .inner_customize {
  display: flex;
  position: relative;
  align-items: center;
}
.customize .inner_customize .left {
  width: 50%;
  padding: calc(var(--each-section-ver-gutter) / 2);
  position: absolute;
  left: 50%;
  z-index: 2;
}
.customize .inner_customize .left h3 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.1;
}
.customize .inner_customize .left h3 span {
  display: block;
}
.customize .inner_customize .left p {
  position: relative;
}
.customize .inner_customize .left strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.customize .inner_customize .right {
  width: 50%;
  position: relative;
  left: 0;
  top: 0;
}

.impact {
  padding: var(--each-section-ver-gutter) 3rem;
  background: var(--dark-gray);
  color: white;
}
.impact .inner_impact {
  display: flex;
}
.impact .inner_impact .left {
  width: 70%;
  padding-left: calc(var(--each-section-ver-gutter) / 2);
  padding-right: calc(var(--each-section-ver-gutter) / 2);
}
.impact .inner_impact .left h3 {
  font-size: var(--title-font-size);
  text-transform: uppercase;
  margin-bottom: 5rem;
  line-height: 1.1;
  color: var(--main-green);
}
.impact .inner_impact .left h3 span {
  display: block;
}
.impact .inner_impact .left .greens {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.impact .inner_impact .left .greens .each_green {
  width: calc(50% - 1rem);
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.impact .inner_impact .left .greens .each_green img {
  margin-right: 2rem;
  flex-shrink: 0;
  width: 4rem;
}
.impact .inner_impact .left strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}
.impact .inner_impact .right {
  width: 30%;
  display: flex;
}
.impact .inner_impact .right .plant_trees {
  padding: calc(var(--each-section-ver-gutter) / 2) 3rem;
  background: white;
  border-radius: 1.5rem;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.impact .inner_impact .right .plant_trees .inner_plant_trees {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: calc(var(--each-section-ver-gutter) / 2) 3rem;
  padding-top: 0;
}
.impact .inner_impact .right .plant_trees .inner_plant_trees span {
  text-transform: uppercase;
}
.impact .inner_impact .right .plant_trees h4 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.impact .inner_impact .right .plant_trees .tree_count {
  font-size: 4rem;
  font-weight: 300;
}
.impact .inner_impact .right .plant_trees .trees {
  margin-top: auto;
  flex-shrink: 1;
}

.our_client {
  padding: var(--each-section-ver-gutter) 3rem;
}
.our_client .inner_our_client {
  display: flex;
  flex-direction: column;
}
.our_client .inner_our_client h5 {
  display: block;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.our_client .inner_our_client small {
  display: block;
  text-align: center;
  letter-spacing: .35rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.our_client .inner_our_client small:after {
  width: 3rem;
  height: 2px;
  background: var(--main-green);
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  content: '';
  bottom: 0;
}
.our_client .inner_our_client .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our_client .inner_our_client .logos .each_logo {
  padding: 1rem 1.5rem;
}

.contact {
  padding: var(--each-section-ver-gutter) 3rem;
  background: var(--dark-gray);
  color: white;
}
.contact .inner_contact {
  display: flex;
  flex-direction: column;
}
.contact .inner_contact h5 {
  display: block;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  position: relative;
}
.contact .form {
  padding: 0 var(--each-section-ver-gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact .form .submit {
  display: flex;
  align-items: center;
  width: 100%;
}
.contact .form .submit button {
  margin-left: auto;
  padding: 1.1rem 2rem;
  font-size: 1.35rem;
  font-weight: bold;
  background: var(--main-green);
  border: none;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  color: var(--darkest-gray);
  display: flex;
  align-items: center;
}
.contact .form .submit button img {
  width: 2rem;
  margin-left: 1rem;
}
.contact .form .each_fieldset {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  width: 100%;
}
.contact .form .each_fieldset label {
  font-weight: 600;
  font-size: 1.15rem;
}
.contact .form .each_fieldset .input_wrap {
  position: relative;
}
.contact .form .each_fieldset .input_wrap input, .contact .form .each_fieldset .input_wrap textarea {
  outline: none;
  width: 100%;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  border: none;
  border-bottom: 2px solid white;
  padding: 1rem 0;
  font-size: 1.15rem;
  color: white;
}
.contact .form .each_fieldset .input_wrap textarea {
  resize: none;
}
.contact .form .each_fieldset .input_wrap .error_msg {
  padding: 1rem;
  color: tomato;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 300;
  text-transform: uppercase;
}
.contact .form .each_fieldset.__is_half {
  width: calc(50% - 1.75rem);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 3rem;
  z-index: 10;
  transition: all .1s linear 0s;
}
nav .inner_nav {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  transition: all .51s linear 0s;
}
nav .logo {
  transition: all .15s linear 0s;
}
nav .logo img {
  width: 5rem;
  transition: all .15s linear 0s;
}
nav .navigation {
  margin-left: auto;
  display: flex;
}
nav .navigation a {
  color: white;
  font-weight: bold;
  padding: .75rem 0;
  margin-right: 2.5rem;
  position: relative;
}
nav .navigation a:after {
  width: 0;
  height: 2px;
  left: 0;
  position: absolute;
  content: '';
  bottom: 0;
  background: var(--main-green);
  transition: all .15s linear 0s;
}
nav .navigation a.active {
  color: var(--main-green);
}
nav .navigation a.active:after {
  width: 100%;
}
nav .navigation a:last-child {
  margin-right: 0;
}
nav.stick {
  transition: all .1s linear 0s;
  background: rgba(35, 38, 43, 0.85);
  backdrop-filter: blur(10px);
}
nav.stick .inner_nav {
  padding: 1rem 0;
  transition: all .1s linear 0s;
}
nav.stick .inner_nav .logo {
  transition: all .1s linear 0s;
}
nav.stick .inner_nav .logo img {
  width: 3.5rem;
  transition: all .15s linear 0s;
}
nav.stick .inner_nav .navigation a {
  font-size: 1rem;
  transition: all .15s linear 0s;
}

@media (max-width: 1200px) {
  :root {
    --title-font-size: 4.25vw;
    --each-section-ver-gutter: 8rem;
  }

  .customize .inner_customize .left {
    width: 70%;
    left: auto;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
  }

  .contact .form {
    padding: 0 calc(var(--each-section-ver-gutter) / 2);
  }

  .impact .inner_impact {
    flex-direction: column;
  }
  .impact .inner_impact .left {
    width: 100%;
  }
  .impact .inner_impact .left h3 {
    width: clamp(20vw, 50vw, 70%);
  }
  .impact .inner_impact .right {
    width: 100%;
    flex-direction: row;
    padding-left: calc(var(--each-section-ver-gutter) / 2);
    padding-right: calc(var(--each-section-ver-gutter) / 2);
  }
  .impact .inner_impact .right .plant_trees {
    width: 100%;
    flex-direction: row;
  }
  .impact .inner_impact .right .plant_trees .trees {
    margin-left: auto;
  }
  .impact .inner_impact .right .plant_trees img {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  .impact .inner_impact .right .plant_trees .inner_plant_trees {
    padding-bottom: 0;
    align-items: flex-start;
    text-align: left;
  }
}
.mobile_menu, .close_mobile_menu {
  display: none;
}

@media (max-width: 1180px) {
  .thank_you {
    padding: calc(var(--each-section-ver-gutter) / 2);
  }

  .how_it_works .feature.__feature_d {
    left: 45%;
  }

  .tap .tap_holder img {
    width: 22vw;
  }

  .how_it_works .feature {
    z-index: 1;
  }
  .how_it_works .feature.__feature_a {
    left: auto;
    right: 60%;
  }
  .how_it_works .feature.__feature_d {
    left: 60%;
  }
  .how_it_works .bottom {
    flex-direction: column;
  }
  .how_it_works .bottom:after {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .how_it_works .left {
    width: 100%;
  }
  .how_it_works .left .hand {
    width: 20vw;
  }
  .how_it_works .left .phone_container {
    padding-bottom: calc(var(--each-section-ver-gutter) / 2);
  }
  .how_it_works .left .phone_container .iphone {
    width: 19vw;
  }
  .how_it_works .right {
    padding-left: calc(var(--each-section-ver-gutter) / 2);
    padding-right: calc(var(--each-section-ver-gutter) / 2);
    position: relative;
    padding-top: 0;
    width: 100%;
    display: block;
    z-index: 2;
  }

  .virtual_business_card .inner_virtual_business_card .right .iphone {
    width: 25vw;
  }
  .virtual_business_card .inner_virtual_business_card .right .tap_b {
    width: 14vw;
  }
}
@media (max-width: 1024px) {
  :root {
    --title-font-size: 6vw;
  }

  .customize .inner_customize .left h3 {
    font-size: 4.25vw;
  }

  html {
    font-size: 13px;
  }
}
@media (max-width: 850px) {
  .virtual_business_card .inner_virtual_business_card .left p:after,
  .lead_gen .inner_lead_gen .right p:after,
  .share_content .inner_share_content .left p:after {
    width: 1px;
    opacity: .25;
  }

  .tap .tap_holder img {
    width: clamp(16rem, 30vw, 18rem);
    /*width: 26vw;*/
  }

  .scroll_down {
    bottom: 0rem;
    width: 1px;
    right: auto;
    left: 50%;
  }

  .scrolling_text .text-marquee {
    transform: scale(1.75) translateX(-25%);
    transform-origin: top center;
  }

  .how_it_works .left .phone_container .iphone {
    width: 24vw;
  }

  .how_it_works .left .hand {
    width: 24vw;
  }

  .mobile_menu {
    display: block;
    margin-left: auto;
    padding: 1rem;
  }
  .mobile_menu img {
    width: 2rem;
  }

  .close_mobile_menu {
    display: inline-block;
    padding: 1rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
  }
  .close_mobile_menu img {
    width: 2rem;
  }

  .how_it_works .right .inner_right h3 {
    margin-bottom: 1.5rem;
  }

  nav .navigation {
    position: fixed;
    flex-direction: column;
    width: 300px;
    overflow: auto;
    transform: translateX(100%);
    top: 0;
    right: 0;
    height: 100vh;
    background: var(--main-green);
    padding: 5rem 0;
    transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  }
  nav .navigation.slide_out {
    transform: translateX(0);
    transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
  }
  nav .navigation a {
    margin-right: 0;
    padding: 1.25rem 3rem;
  }
  nav .navigation a:after {
    height: 100%;
    z-index: -1;
    background: white;
    transition-delay: .25s;
  }
  nav .navigation a.active {
    color: #2EAD32;
  }

  .impact .inner_impact .right .plant_trees {
    position: relative;
  }
  .impact .inner_impact .right .plant_trees .trees {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: calc(var(--each-section-ver-gutter) / 2) 0;
  }

  .impact .inner_impact .left h3 {
    margin-bottom: calc(var(--each-section-ver-gutter) / 2);
  }
  .impact .inner_impact .left strong {
    font-size: 1.35rem;
  }
  .impact .inner_impact .left .greens .each_green img {
    width: 3.5rem;
  }

  .customize .inner_customize .left {
    bottom: 0;
  }
  .customize .inner_customize .left h3 {
    margin-bottom: 1.5rem;
  }
  .customize .inner_customize .right {
    width: 70%;
    margin: auto;
    padding-bottom: calc(var(--each-section-ver-gutter));
  }
}
@media (max-width: 768px) {
  :root {
    --each-section-ver-gutter: 6rem;
  }

  nav .logo img {
    width: 4.5rem;
  }

  .how_it_works .bottom:after {
    display: none;
  }

  .tap .tap_holder span {
    font-size: 1.2rem;
  }

  .thank_you .inner_thank_you strong {
    font-size: 1.5rem;
  }

  .scroll_down {
    right: auto;
    width: 1px;
    left: calc(50% - 1px);
  }

  .tap .tap_holder .tag_line {
    font-size: 1.25rem;
    letter-spacing: .5rem;
  }

  .scroll_down {
    height: 50px;
  }

  .how_it_works .right,
  .how_it_works .top {
    padding-left: 0;
    padding-right: 0;
  }

  .customize {
    padding: calc(var(--each-section-ver-gutter) / 2);
  }
  .customize .inner_customize {
    flex-direction: column;
  }
  .customize .inner_customize .right {
    padding-bottom: 0;
    width: 100%;
  }
  .customize .inner_customize .left {
    position: relative;
    width: 100%;
  }

  .impact .inner_impact .left strong {
    margin-bottom: 1rem;
  }
  .impact .inner_impact .left .greens .each_green {
    width: 100%;
  }
  .impact .inner_impact .right .plant_trees .inner_plant_trees {
    padding: 0;
  }

  .contact .form .each_fieldset.__is_half {
    width: 100%;
  }

  .our_client .inner_our_client h5,
  .contact .inner_contact h5 {
    font-size: 1.7rem;
  }

  .virtual_business_card {
    padding: calc(var(--each-section-ver-gutter) / 2);
    padding-bottom: 5rem;
  }
  .virtual_business_card .inner_virtual_business_card {
    flex-direction: column;
    flex-flow: column-reverse;
    position: relative;
  }
  .virtual_business_card .inner_virtual_business_card .right {
    width: 60%;
    margin-left: auto;
  }
  .virtual_business_card .inner_virtual_business_card .right .tap_b {
    left: auto;
    right: 65%;
  }
  .virtual_business_card .inner_virtual_business_card .left {
    width: 100%;
    position: relative;
    padding-left: 0;
  }
  .virtual_business_card .inner_virtual_business_card .left p {
    margin-top: 3rem;
  }
  .virtual_business_card .inner_virtual_business_card .left h3 {
    position: absolute;
    bottom: 100%;
    z-index: 2;
    margin-bottom: 0;
    padding-top: calc(var(--each-section-ver-gutter) / 2);
  }

  .lead_gen {
    padding: 0;
  }
  .lead_gen .right {
    padding: calc(var(--each-section-ver-gutter) / 2);
  }

  .contact, .our_client {
    padding: 0;
    padding: calc(var(--each-section-ver-gutter) / 2);
  }

  .impact {
    padding: 0;
    padding: calc(var(--each-section-ver-gutter) / 2);
  }
  .impact .inner_impact .left {
    padding: 0;
  }
  .impact .inner_impact .right {
    padding: 0;
  }

  .contact .form {
    padding: 0;
  }

  .share_content {
    padding: 0;
  }
  .share_content .inner_share_content .left {
    padding: calc(var(--each-section-ver-gutter) / 2);
  }

  .how_it_works .right .inner_right h3,
  .virtual_business_card .inner_virtual_business_card .left strong,
  .lead_gen .inner_lead_gen .right strong,
  .share_content .inner_share_content .left strong {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 720px) {
  .lead_gen .inner_lead_gen {
    flex-direction: column;
  }
  .lead_gen .inner_lead_gen .right {
    width: 100%;
    position: relative;
    padding-bottom: 5rem;
  }
  .lead_gen .inner_lead_gen .right h3 {
    position: absolute;
    bottom: 100%;
    left: calc(40% + calc(var(--each-section-ver-gutter) / 2));
    margin-bottom: 0;
  }

  .share_content .inner_share_content {
    flex-direction: column;
    flex-flow: column-reverse;
  }
  .share_content .inner_share_content .left {
    width: 100%;
    position: relative;
    padding-bottom: 5rem;
  }
  .share_content .inner_share_content .left h3 {
    position: absolute;
    bottom: 100%;
    left: calc(0% + calc(var(--each-section-ver-gutter) / 2));
    margin-bottom: 0;
  }
  .share_content .inner_share_content .right {
    margin-left: auto;
  }

  .how_it_works .left .phone_container .iphone {
    transform: translateX(-100%);
  }

  .how_it_works .left .hand {
    left: 30%;
  }

  .how_it_works .feature {
    padding: 1rem 1.5rem;
  }
  .how_it_works .feature.__feature_a {
    right: auto;
    left: 0;
  }
  .how_it_works .feature.__feature_d {
    top: 12rem;
  }

  .how_it_works .feature.__right {
    left: 44%;
    right: auto;
  }

  .how_it_works .feature.__left {
    right: 0;
    left: auto;
    border-radius: 5rem 5rem 5rem 0.5rem;
  }

  .how_it_works .feature.__feature_c {
    top: 17rem;
  }
}
@media (max-width: 600px) {
  .tap .tap_holder .tag_line {
    font-size: 1rem;
    letter-spacing: .25rem;
  }

  .impact .inner_impact .left .greens .each_green img {
    width: 2.75rem;
  }

  .impact .inner_impact .left strong {
    font-size: 1.2rem;
    margin-bottom: .5rem;
  }

  .impact .inner_impact .right .plant_trees h4 {
    font-size: 1.2rem;
  }

  .our_client .inner_our_client h5, .contact .inner_contact h5 {
    font-size: 1.35rem;
  }

  .lead_gen .inner_lead_gen .right h3 {
    left: calc(40% + 2rem);
  }

  .share_content .inner_share_content .left h3 {
    left: 2rem;
  }

  .our_client .inner_our_client .logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .our_client .inner_our_client .logos .each_logo {
    width: 33.3333%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .our_client .inner_our_client .logos .each_logo:last-child {
    width: 45%;
  }

  .how_it_works .left .phone_container {
    padding: 2rem 0;
  }

  .customize,
  .customize .inner_customize .left,
  .impact,
  .our_client,
  .how_it_works .right .inner_right,
  .thank_you {
    padding: 2rem;
  }

  .our_client {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  nav,
  .how_it_works,
  .virtual_business_card,
  .lead_gen .inner_lead_gen .right,
  .lead_gen .inner_lead_gen .right p,
  .share_content .inner_share_content .left,
  .share_content .inner_share_content .left p,
  .virtual_business_card .inner_virtual_business_card .left p,
  .contact {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .contact .inner_contact h5 {
    margin-bottom: 0;
  }

  .how_it_works .left .hand {
    left: 20%;
  }
  .how_it_works .left .phone_container {
    justify-content: flex-start;
  }
  .how_it_works .left .phone_container .iphone {
    transform: translateX(30%);
  }
  .how_it_works .left .phone_container .features {
    width: 50%;
    right: 0;
    left: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .how_it_works .left .phone_container .features .feature {
    padding: .75rem 1.5rem;
    left: 0;
    right: auto;
    width: 100%;
    justify-content: flex-end;
    background: transparent;
    position: relative;
  }
  .how_it_works .left .phone_container .features .feature img {
    width: 1.5rem;
  }
  .how_it_works .left .phone_container .features .feature.__feature_a {
    top: auto;
  }
  .how_it_works .left .phone_container .features .feature.__feature_b {
    top: auto;
  }
  .how_it_works .left .phone_container .features .feature.__feature_b img {
    display: none;
  }
  .how_it_works .left .phone_container .features .feature.__feature_b img.mobile {
    display: block;
  }
  .how_it_works .left .phone_container .features .feature.__feature_d {
    top: auto;
  }
  .how_it_works .left .phone_container .features .feature.__feature_c {
    top: auto;
  }
  .how_it_works .left .phone_container .features .feature:after {
    display: none;
  }
}
@media (max-width: 500px) {
  :root {
    --title-font-size: 5vw;
  }

  .tap .tap_holder img {
    width: clamp(18rem, 30vw, 20rem);
  }

  .how_it_works .right .inner_right h3,
  .virtual_business_card .inner_virtual_business_card .left strong,
  .lead_gen .inner_lead_gen .right strong,
  .share_content .inner_share_content .left strong,
  .how_it_works .top span {
    font-size: 1rem;
  }

  .virtual_business_card .inner_virtual_business_card .right .tap_b {
    border-radius: .35rem;
  }

  .our_client .inner_our_client h5, .contact .inner_contact h5 {
    font-size: 1.2rem;
  }

  .virtual_business_card .inner_virtual_business_card .left h3,
  .lead_gen .inner_lead_gen .right h3,
  .share_content .inner_share_content .left h3 {
    font-size: 1.8rem;
  }

  .impact .inner_impact .left strong {
    font-size: 1rem;
  }

  .how_it_works {
    padding-top: 3rem;
  }

  .impact .inner_impact .left h3 {
    margin-bottom: 1.5rem;
  }

  .contact .form .submit {
    flex-direction: column;
  }
  .contact .form .submit button {
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
  }

  .how_it_works .left .phone_container .iphone {
    transform: translateX(-40%);
  }

  .how_it_works .left .hand {
    left: 10%;
  }

  .impact .inner_impact .right .plant_trees {
    flex-direction: column;
  }
  .impact .inner_impact .right .plant_trees .trees {
    position: relative;
    padding-bottom: 0;
  }
  .impact .inner_impact .right .plant_trees .inner_plant_trees {
    align-items: center;
    text-align: center;
  }
}

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