Get more calls from Google Maps!

I help established lawn care and landscaping companies optimize and manage their Google Business Profile so local customers can find them and call.

  • Get more visibility

  • More profile activity

  • And more calls

/* -- The root styles must go in the element of the structure with the name "List". --*/

.gbp-hero__list{
  /* Update these variables with the background color and border radius variables you are using. */
  --radius-value: var(--radius-xl);
  --color-background: var(--light);
  
  &:before{
    content: '';
    width: calc(2 * var(--radius-value));
    height: calc(2 * var(--radius-value));
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    transform: translateY(-100%);
    border-radius: 50%;
    box-shadow: calc(-1 * var(--radius-value)) var(--radius-value) var(--secondary);
  }
  
  &:after{
    content: '';
    width: calc(2 * var(--radius-value));
    height: calc(2 * var(--radius-value));
    background-color: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    transform: translateX(100%);
    border-radius: 50%;
    box-shadow: calc(-1 * var(--radius-value)) var(--radius-value) var(--secondary);
  }
}